From bd6025299721204a215519972379adae8ac28ce1 Mon Sep 17 00:00:00 2001 From: zezha-msft Date: Fri, 14 Jul 2017 14:47:17 -0700 Subject: [PATCH 1/3] Fixed bug for create_from* with empty data --- ChangeLog.md | 5 ++++ azure/storage/blob/_upload_chunking.py | 2 ++ azure/storage/blob/blockblobservice.py | 2 +- azure/storage/blob/pageblobservice.py | 3 +++ tests/test_append_blob.py | 15 +++++++++++ tests/test_block_blob.py | 35 ++++++++++++++++++-------- tests/test_page_blob.py | 18 +++++++++++++ 7 files changed, 68 insertions(+), 12 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index ce3c04de..7d9891f9 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,6 +2,11 @@ > See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks. +## Version 0.35.1: + +### Blob: +- Fixed bug where calling create_from_* and and append_blob_from_* methods with no data fails. + ## Version 0.35.0: ### All: diff --git a/azure/storage/blob/_upload_chunking.py b/azure/storage/blob/_upload_chunking.py index 217c66f1..6b6dfbf4 100644 --- a/azure/storage/blob/_upload_chunking.py +++ b/azure/storage/blob/_upload_chunking.py @@ -171,6 +171,8 @@ def __init__(self, blob_service, container_name, blob_name, blob_size, self.timeout = timeout self.encryptor = encryptor self.padder = padder + self.last_modified = None + self.etag = None def get_chunk_streams(self): index = 0 diff --git a/azure/storage/blob/blockblobservice.py b/azure/storage/blob/blockblobservice.py index d3b3b12d..0862e1c9 100644 --- a/azure/storage/blob/blockblobservice.py +++ b/azure/storage/blob/blockblobservice.py @@ -507,7 +507,7 @@ def create_blob_from_stream( if (self.key_encryption_key is not None) and (adjusted_count is not None): adjusted_count += (16 - (count % 16)) - if adjusted_count and adjusted_count < self.MAX_SINGLE_PUT_SIZE: + if adjusted_count is not None and (adjusted_count < self.MAX_SINGLE_PUT_SIZE): if progress_callback: progress_callback(0, count) diff --git a/azure/storage/blob/pageblobservice.py b/azure/storage/blob/pageblobservice.py index 52e23bd5..92431f42 100644 --- a/azure/storage/blob/pageblobservice.py +++ b/azure/storage/blob/pageblobservice.py @@ -990,6 +990,9 @@ def create_blob_from_stream( encryption_data=encryption_data ) + if count == 0: + return response + # _upload_blob_chunks returns the block ids for block blobs so resource_properties # is passed as a parameter to get the last_modified and etag for page and append blobs. # this info is not needed for block_blobs since _put_block_list is called after which gets this info diff --git a/tests/test_append_blob.py b/tests/test_append_blob.py index d8a202bb..294648bc 100644 --- a/tests/test_append_blob.py +++ b/tests/test_append_blob.py @@ -181,6 +181,21 @@ def test_append_blob_from_bytes(self): self.assertEqual(blob.properties.etag, append_resp.etag) self.assertEqual(blob.properties.last_modified, append_resp.last_modified) + @record + def test_append_blob_from_0_bytes(self): + # Arrange + blob_name = self._create_blob() + + # Act + data = b'' + append_resp = self.bs.append_blob_from_bytes(self.container_name, blob_name, data) + + # Assert + self.assertBlobEqual(self.container_name, blob_name, data) + # appending nothing should not make any network call + self.assertIsNone(append_resp.etag) + self.assertIsNone(append_resp.last_modified) + @record def test_append_blob_from_bytes_with_progress(self): # Arrange diff --git a/tests/test_block_blob.py b/tests/test_block_blob.py index 4b8e2ff9..19a17ecc 100644 --- a/tests/test_block_blob.py +++ b/tests/test_block_blob.py @@ -262,22 +262,35 @@ def test_create_blob_from_bytes_single_put(self): self.assertEqual(blob.properties.etag, create_resp.etag) self.assertEqual(blob.properties.last_modified, create_resp.last_modified) + @record + def test_create_blob_from_0_bytes(self): + # Arrange + blob_name = self._get_blob_reference() + data = b'' + + # Act + create_resp = self.bs.create_blob_from_bytes(self.container_name, blob_name, data) + blob = self.bs.get_blob_properties(self.container_name, blob_name) + + # Assert + self.assertBlobEqual(self.container_name, blob_name, data) + self.assertEqual(blob.properties.etag, create_resp.etag) + self.assertEqual(blob.properties.last_modified, create_resp.last_modified) + @record def test_create_from_bytes_blob_unicode(self): # Arrange blob_name = self._get_blob_reference() + data = u'hello world' - self.bs.put_block() - # # Act - # #data = u'hello world' - # #with self.assertRaises(TypeError): - # data = self.get_random_bytes(10) - # resp = self.bs.create_blob_from_bytes(self.container_name, blob_name, data) - # - # # Assert - # self.assertIsNotNone(resp.etag) - # self.assertIsNotNone(resp.last_modified) - # self.bs.exists(self.container_name, blob_name) + # Act + create_resp = self.bs.create_blob_from_bytes(self.container_name, blob_name, data) + blob = self.bs.get_blob_properties(self.container_name, blob_name) + + # Assert + self.assertBlobEqual(self.container_name, blob_name, data) + self.assertEqual(blob.properties.etag, create_resp.etag) + self.assertEqual(blob.properties.last_modified, create_resp.last_modified) @record def test_create_from_bytes_blob_unicode(self): diff --git a/tests/test_page_blob.py b/tests/test_page_blob.py index 4661b7d9..4a31d8f3 100644 --- a/tests/test_page_blob.py +++ b/tests/test_page_blob.py @@ -487,6 +487,24 @@ def test_create_blob_from_bytes(self): self.assertEqual(blob.properties.etag, create_resp.etag) self.assertEqual(blob.properties.last_modified, create_resp.last_modified) + def test_create_blob_from_0_bytes(self): + # parallel tests introduce random order of requests, can only run live + if TestMode.need_recording_file(self.test_mode): + return + + # Arrange + blob_name = self._get_blob_reference() + data = self.get_random_bytes(0) + + # Act + create_resp = self.bs.create_blob_from_bytes(self.container_name, blob_name, data) + blob = self.bs.get_blob_properties(self.container_name, blob_name) + + # Assert + self.assertBlobEqual(self.container_name, blob_name, data) + self.assertEqual(blob.properties.etag, create_resp.etag) + self.assertEqual(blob.properties.last_modified, create_resp.last_modified) + def test_create_blob_from_bytes_with_progress(self): # parallel tests introduce random order of requests, can only run live if TestMode.need_recording_file(self.test_mode): From 6984d9198b19ad14ac92a2936029378c82e9b7f7 Mon Sep 17 00:00:00 2001 From: zezha-msft Date: Fri, 14 Jul 2017 17:28:35 -0700 Subject: [PATCH 2/3] Bump version to 0.35.1 --- azure/storage/_constants.py | 2 +- doc/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/azure/storage/_constants.py b/azure/storage/_constants.py index 593a638e..0d1833bd 100644 --- a/azure/storage/_constants.py +++ b/azure/storage/_constants.py @@ -15,7 +15,7 @@ import platform __author__ = 'Microsoft Corp. ' -__version__ = '0.35.0' +__version__ = '0.35.1' # x-ms-version for storage service. X_MS_VERSION = '2017-04-17' diff --git a/doc/conf.py b/doc/conf.py index 93b1bdf7..238bc7e7 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '0.35.0' +version = '0.35.1' # The full version, including alpha/beta/rc tags. -release = '0.35.0' +release = '0.35.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 2159433c..62b00ff6 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ setup( name='azure-storage', - version='0.35.0', + version='0.35.1', description='Microsoft Azure Storage Client Library for Python', long_description=open('README.rst', 'r').read(), license='Apache License 2.0', From 03415faf77c7a3dfde00e1b84572346f8749e326 Mon Sep 17 00:00:00 2001 From: zezha-msft Date: Fri, 14 Jul 2017 18:08:35 -0700 Subject: [PATCH 3/3] Update test recordings for 0.35.1 --- ...nd_blob.test_append_blob_from_0_bytes.yaml | 81 + ...pend_blob.test_append_blob_from_bytes.yaml | 56 +- ...append_blob_from_bytes_chunked_upload.yaml | 266 +- ...s_chunked_upload_with_index_and_count.yaml | 252 +- ...est_append_blob_from_bytes_with_index.yaml | 42 +- ..._blob_from_bytes_with_index_and_count.yaml | 42 +- ..._append_blob_from_bytes_with_progress.yaml | 42 +- ...om_bytes_with_progress_chunked_upload.yaml | 252 +- ..._append_blob_from_path_chunked_upload.yaml | 266 +- ...rom_path_with_progress_chunked_upload.yaml | 252 +- ...ppend_blob_from_stream_chunked_upload.yaml | 266 +- ...from_stream_chunked_upload_with_count.yaml | 252 +- ...on_seekable_chunked_upload_known_size.yaml | 252 +- ..._seekable_chunked_upload_unknown_size.yaml | 252 +- ...lob_from_stream_with_multiple_appends.yaml | 476 +- ...ppend_blob.test_append_blob_from_text.yaml | 56 +- ..._append_blob_from_text_chunked_upload.yaml | 350 +- ...t_append_blob_from_text_with_encoding.yaml | 42 +- ..._from_text_with_encoding_and_progress.yaml | 28 +- ...append_blob.test_append_blob_with_md5.yaml | 28 +- .../test_append_blob.test_append_block.yaml | 98 +- ...append_blob.test_append_block_unicode.yaml | 14 +- ...ppend_blob.test_append_block_with_md5.yaml | 28 +- .../test_append_blob.test_create_blob.yaml | 42 +- ...d_blob.test_create_blob_with_lease_id.yaml | 60 +- ...d_blob.test_create_blob_with_metadata.yaml | 28 +- ...tions.test_append_block_with_if_match.yaml | 192 +- ....test_append_block_with_if_match_fail.yaml | 42 +- ...ns.test_append_block_with_if_modified.yaml | 122 +- ...st_append_block_with_if_modified_fail.yaml | 44 +- ....test_append_block_with_if_none_match.yaml | 112 +- ..._append_block_with_if_none_match_fail.yaml | 58 +- ....test_append_block_with_if_unmodified.yaml | 122 +- ..._append_block_with_if_unmodified_fail.yaml | 44 +- ...itions.test_delete_blob_with_if_match.yaml | 54 +- ...s.test_delete_blob_with_if_match_fail.yaml | 42 +- ...ons.test_delete_blob_with_if_modified.yaml | 40 +- ...est_delete_blob_with_if_modified_fail.yaml | 44 +- ...s.test_delete_blob_with_if_none_match.yaml | 38 +- ...t_delete_blob_with_if_none_match_fail.yaml | 58 +- ...s.test_delete_blob_with_if_unmodified.yaml | 40 +- ...t_delete_blob_with_if_unmodified_fail.yaml | 44 +- ...est_delete_container_with_if_modified.yaml | 40 +- ...elete_container_with_if_modified_fail.yaml | 30 +- ...t_delete_container_with_if_unmodified.yaml | 40 +- ...ete_container_with_if_unmodified_fail.yaml | 30 +- ....test_get_blob_metadata_with_if_match.yaml | 58 +- ..._get_blob_metadata_with_if_match_fail.yaml | 42 +- ...st_get_blob_metadata_with_if_modified.yaml | 44 +- ...t_blob_metadata_with_if_modified_fail.yaml | 40 +- ..._get_blob_metadata_with_if_none_match.yaml | 42 +- ...blob_metadata_with_if_none_match_fail.yaml | 54 +- ..._get_blob_metadata_with_if_unmodified.yaml | 44 +- ...blob_metadata_with_if_unmodified_fail.yaml | 44 +- ...est_get_blob_properties_with_if_match.yaml | 58 +- ...et_blob_properties_with_if_match_fail.yaml | 38 +- ..._get_blob_properties_with_if_modified.yaml | 44 +- ...blob_properties_with_if_modified_fail.yaml | 40 +- ...et_blob_properties_with_if_none_match.yaml | 42 +- ...ob_properties_with_if_none_match_fail.yaml | 54 +- ...et_blob_properties_with_if_unmodified.yaml | 44 +- ...ob_properties_with_if_unmodified_fail.yaml | 40 +- ...onditions.test_get_blob_with_if_match.yaml | 58 +- ...ions.test_get_blob_with_if_match_fail.yaml | 42 +- ...itions.test_get_blob_with_if_modified.yaml | 44 +- ...s.test_get_blob_with_if_modified_fail.yaml | 40 +- ...ions.test_get_blob_with_if_none_match.yaml | 42 +- ...test_get_blob_with_if_none_match_fail.yaml | 54 +- ...ions.test_get_blob_with_if_unmodified.yaml | 44 +- ...test_get_blob_with_if_unmodified_fail.yaml | 44 +- ...st_get_page_ranges_iter_with_if_match.yaml | 86 +- ...t_page_ranges_iter_with_if_match_fail.yaml | 70 +- ...get_page_ranges_iter_with_if_modified.yaml | 72 +- ...age_ranges_iter_with_if_modified_fail.yaml | 68 +- ...t_page_ranges_iter_with_if_none_match.yaml | 70 +- ...e_ranges_iter_with_if_none_match_fail.yaml | 82 +- ...t_page_ranges_iter_with_if_unmodified.yaml | 72 +- ...e_ranges_iter_with_if_unmodified_fail.yaml | 72 +- ...ditions.test_lease_blob_with_if_match.yaml | 72 +- ...ns.test_lease_blob_with_if_match_fail.yaml | 42 +- ...ions.test_lease_blob_with_if_modified.yaml | 58 +- ...test_lease_blob_with_if_modified_fail.yaml | 44 +- ...ns.test_lease_blob_with_if_none_match.yaml | 56 +- ...st_lease_blob_with_if_none_match_fail.yaml | 58 +- ...ns.test_lease_blob_with_if_unmodified.yaml | 58 +- ...st_lease_blob_with_if_unmodified_fail.yaml | 44 +- ...se_container_acquire_with_if_modified.yaml | 46 +- ...ntainer_acquire_with_if_modified_fail.yaml | 30 +- ..._container_acquire_with_if_unmodified.yaml | 46 +- ...ainer_acquire_with_if_unmodified_fail.yaml | 30 +- ...onditions.test_put_blob_with_if_match.yaml | 58 +- ...ions.test_put_blob_with_if_match_fail.yaml | 42 +- ...itions.test_put_blob_with_if_modified.yaml | 44 +- ...s.test_put_blob_with_if_modified_fail.yaml | 44 +- ...ions.test_put_blob_with_if_none_match.yaml | 42 +- ...test_put_blob_with_if_none_match_fail.yaml | 58 +- ...ions.test_put_blob_with_if_unmodified.yaml | 44 +- ...test_put_blob_with_if_unmodified_fail.yaml | 44 +- ...ons.test_put_block_list_with_if_match.yaml | 114 +- ...est_put_block_list_with_if_match_fail.yaml | 83 +- ....test_put_block_list_with_if_modified.yaml | 99 +- ..._put_block_list_with_if_modified_fail.yaml | 85 +- ...est_put_block_list_with_if_none_match.yaml | 97 +- ...ut_block_list_with_if_none_match_fail.yaml | 100 +- ...est_put_block_list_with_if_unmodified.yaml | 99 +- ...ut_block_list_with_if_unmodified_fail.yaml | 85 +- ....test_set_blob_metadata_with_if_match.yaml | 72 +- ..._set_blob_metadata_with_if_match_fail.yaml | 42 +- ...st_set_blob_metadata_with_if_modified.yaml | 58 +- ...t_blob_metadata_with_if_modified_fail.yaml | 44 +- ..._set_blob_metadata_with_if_none_match.yaml | 56 +- ...blob_metadata_with_if_none_match_fail.yaml | 58 +- ..._set_blob_metadata_with_if_unmodified.yaml | 58 +- ...blob_metadata_with_if_unmodified_fail.yaml | 44 +- ...est_set_blob_properties_with_if_match.yaml | 72 +- ...et_blob_properties_with_if_match_fail.yaml | 42 +- ..._set_blob_properties_with_if_modified.yaml | 58 +- ...blob_properties_with_if_modified_fail.yaml | 44 +- ...et_blob_properties_with_if_none_match.yaml | 56 +- ...ob_properties_with_if_none_match_fail.yaml | 58 +- ...et_blob_properties_with_if_unmodified.yaml | 58 +- ...ob_properties_with_if_unmodified_fail.yaml | 44 +- ...st_set_container_acl_with_if_modified.yaml | 44 +- ...t_container_acl_with_if_modified_fail.yaml | 30 +- ..._set_container_acl_with_if_unmodified.yaml | 44 +- ...container_acl_with_if_unmodified_fail.yaml | 30 +- ...t_container_metadata_with_if_modified.yaml | 44 +- ...tainer_metadata_with_if_modified_fail.yaml | 30 +- ...ions.test_snapshot_blob_with_if_match.yaml | 60 +- ...test_snapshot_blob_with_if_match_fail.yaml | 42 +- ...s.test_snapshot_blob_with_if_modified.yaml | 46 +- ...t_snapshot_blob_with_if_modified_fail.yaml | 44 +- ...test_snapshot_blob_with_if_none_match.yaml | 44 +- ...snapshot_blob_with_if_none_match_fail.yaml | 58 +- ...test_snapshot_blob_with_if_unmodified.yaml | 46 +- ...snapshot_blob_with_if_unmodified_fail.yaml | 44 +- ...itions.test_update_page_with_if_match.yaml | 58 +- ...s.test_update_page_with_if_match_fail.yaml | 42 +- ...ons.test_update_page_with_if_modified.yaml | 44 +- ...est_update_page_with_if_modified_fail.yaml | 44 +- ...s.test_update_page_with_if_none_match.yaml | 42 +- ...t_update_page_with_if_none_match_fail.yaml | 58 +- ...s.test_update_page_with_if_unmodified.yaml | 44 +- ...t_update_page_with_if_unmodified_fail.yaml | 44 +- ...tion.test_create_block_blob_from_star.yaml | 200 +- ...ption.test_create_page_blob_from_star.yaml | 276 +- ...est_blob_encryption.test_get_blob_kek.yaml | 48 +- ...ryption.test_get_blob_nonmatching_kid.yaml | 48 +- ...et_blob_range_aligns_on_16_byte_block.yaml | 52 +- ...st_get_blob_range_beginning_to_middle.yaml | 54 +- ...nge_expanded_to_beginning_block_align.yaml | 54 +- ...t_blob_range_expanded_to_beginning_iv.yaml | 52 +- ...ion.test_get_blob_range_middle_to_end.yaml | 80 +- ....test_get_blob_range_middle_to_middle.yaml | 54 +- ...lob_encryption.test_get_blob_resolver.yaml | 48 +- ...n.test_get_blob_strict_mode_no_policy.yaml | 24 +- ...get_blob_strict_mode_unencrypted_blob.yaml | 28 +- ...blob_encryption.test_get_blob_to_star.yaml | 120 +- ...ryption.test_invalid_value_kek_unwrap.yaml | 48 +- ...ion.test_missing_attribute_kek_unwrap.yaml | 72 +- ...t_blob_encryption.test_put_blob_empty.yaml | 48 +- ...t_blob_encryption.test_put_blob_range.yaml | 2454 +++--- ....test_put_blob_serial_upload_chunking.yaml | 2454 +++--- ...ption.test_put_block_blob_single_shot.yaml | 48 +- ...b_encryption.test_validate_encryption.yaml | 48 +- ...ck_blob.test_create_blob_from_0_bytes.yaml | 111 + ...t_create_blob_from_bytes_non_parallel.yaml | 198 +- ...est_create_blob_from_bytes_single_put.yaml | 42 +- ..._blob_from_bytes_with_index_and_count.yaml | 28 +- ...s_with_index_and_count_and_properties.yaml | 42 +- ...st_create_blob_from_path_non_parallel.yaml | 42 +- ...block_blob.test_create_blob_from_text.yaml | 42 +- ...t_create_blob_from_text_with_encoding.yaml | 28 +- ..._from_text_with_encoding_and_progress.yaml | 28 +- ..._block_blob.test_create_blob_with_md5.yaml | 14 +- ....test_get_block_list_committed_blocks.yaml | 58 +- ...ck_blob.test_get_block_list_no_blocks.yaml | 39 +- ...est_get_block_list_uncommitted_blocks.yaml | 40 +- .../test_block_blob.test_put_block.yaml | 75 +- .../test_block_blob.test_put_block_list.yaml | 58 +- ....test_put_block_list_invalid_block_id.yaml | 44 +- ...ock_blob.test_put_block_list_with_md5.yaml | 44 +- ...est_block_blob.test_put_block_unicode.yaml | 25 +- ...st_block_blob.test_put_block_with_md5.yaml | 35 +- ...t.test_request_callback_signed_header.yaml | 38 +- .../test_client.test_response_callback.yaml | 14 +- ...test_common_blob.test_abort_copy_blob.yaml | 92 +- ...copy_blob_with_synchronous_copy_fails.yaml | 46 +- ...n_blob.test_blob_container_not_exists.yaml | 10 +- .../test_common_blob.test_blob_exists.yaml | 28 +- ...test_common_blob.test_blob_not_exists.yaml | 10 +- ...lob.test_copy_blob_async_private_blob.yaml | 42 +- ...copy_blob_async_private_blob_with_sas.yaml | 212 +- ...lob.test_copy_blob_with_existing_blob.yaml | 48 +- ...ob.test_create_blob_blob_unicode_data.yaml | 14 +- ...n_blob.test_create_blob_with_lease_id.yaml | 62 +- ...n_blob.test_create_blob_with_metadata.yaml | 28 +- ...b.test_create_blob_with_question_mark.yaml | 28 +- ...b.test_create_blob_with_special_chars.yaml | 336 +- ...common_blob.test_delete_blob_snapshot.yaml | 56 +- ...ommon_blob.test_delete_blob_snapshots.yaml | 54 +- ...b.test_delete_blob_with_existing_blob.yaml | 24 +- ...st_delete_blob_with_non_existing_blob.yaml | 14 +- ..._blob.test_delete_blob_with_snapshots.yaml | 50 +- ...st_common_blob.test_get_blob_metadata.yaml | 28 +- ..._common_blob.test_get_blob_properties.yaml | 28 +- ...get_blob_properties_server_encryption.yaml | 28 +- ..._get_blob_properties_with_leased_blob.yaml | 44 +- ...est_get_blob_properties_with_snapshot.yaml | 64 +- ..._blob.test_get_blob_server_encryption.yaml | 28 +- ...blob.test_get_blob_with_existing_blob.yaml | 28 +- ..._common_blob.test_get_blob_with_lease.yaml | 62 +- ....test_get_blob_with_non_existing_blob.yaml | 14 +- ..._common_blob.test_get_blob_with_range.yaml | 28 +- ...mmon_blob.test_get_blob_with_snapshot.yaml | 46 +- ....test_get_blob_with_snapshot_previous.yaml | 74 +- ...b.test_lease_blob_acquire_and_release.yaml | 62 +- ...lob.test_lease_blob_acquire_and_renew.yaml | 48 +- ...b.test_lease_blob_acquire_twice_fails.yaml | 60 +- ...mon_blob.test_lease_blob_break_period.yaml | 76 +- ..._blob.test_lease_blob_change_lease_id.yaml | 60 +- ...on_blob.test_lease_blob_with_duration.yaml | 62 +- ...est_lease_blob_with_proposed_lease_id.yaml | 28 +- ...lob.test_list_blobs_server_encryption.yaml | 42 +- ..._common_blob.test_no_sas_private_blob.yaml | 24 +- ...t_common_blob.test_no_sas_public_blob.yaml | 38 +- ...common_blob.test_no_server_encryption.yaml | 28 +- ...t_common_blob.test_public_access_blob.yaml | 42 +- ...est_set_blob_metadata_with_upper_case.yaml | 42 +- ...b_properties_with_blob_settings_param.yaml | 56 +- ...et_blob_properties_with_existing_blob.yaml | 42 +- .../test_common_blob.test_snapshot_blob.yaml | 30 +- ...ob.test_unicode_get_blob_unicode_name.yaml | 28 +- .../test_container.test_container_exists.yaml | 28 +- ...iner.test_container_exists_with_lease.yaml | 44 +- ...t_container.test_container_not_exists.yaml | 14 +- .../test_container.test_create_container.yaml | 14 +- ...r.test_create_container_fail_on_exist.yaml | 14 +- ...ainer_with_already_existing_container.yaml | 28 +- ...eady_existing_container_fail_on_exist.yaml | 28 +- ...r.test_create_container_with_metadata.yaml | 28 +- ...ate_container_with_public_access_blob.yaml | 42 +- ...ontainer_with_public_access_container.yaml | 24 +- ...ete_container_with_existing_container.yaml | 38 +- ...ith_existing_container_fail_not_exist.yaml | 38 +- ...r.test_delete_container_with_lease_id.yaml | 56 +- ...container_with_non_existing_container.yaml | 14 +- ...non_existing_container_fail_not_exist.yaml | 14 +- ...test_container.test_get_container_acl.yaml | 28 +- ....test_get_container_acl_with_lease_id.yaml | 46 +- ...container.test_get_container_metadata.yaml | 42 +- ..._get_container_metadata_with_lease_id.yaml | 60 +- ...ntainer.test_get_container_properties.yaml | 58 +- ...et_container_properties_with_lease_id.yaml | 74 +- ...t_lease_container_acquire_and_release.yaml | 46 +- ...ner.test_lease_container_break_period.yaml | 60 +- ..._container_break_released_lease_fails.yaml | 60 +- ....test_lease_container_change_lease_id.yaml | 60 +- ..._container.test_lease_container_renew.yaml | 70 +- ...er.test_lease_container_with_duration.yaml | 60 +- ...ease_container_with_proposed_lease_id.yaml | 28 +- .../test_container.test_list_blobs.yaml | 60 +- ...container.test_list_blobs_leased_blob.yaml | 58 +- ...tainer.test_list_blobs_with_delimiter.yaml | 84 +- ...ner.test_list_blobs_with_include_copy.yaml | 66 +- ...test_list_blobs_with_include_metadata.yaml | 76 +- ...test_list_blobs_with_include_multiple.yaml | 80 +- ...est_list_blobs_with_include_snapshots.yaml | 80 +- ...t_blobs_with_include_uncommittedblobs.yaml | 72 +- ...iner.test_list_blobs_with_num_results.yaml | 88 +- ...container.test_list_blobs_with_prefix.yaml | 74 +- .../test_container.test_list_containers.yaml | 74 +- ...list_containers_with_include_metadata.yaml | 42 +- ...ontainers_with_num_results_and_marker.yaml | 88 +- ...iner.test_list_containers_with_prefix.yaml | 28 +- ...st_list_containers_with_public_access.yaml | 42 +- ...test_container.test_set_container_acl.yaml | 42 +- ...r.test_set_container_acl_too_many_ids.yaml | 14 +- ...iner_acl_with_empty_signed_identifier.yaml | 42 +- ...ner_acl_with_empty_signed_identifiers.yaml | 42 +- ....test_set_container_acl_with_lease_id.yaml | 60 +- ..._set_container_acl_with_public_access.yaml | 42 +- ...container_acl_with_signed_identifiers.yaml | 46 +- ...container.test_set_container_metadata.yaml | 42 +- ..._set_container_metadata_with_lease_id.yaml | 60 +- ..._metadata_with_non_existing_container.yaml | 14 +- ...unicode_create_container_unicode_name.yaml | 14 +- ...est_directory.test_create_directories.yaml | 14 +- ...test_create_directories_fail_on_exist.yaml | 28 +- ...test_create_directories_with_metadata.yaml | 28 +- ...ctory_with_already_existing_directory.yaml | 28 +- ...ith_existing_directory_fail_not_exist.yaml | 38 +- ..._delete_directory_with_existing_share.yaml | 38 +- ...directory_with_non_existing_directory.yaml | 14 +- ...non_existing_directory_fail_not_exist.yaml | 14 +- .../test_directory.test_directory_exists.yaml | 28 +- ...t_directory.test_directory_not_exists.yaml | 14 +- ...rectory.test_get_directory_properties.yaml | 28 +- ...irectory_properties_server_encryption.yaml | 28 +- ...roperties_with_non_existing_directory.yaml | 14 +- ...ctory.test_get_set_directory_metadata.yaml | 42 +- .../test_file.test_abort_copy_file.yaml | 120 +- ...copy_file_with_synchronous_copy_fails.yaml | 60 +- .../test_file.test_clear_range.yaml | 56 +- ...ile.test_copy_file_async_private_file.yaml | 74 +- ...copy_file_async_private_file_with_sas.yaml | 244 +- ...ile.test_copy_file_with_existing_file.yaml | 62 +- .../test_file.test_create_file.yaml | 28 +- .../test_file.test_create_file_from_text.yaml | 42 +- ...t_create_file_from_text_with_encoding.yaml | 42 +- ..._file.test_create_file_with_md5_small.yaml | 28 +- ...t_file.test_create_file_with_metadata.yaml | 28 +- ...e.test_delete_file_with_existing_file.yaml | 48 +- ...st_delete_file_with_non_existing_file.yaml | 14 +- .../test_file.test_file_exists.yaml | 42 +- .../test_file.test_file_not_exists.yaml | 10 +- .../test_file.test_file_unicode_data.yaml | 42 +- .../test_file.test_get_file_metadata.yaml | 42 +- .../test_file.test_get_file_properties.yaml | 42 +- ...ile_properties_with_non_existing_file.yaml | 10 +- .../test_file.test_list_ranges_2.yaml | 56 +- .../test_file.test_list_ranges_none.yaml | 28 +- .../test_file.test_resize_file.yaml | 56 +- ...est_set_file_metadata_with_upper_case.yaml | 56 +- .../test_file.test_set_file_properties.yaml | 56 +- ...ile.test_unicode_get_file_binary_data.yaml | 42 +- ...le.test_unicode_get_file_unicode_name.yaml | 42 +- .../test_file.test_update_file_unicode.yaml | 28 +- .../test_file.test_update_range.yaml | 56 +- .../test_file.test_update_range_with_md5.yaml | 42 +- ...get_blob.test_get_blob_exact_get_size.yaml | 28 +- ...est_get_blob.test_get_blob_no_content.yaml | 54 +- ...b.test_get_blob_to_bytes_non_parallel.yaml | 14 +- ...get_blob.test_get_blob_to_bytes_small.yaml | 28 +- ...ob.test_get_blob_to_path_non_parallel.yaml | 14 +- ..._get_blob.test_get_blob_to_path_small.yaml | 28 +- ....test_get_blob_to_stream_non_parallel.yaml | 14 +- ...et_blob.test_get_blob_to_stream_small.yaml | 28 +- ...ob.test_get_blob_to_text_non_parallel.yaml | 28 +- ..._get_blob.test_get_blob_to_text_small.yaml | 28 +- ...b.test_get_blob_to_text_with_encoding.yaml | 28 +- ...ob_to_text_with_encoding_and_progress.yaml | 28 +- ..._ranged_get_blob_to_path_non_parallel.yaml | 14 +- ...ob.test_ranged_get_blob_to_path_small.yaml | 14 +- ...lob.test_unicode_get_blob_binary_data.yaml | 28 +- ...ob.test_unicode_get_blob_unicode_data.yaml | 28 +- ...get_file.test_get_file_exact_get_size.yaml | 42 +- ...est_get_file.test_get_file_no_content.yaml | 42 +- ...get_file_properties_server_encryption.yaml | 14 +- ..._file.test_get_file_server_encryption.yaml | 14 +- ...e.test_get_file_to_bytes_non_parallel.yaml | 14 +- ...get_file.test_get_file_to_bytes_small.yaml | 42 +- ...le.test_get_file_to_path_non_parallel.yaml | 14 +- ..._get_file.test_get_file_to_path_small.yaml | 42 +- ....test_get_file_to_stream_non_parallel.yaml | 14 +- ...et_file.test_get_file_to_stream_small.yaml | 42 +- ...le.test_get_file_to_text_non_parallel.yaml | 42 +- ..._get_file.test_get_file_to_text_small.yaml | 42 +- ...e.test_get_file_to_text_with_encoding.yaml | 42 +- ...le_to_text_with_encoding_and_progress.yaml | 42 +- ..._ranged_get_file_to_path_non_parallel.yaml | 14 +- ...le.test_ranged_get_file_to_path_small.yaml | 14 +- ...ile.test_unicode_get_file_binary_data.yaml | 42 +- ...le.test_unicode_get_file_unicode_data.yaml | 42 +- ...st_page_blob.test_blob_tier_copy_blob.yaml | 154 +- ...st_page_blob.test_blob_tier_on_create.yaml | 178 +- ...page_blob.test_blob_tier_set_tier_api.yaml | 90 +- .../test_page_blob.test_clear_page.yaml | 42 +- .../test_page_blob.test_create_8tb_blob.yaml | 42 +- .../test_page_blob.test_create_blob.yaml | 28 +- ..._blob_from_bytes_with_index_and_count.yaml | 56 +- ..._blob.test_create_blob_with_md5_small.yaml | 28 +- ...e_blob.test_create_blob_with_metadata.yaml | 28 +- ...test_create_larger_than_8tb_blob_fail.yaml | 14 +- ...age_blob.test_get_page_ranges_2_pages.yaml | 56 +- ...t_page_blob.test_get_page_ranges_diff.yaml | 106 +- ...ge_blob.test_get_page_ranges_no_pages.yaml | 28 +- ...ut_page_if_sequence_number_lt_success.yaml | 42 +- ...page_blob.test_put_page_with_lease_id.yaml | 62 +- .../test_page_blob.test_resize_blob.yaml | 42 +- ...ge_blob.test_set_sequence_number_blob.yaml | 42 +- ...t_page_blob.test_update_8tb_blob_page.yaml | 70 +- .../test_page_blob.test_update_page.yaml | 42 +- .../test_page_blob.test_update_page_fail.yaml | 28 +- ...te_page_if_sequence_number_eq_failure.yaml | 28 +- ...te_page_if_sequence_number_eq_success.yaml | 42 +- ...te_page_if_sequence_number_lt_failure.yaml | 28 +- ...e_page_if_sequence_number_lte_failure.yaml | 28 +- ...e_page_if_sequence_number_lte_success.yaml | 42 +- ...st_page_blob.test_update_page_unicode.yaml | 14 +- ...t_page_blob.test_update_page_with_md5.yaml | 28 +- .../test_queue.test_clear_messages.yaml | 102 +- .../test_queue.test_create_queue.yaml | 20 +- ...queue.test_create_queue_already_exist.yaml | 20 +- ...queue.test_create_queue_fail_on_exist.yaml | 20 +- ..._queue.test_create_queue_with_options.yaml | 20 +- .../test_queue.test_delete_message.yaml | 142 +- ...te_queue_fail_not_exist_already_exist.yaml | 20 +- ...delete_queue_fail_not_exist_not_exist.yaml | 14 +- ...est_queue.test_delete_queue_not_exist.yaml | 14 +- .../test_queue.test_get_messages.yaml | 100 +- ..._queue.test_get_messages_with_options.yaml | 118 +- .../test_queue.test_get_queue_acl.yaml | 20 +- .../test_queue.test_get_queue_acl_iter.yaml | 20 +- ...get_queue_acl_with_non_existing_queue.yaml | 14 +- ...test_get_queue_metadata_message_count.yaml | 38 +- .../test_queue.test_list_queues.yaml | 12 +- ..._queue.test_list_queues_with_metadata.yaml | 30 +- ...t_queue.test_list_queues_with_options.yaml | 60 +- .../test_queue.test_peek_messages.yaml | 98 +- ...queue.test_peek_messages_with_options.yaml | 110 +- .../test_queue.test_put_message.yaml | 82 +- .../test_queue.test_queue_exists.yaml | 20 +- .../test_queue.test_queue_not_exists.yaml | 14 +- .../test_queue.test_set_queue_acl.yaml | 30 +- ...queue.test_set_queue_acl_too_many_ids.yaml | 10 +- ...ueue_acl_with_empty_signed_identifier.yaml | 30 +- ...eue_acl_with_empty_signed_identifiers.yaml | 30 +- ...set_queue_acl_with_non_existing_queue.yaml | 14 +- ...set_queue_acl_with_signed_identifiers.yaml | 30 +- .../test_queue.test_set_queue_metadata.yaml | 30 +- ...est_unicode_create_queue_unicode_name.yaml | 14 +- ...est_unicode_get_messages_unicode_data.yaml | 46 +- ...t_unicode_update_message_unicode_data.yaml | 80 +- .../test_queue.test_update_message.yaml | 80 +- ...est_queue.test_update_message_content.yaml | 80 +- ...ings.test_message_base64_decode_fails.yaml | 92 +- ...e_encodings.test_message_bytes_base64.yaml | 46 +- ...ue_encodings.test_message_text_base64.yaml | 46 +- ...queue_encodings.test_message_text_xml.yaml | 46 +- ...s.test_message_text_xml_invalid_chars.yaml | 14 +- ...ings.test_message_text_xml_whitespace.yaml | 46 +- ..._encryption_add_encrypted_64k_message.yaml | 50 +- ...ption.test_encryption_nonmatching_kid.yaml | 62 +- ...ption.test_get_messages_encrypted_kek.yaml | 62 +- ....test_get_messages_encrypted_resolver.yaml | 62 +- ..._encryption.test_get_with_strict_mode.yaml | 56 +- ...ryption.test_invalid_value_kek_unwrap.yaml | 84 +- ...ncryption.test_invalid_value_kek_wrap.yaml | 10 +- ...ion.test_missing_attribute_kek_unrwap.yaml | 84 +- ...ption.test_missing_attribute_kek_wrap.yaml | 10 +- ...tion.test_peek_messages_encrypted_kek.yaml | 60 +- ...test_peek_messages_encrypted_resolver.yaml | 60 +- ..._encryption.test_put_with_strict_mode.yaml | 36 +- ....test_update_encrypted_binary_message.yaml | 112 +- ...on.test_update_encrypted_json_message.yaml | 112 +- ...ryption.test_update_encrypted_message.yaml | 112 +- ...est_update_encrypted_raw_text_message.yaml | 112 +- ...e_encryption.test_validate_encryption.yaml | 60 +- .../test_retry.test_invalid_retry.yaml | 24 +- .../test_retry.test_linear_retry.yaml | 38 +- .../test_retry.test_location_lock.yaml | 30 +- .../recordings/test_retry.test_no_retry.yaml | 24 +- ...test_retry.test_retry_on_server_error.yaml | 38 +- ...st_retry.test_retry_on_socket_timeout.yaml | 24 +- .../test_retry.test_retry_on_timeout.yaml | 38 +- ...etry.test_retry_to_secondary_with_get.yaml | 66 +- ...etry.test_retry_to_secondary_with_put.yaml | 38 +- ...retry.test_retry_with_deserialization.yaml | 52 +- ...st_retry.test_secondary_location_mode.yaml | 38 +- ...operties.test_blob_service_properties.yaml | 20 +- ...operties.test_file_service_properties.yaml | 20 +- ...perties.test_queue_service_properties.yaml | 20 +- ...ce_properties.test_retention_too_long.yaml | 14 +- ...test_service_properties.test_set_cors.yaml | 20 +- ...ties.test_set_default_service_version.yaml | 20 +- ...vice_properties.test_set_hour_metrics.yaml | 20 +- ...t_service_properties.test_set_logging.yaml | 20 +- ...ce_properties.test_set_minute_metrics.yaml | 20 +- ...perties.test_table_service_properties.yaml | 20 +- ...e_properties.test_too_many_cors_rules.yaml | 14 +- ...service_stats.test_blob_service_stats.yaml | 14 +- ...t_blob_service_stats_when_unavailable.yaml | 14 +- ...ervice_stats.test_queue_service_stats.yaml | 14 +- ..._queue_service_stats_when_unavailable.yaml | 14 +- ...ervice_stats.test_table_service_stats.yaml | 14 +- ..._table_service_stats_when_unavailable.yaml | 14 +- .../test_share.test_create_share.yaml | 14 +- ...share.test_create_share_fail_on_exist.yaml | 14 +- ...ate_share_with_already_existing_share.yaml | 28 +- ..._already_existing_share_fail_on_exist.yaml | 28 +- ...share.test_create_share_with_metadata.yaml | 28 +- ...st_share.test_create_share_with_quota.yaml | 28 +- ...test_delete_share_with_existing_share.yaml | 38 +- ...re_with_existing_share_fail_not_exist.yaml | 38 +- ..._delete_share_with_non_existing_share.yaml | 14 +- ...ith_non_existing_share_fail_not_exist.yaml | 14 +- .../test_share.test_get_share_metadata.yaml | 42 +- .../test_share.test_get_share_properties.yaml | 42 +- .../test_share.test_get_share_stats.yaml | 52 +- ...share.test_list_directories_and_files.yaml | 80 +- ...irectories_and_files_with_num_results.yaml | 94 +- ...and_files_with_num_results_and_marker.yaml | 104 +- ...ist_directories_and_files_with_prefix.yaml | 108 +- ...est_share.test_list_shares_no_options.yaml | 52 +- ...est_list_shares_with_include_metadata.yaml | 42 +- ...st_shares_with_num_results_and_marker.yaml | 88 +- ...st_share.test_list_shares_with_prefix.yaml | 28 +- .../test_share.test_set_share_acl.yaml | 42 +- ...share.test_set_share_acl_too_many_ids.yaml | 14 +- ...hare_acl_with_empty_signed_identifier.yaml | 42 +- ...are_acl_with_empty_signed_identifiers.yaml | 42 +- ...set_share_acl_with_signed_identifiers.yaml | 46 +- .../test_share.test_set_share_metadata.yaml | 42 +- .../test_share.test_set_share_properties.yaml | 42 +- .../test_share.test_share_exists.yaml | 28 +- .../test_share.test_share_not_exists.yaml | 14 +- ...est_unicode_create_share_unicode_name.yaml | 14 +- .../test_table.test_create_table.yaml | 20 +- ...table.test_create_table_fail_on_exist.yaml | 20 +- ...ate_table_with_already_existing_table.yaml | 32 +- ..._already_existing_table_fail_on_exist.yaml | 22 +- ...test_delete_table_with_existing_table.yaml | 32 +- ...le_with_existing_table_fail_not_exist.yaml | 32 +- ..._delete_table_with_non_existing_table.yaml | 12 +- ...ith_non_existing_table_fail_not_exist.yaml | 12 +- .../test_table.test_get_table_acl.yaml | 20 +- .../test_table.test_list_tables.yaml | 38 +- ...st_table.test_list_tables_with_marker.yaml | 66 +- ...ble.test_list_tables_with_num_results.yaml | 58 +- tests/recordings/test_table.test_locale.yaml | 14 +- .../test_table.test_set_table_acl.yaml | 30 +- ...table.test_set_table_acl_too_many_ids.yaml | 10 +- ...able_acl_with_empty_signed_identifier.yaml | 30 +- ...ble_acl_with_empty_signed_identifiers.yaml | 30 +- ...set_table_acl_with_signed_identifiers.yaml | 30 +- .../test_table.test_table_exists.yaml | 20 +- .../test_table.test_table_not_exists.yaml | 12 +- ...est_unicode_create_table_unicode_name.yaml | 12 +- ...ch.test_batch_all_operations_together.yaml | 140 +- ...l_operations_together_context_manager.yaml | 140 +- .../test_table_batch.test_batch_delete.yaml | 62 +- ...h_different_partition_operations_fail.yaml | 12 +- .../test_table_batch.test_batch_insert.yaml | 50 +- ...t_table_batch.test_batch_insert_merge.yaml | 52 +- ...table_batch.test_batch_insert_replace.yaml | 52 +- .../test_table_batch.test_batch_inserts.yaml | 442 +- .../test_table_batch.test_batch_merge.yaml | 78 +- .../test_table_batch.test_batch_reuse.yaml | 274 +- ...h.test_batch_same_row_operations_fail.yaml | 12 +- ...t_table_batch.test_batch_too_many_ops.yaml | 12 +- .../test_table_batch.test_batch_update.yaml | 84 +- ...tch.test_batch_update_if_doesnt_match.yaml | 128 +- ...able_batch.test_batch_update_if_match.yaml | 64 +- ..._batch_entity_inserts_context_manager.yaml | 166 +- ....test_get_encrypt_multiple_properties.yaml | 44 +- ...le_encryption.test_get_encrypted_dict.yaml | 44 +- ..._encryption.test_get_encrypted_entity.yaml | 44 +- ..._encrypted_entity_encryption_resolver.yaml | 64 +- ...est_get_encrypted_entity_key_resolver.yaml | 44 +- ...rypted_entity_properties_and_resolver.yaml | 44 +- ...t_get_entity_invalid_value_kek_unwrap.yaml | 64 +- ...t_entity_missing_attribute_kek_unwrap.yaml | 64 +- ...ryption.test_get_entity_no_decryption.yaml | 44 +- ...ption.test_get_entity_nonmatching_kid.yaml | 44 +- ...e_encryption.test_get_payload_formats.yaml | 132 +- ...ncryption.test_get_strict_mode_no_key.yaml | 44 +- ...st_get_strict_mode_unencrypted_entity.yaml | 26 +- ...st_invalid_encryption_operations_fail.yaml | 24 +- ...alid_encryption_operations_fail_batch.yaml | 24 +- ...st_property_resolver_decrypt_conflict.yaml | 44 +- ...on.test_query_entities_all_properties.yaml | 162 +- ...yption.test_query_entities_mixed_mode.yaml | 72 +- ...yption.test_query_entities_projection.yaml | 162 +- ..._table_encryption.test_replace_entity.yaml | 56 +- ...t_mode_policy_no_encrypted_properties.yaml | 42 +- ...tion.test_table_ops_ignore_encryption.yaml | 122 +- ...e_encryption.test_validate_encryption.yaml | 44 +- ...st_validate_swapping_properties_fails.yaml | 112 +- ...ble_entity.test_binary_property_value.yaml | 26 +- .../test_table_entity.test_delete_entity.yaml | 34 +- ...ntity.test_delete_entity_not_existing.yaml | 12 +- ...st_delete_entity_with_if_doesnt_match.yaml | 24 +- ...ty.test_delete_entity_with_if_matches.yaml | 36 +- ....test_empty_and_spaces_property_value.yaml | 26 +- .../test_table_entity.test_get_entity.yaml | 26 +- ..._entity.test_get_entity_full_metadata.yaml | 26 +- ...table_entity.test_get_entity_if_match.yaml | 38 +- ...le_entity.test_get_entity_no_metadata.yaml | 26 +- ...e_entity.test_get_entity_not_existing.yaml | 12 +- ...est_get_entity_with_property_resolver.yaml | 26 +- ...entity_with_property_resolver_invalid.yaml | 68 +- ..._with_property_resolver_not_supported.yaml | 68 +- ...le_entity.test_get_entity_with_select.yaml | 26 +- ....test_get_entity_with_special_doubles.yaml | 26 +- ...ity.test_insert_entity_class_instance.yaml | 12 +- ...le_entity.test_insert_entity_conflict.yaml | 26 +- ..._entity.test_insert_entity_dictionary.yaml | 12 +- ..._or_merge_entity_with_existing_entity.yaml | 38 +- ...merge_entity_with_non_existing_entity.yaml | 26 +- ...r_replace_entity_with_existing_entity.yaml | 38 +- ...place_entity_with_non_existing_entity.yaml | 26 +- .../test_table_entity.test_merge_entity.yaml | 38 +- ...entity.test_merge_entity_not_existing.yaml | 12 +- ...est_merge_entity_with_if_doesnt_match.yaml | 24 +- ...ity.test_merge_entity_with_if_matches.yaml | 40 +- ...table_entity.test_none_property_value.yaml | 26 +- ...test_table_entity.test_query_entities.yaml | 60 +- ...ity.test_query_entities_full_metadata.yaml | 60 +- ...able_entity.test_query_entities_large.yaml | 6648 ++++++++--------- ...ntity.test_query_entities_no_metadata.yaml | 60 +- ...ntity.test_query_entities_with_filter.yaml | 24 +- ...query_entities_with_property_resolver.yaml | 60 +- ...ntity.test_query_entities_with_select.yaml | 60 +- ...e_entity.test_query_entities_with_top.yaml | 64 +- ...test_query_entities_with_top_and_next.yaml | 96 +- ...table_entity.test_query_zero_entities.yaml | 48 +- .../test_table_entity.test_timezone.yaml | 26 +- ...ble_entity.test_unicode_property_name.yaml | 36 +- ...le_entity.test_unicode_property_value.yaml | 36 +- .../test_table_entity.test_update_entity.yaml | 38 +- ...st_update_entity_with_if_doesnt_match.yaml | 24 +- ...ty.test_update_entity_with_if_matches.yaml | 40 +- 613 files changed, 22006 insertions(+), 21912 deletions(-) create mode 100644 tests/recordings/test_append_blob.test_append_blob_from_0_bytes.yaml create mode 100644 tests/recordings/test_block_blob.test_create_blob_from_0_bytes.yaml diff --git a/tests/recordings/test_append_blob.test_append_blob_from_0_bytes.yaml b/tests/recordings/test_append_blob.test_append_blob_from_0_bytes.yaml new file mode 100644 index 00000000..8ff9e805 --- /dev/null +++ b/tests/recordings/test_append_blob.test_append_blob_from_0_bytes.yaml @@ -0,0 +1,81 @@ +interactions: +- request: + body: null + headers: + Connection: [keep-alive] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [AppendBlob] + x-ms-client-request-id: [a93746cc-68f4-11e7-84ba-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:27 GMT'] + x-ms-version: ['2017-04-17'] + method: PUT + uri: https://storagename.blob.core.windows.net/utcontainerb59f1281/blobb59f1281 + response: + body: {string: ''} + headers: + Date: ['Sat, 15 Jul 2017 00:29:28 GMT'] + ETag: ['"0x8D4CB188E0207CD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:28 GMT'] + Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] + Transfer-Encoding: [chunked] + x-ms-request-id: [07a0e5c6-0001-00d4-7101-fd1df4000000] + x-ms-request-server-encrypted: ['true'] + x-ms-version: ['2017-04-17'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Connection: [keep-alive] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a9572110-68f4-11e7-b84e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:28 GMT'] + x-ms-range: [bytes=0-33554431] + x-ms-version: ['2017-04-17'] + method: GET + uri: https://storagename.blob.core.windows.net/utcontainerb59f1281/blobb59f1281 + response: + body: {string: "\uFEFFInvalidRangeThe\ + \ range specified is invalid for the current size of the resource.\nRequestId:07a0e5e6-0001-00d4-0c01-fd1df4000000\n\ + Time:2017-07-15T00:29:28.7981699Z"} + headers: + Content-Length: ['249'] + Content-Range: [bytes */0] + Content-Type: [application/xml] + Date: ['Sat, 15 Jul 2017 00:29:28 GMT'] + Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] + Vary: [Origin] + x-ms-request-id: [07a0e5e6-0001-00d4-0c01-fd1df4000000] + x-ms-version: ['2017-04-17'] + status: {code: 416, message: The range specified is invalid for the current size + of the resource.} +- request: + body: null + headers: + Connection: [keep-alive] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a95d1d0c-68f4-11e7-9810-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:28 GMT'] + x-ms-version: ['2017-04-17'] + method: GET + uri: https://storagename.blob.core.windows.net/utcontainerb59f1281/blobb59f1281 + response: + body: {string: ''} + headers: + Accept-Ranges: [bytes] + Content-Length: ['0'] + Content-Type: [application/octet-stream] + Date: ['Sat, 15 Jul 2017 00:29:28 GMT'] + ETag: ['"0x8D4CB188E0207CD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:28 GMT'] + Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] + Vary: [Origin] + x-ms-blob-committed-block-count: ['0'] + x-ms-blob-type: [AppendBlob] + x-ms-lease-state: [available] + x-ms-lease-status: [unlocked] + x-ms-request-id: [07a0e5fb-0001-00d4-1e01-fd1df4000000] + x-ms-server-encrypted: ['true'] + x-ms-version: ['2017-04-17'] + status: {code: 200, message: OK} +version: 1 diff --git a/tests/recordings/test_append_blob.test_append_blob_from_bytes.yaml b/tests/recordings/test_append_blob.test_append_blob_from_bytes.yaml index 2075517a..92d44371 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_bytes.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_bytes.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [c09f8312-67fa-11e7-b81c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:32 GMT'] + x-ms-client-request-id: [a991647e-68f4-11e7-bf92-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer927f11f2/blob927f11f2 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:32 GMT'] - ETag: ['"0x8D4CA1EA4B65523"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:28 GMT'] + ETag: ['"0x8D4CB188E5C4656"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44842355-0001-0127-6a07-fc88c8000000] + x-ms-request-id: [db81f098-0001-0044-6101-fd88b8000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['26'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c0b42358-67fa-11e7-8376-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a9a668c6-68f4-11e7-b801-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer927f11f2/blob927f11f2?comp=appendblock @@ -38,14 +38,14 @@ interactions: body: {string: ''} headers: Content-MD5: [w/zT12GS5AB9+0lsymfhOw==] - Date: ['Thu, 13 Jul 2017 18:40:32 GMT'] - ETag: ['"0x8D4CA1EA4BCBEF0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:28 GMT'] + ETag: ['"0x8D4CB188E6213CB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [44842362-0001-0127-7207-fc88c8000000] + x-ms-request-id: [db81f0a7-0001-0044-6c01-fd88b8000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -53,9 +53,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c0ba447a-67fa-11e7-9e11-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a9ac7fca-68f4-11e7-868c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:28 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer927f11f2/blob927f11f2 @@ -65,16 +65,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['26'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:32 GMT'] - ETag: ['"0x8D4CA1EA4BCBEF0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:28 GMT'] + ETag: ['"0x8D4CB188E6213CB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['1'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [4484236a-0001-0127-7807-fc88c8000000] + x-ms-request-id: [db81f0b4-0001-0044-7801-fd88b8000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -82,9 +82,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c0bfec06-67fa-11e7-a825-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a9b42e9e-68f4-11e7-9805-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:28 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -96,16 +96,16 @@ interactions: Content-Length: ['26'] Content-Range: [bytes 0-25/26] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:32 GMT'] - ETag: ['"0x8D4CA1EA4BCBEF0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:28 GMT'] + ETag: ['"0x8D4CB188E6213CB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['1'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [44842370-0001-0127-7d07-fc88c8000000] + x-ms-request-id: [db81f0be-0001-0044-0201-fd88b8000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_bytes_chunked_upload.yaml b/tests/recordings/test_append_blob.test_append_blob_from_bytes_chunked_upload.yaml index ca669b27..64dbdf90 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_bytes_chunked_upload.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_bytes_chunked_upload.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [c0f4a5fe-67fa-11e7-b442-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:33 GMT'] + x-ms-client-request-id: [a9ebe7dc-68f4-11e7-8d9e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:32 GMT'] - ETag: ['"0x8D4CA1EA50B3B2D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188EB7E4D3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cd1f3c77-0001-0073-7107-fc2417000000] + x-ms-request-id: [54ed300f-0001-0069-2901-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -100,9 +100,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c11e325c-67fa-11e7-a9f1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aa176d80-68f4-11e7-afbc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -110,14 +110,14 @@ interactions: body: {string: ''} headers: Content-MD5: [rGEPWsRzdeCmybtf/cMRZg==] - Date: ['Thu, 13 Jul 2017 18:40:32 GMT'] - ETag: ['"0x8D4CA1EA5272CA3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188ED312F8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [cd1f3cd2-0001-0073-4107-fc2417000000] + x-ms-request-id: [54ed3046-0001-0069-5501-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -198,10 +198,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['4096'] - x-ms-client-request-id: [c124ccf4-67fa-11e7-9dc0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:33 GMT'] + x-ms-client-request-id: [aa1d7a7a-68f4-11e7-bba7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -209,14 +209,14 @@ interactions: body: {string: ''} headers: Content-MD5: [U2LUSNVnQkAnwcm39ZXYxQ==] - Date: ['Thu, 13 Jul 2017 18:40:32 GMT'] - ETag: ['"0x8D4CA1EA52CFA13"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188ED8E06C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['4096'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [cd1f3ce2-0001-0073-4f07-fc2417000000] + x-ms-request-id: [54ed304e-0001-0069-5b01-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -297,10 +297,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['8192'] - x-ms-client-request-id: [c12adf8c-67fa-11e7-ac55-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:33 GMT'] + x-ms-client-request-id: [aa23c7c6-68f4-11e7-a384-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -308,14 +308,14 @@ interactions: body: {string: ''} headers: Content-MD5: [EK/rn9vMeZsvruG6KWsSdg==] - Date: ['Thu, 13 Jul 2017 18:40:32 GMT'] - ETag: ['"0x8D4CA1EA53315D4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188EDFBFAC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['8192'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [cd1f3cf1-0001-0073-5b07-fc2417000000] + x-ms-request-id: [54ed3068-0001-0069-6f01-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -396,10 +396,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['12288'] - x-ms-client-request-id: [c1304a14-67fa-11e7-9855-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:33 GMT'] + x-ms-client-request-id: [aa2aaf58-68f4-11e7-8dfb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -407,14 +407,14 @@ interactions: body: {string: ''} headers: Content-MD5: [9tRW7EGg9T5JxuqlKgmx2Q==] - Date: ['Thu, 13 Jul 2017 18:40:32 GMT'] - ETag: ['"0x8D4CA1EA5386DFA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188EE69E97"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['12288'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [cd1f3d04-0001-0073-6c07-fc2417000000] + x-ms-request-id: [54ed3078-0001-0069-7d01-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -495,10 +495,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['16384'] - x-ms-client-request-id: [c135991a-67fa-11e7-9c76-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:33 GMT'] + x-ms-client-request-id: [aa309618-68f4-11e7-84d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -506,14 +506,14 @@ interactions: body: {string: ''} headers: Content-MD5: [XAE5n7ta+RnyOMpB/5Py0Q==] - Date: ['Thu, 13 Jul 2017 18:40:32 GMT'] - ETag: ['"0x8D4CA1EA53D9EE4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188EEC1DDC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['16384'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [cd1f3d11-0001-0073-7607-fc2417000000] + x-ms-request-id: [54ed308d-0001-0069-1101-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -594,10 +594,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['20480'] - x-ms-client-request-id: [c13b24d4-67fa-11e7-98be-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:33 GMT'] + x-ms-client-request-id: [aa362590-68f4-11e7-95e4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -605,14 +605,14 @@ interactions: body: {string: ''} headers: Content-MD5: [umByOogWxIaTKdFnRCq6DA==] - Date: ['Thu, 13 Jul 2017 18:40:33 GMT'] - ETag: ['"0x8D4CA1EA546A140"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188EF19D25"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['20480'] x-ms-blob-committed-block-count: ['6'] - x-ms-request-id: [cd1f3d2c-0001-0073-1107-fc2417000000] + x-ms-request-id: [54ed3098-0001-0069-1c01-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -693,10 +693,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['24576'] - x-ms-client-request-id: [c14415b4-67fa-11e7-8260-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:34 GMT'] + x-ms-client-request-id: [aa3bdd00-68f4-11e7-9e08-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -704,14 +704,14 @@ interactions: body: {string: ''} headers: Content-MD5: [HYd/ZrPfGyxAd2P2FAzhRA==] - Date: ['Thu, 13 Jul 2017 18:40:33 GMT'] - ETag: ['"0x8D4CA1EA54C4788"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188EF76A94"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['24576'] x-ms-blob-committed-block-count: ['7'] - x-ms-request-id: [cd1f3d3d-0001-0073-2007-fc2417000000] + x-ms-request-id: [54ed30a6-0001-0069-2901-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -792,10 +792,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['28672'] - x-ms-client-request-id: [c149aeb4-67fa-11e7-8f75-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:34 GMT'] + x-ms-client-request-id: [aa42339e-68f4-11e7-b566-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -803,14 +803,14 @@ interactions: body: {string: ''} headers: Content-MD5: [JJgJV8+pFyMbCxdyKbNuWw==] - Date: ['Thu, 13 Jul 2017 18:40:33 GMT'] - ETag: ['"0x8D4CA1EA551C6CA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188EFD8639"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28672'] x-ms-blob-committed-block-count: ['8'] - x-ms-request-id: [cd1f3d51-0001-0073-3107-fc2417000000] + x-ms-request-id: [54ed30b9-0001-0069-3a01-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -891,10 +891,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['32768'] - x-ms-client-request-id: [c14f23da-67fa-11e7-bc61-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:34 GMT'] + x-ms-client-request-id: [aa47fad8-68f4-11e7-8951-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -902,14 +902,14 @@ interactions: body: {string: ''} headers: Content-MD5: [a4PcAPwZsToyUulzu4uLHA==] - Date: ['Thu, 13 Jul 2017 18:40:33 GMT'] - ETag: ['"0x8D4CA1EA5571EF1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188F0353A8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['32768'] x-ms-blob-committed-block-count: ['9'] - x-ms-request-id: [cd1f3d61-0001-0073-3f07-fc2417000000] + x-ms-request-id: [54ed30cb-0001-0069-4b01-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -990,10 +990,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['36864'] - x-ms-client-request-id: [c15461d8-67fa-11e7-ad79-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:34 GMT'] + x-ms-client-request-id: [aa4daec2-68f4-11e7-9e86-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -1001,14 +1001,14 @@ interactions: body: {string: ''} headers: Content-MD5: [Wv+Oo2e//5mXe/tERNsOYg==] - Date: ['Thu, 13 Jul 2017 18:40:33 GMT'] - ETag: ['"0x8D4CA1EA55E4C68"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188F09211B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['36864'] x-ms-blob-committed-block-count: ['10'] - x-ms-request-id: [cd1f3d69-0001-0073-4707-fc2417000000] + x-ms-request-id: [54ed30d4-0001-0069-5301-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1089,10 +1089,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['40960'] - x-ms-client-request-id: [c15c2058-67fa-11e7-a10b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:34 GMT'] + x-ms-client-request-id: [aa53459e-68f4-11e7-9482-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -1100,14 +1100,14 @@ interactions: body: {string: ''} headers: Content-MD5: [YMcHGblCZg+uoCFoBkh7TA==] - Date: ['Thu, 13 Jul 2017 18:40:33 GMT'] - ETag: ['"0x8D4CA1EA56467C2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188F0E7949"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['40960'] x-ms-blob-committed-block-count: ['11'] - x-ms-request-id: [cd1f3d77-0001-0073-5407-fc2417000000] + x-ms-request-id: [54ed30df-0001-0069-5c01-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1188,10 +1188,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['45056'] - x-ms-client-request-id: [c161b1b4-67fa-11e7-b80a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:34 GMT'] + x-ms-client-request-id: [aa59e782-68f4-11e7-98a8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -1199,14 +1199,14 @@ interactions: body: {string: ''} headers: Content-MD5: [jAdYLt1PGwNKNkA9Mfz8MA==] - Date: ['Thu, 13 Jul 2017 18:40:33 GMT'] - ETag: ['"0x8D4CA1EA56998CD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188F153147"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['45056'] x-ms-blob-committed-block-count: ['12'] - x-ms-request-id: [cd1f3d81-0001-0073-5d07-fc2417000000] + x-ms-request-id: [54ed30ef-0001-0069-6a01-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1287,10 +1287,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['49152'] - x-ms-client-request-id: [c166d4b4-67fa-11e7-8457-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:34 GMT'] + x-ms-client-request-id: [aa60a568-68f4-11e7-8290-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -1298,14 +1298,14 @@ interactions: body: {string: ''} headers: Content-MD5: [0uMXYpPvq2edvPpp0Q0Vkw==] - Date: ['Thu, 13 Jul 2017 18:40:33 GMT'] - ETag: ['"0x8D4CA1EA56F1813"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188F1E0C8B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['49152'] x-ms-blob-committed-block-count: ['13'] - x-ms-request-id: [cd1f3d8f-0001-0073-6b07-fc2417000000] + x-ms-request-id: [54ed3102-0001-0069-7901-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1386,10 +1386,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['53248'] - x-ms-client-request-id: [c16c43ca-67fa-11e7-8717-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:34 GMT'] + x-ms-client-request-id: [aa6a4f1e-68f4-11e7-947a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -1397,14 +1397,14 @@ interactions: body: {string: ''} headers: Content-MD5: [EC0g9hDtZf79OtwPC1YneA==] - Date: ['Thu, 13 Jul 2017 18:40:33 GMT'] - ETag: ['"0x8D4CA1EA574BE68"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188F25D631"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['53248'] x-ms-blob-committed-block-count: ['14'] - x-ms-request-id: [cd1f3d9f-0001-0073-7a07-fc2417000000] + x-ms-request-id: [54ed311b-0001-0069-0e01-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1485,10 +1485,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['57344'] - x-ms-client-request-id: [c173a946-67fa-11e7-b943-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:34 GMT'] + x-ms-client-request-id: [aa6feb9a-68f4-11e7-88b0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -1496,14 +1496,14 @@ interactions: body: {string: ''} headers: Content-MD5: [W0JJAUn3xZCcC+o1dWIOvg==] - Date: ['Thu, 13 Jul 2017 18:40:33 GMT'] - ETag: ['"0x8D4CA1EA57BC490"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188F2B557E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['57344'] x-ms-blob-committed-block-count: ['15'] - x-ms-request-id: [cd1f3dad-0001-0073-0607-fc2417000000] + x-ms-request-id: [54ed312a-0001-0069-1c01-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1584,10 +1584,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['61440'] - x-ms-client-request-id: [c1794d06-67fa-11e7-bb4c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:34 GMT'] + x-ms-client-request-id: [aa7551b6-68f4-11e7-8f7a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817?comp=appendblock @@ -1595,14 +1595,14 @@ interactions: body: {string: ''} headers: Content-MD5: [4AyJh7eDgBHkXpjAhx5eIQ==] - Date: ['Thu, 13 Jul 2017 18:40:33 GMT'] - ETag: ['"0x8D4CA1EA5816AE1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188F30AD9F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['61440'] x-ms-blob-committed-block-count: ['16'] - x-ms-request-id: [cd1f3db8-0001-0073-0f07-fc2417000000] + x-ms-request-id: [54ed3133-0001-0069-2501-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1610,9 +1610,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c17f3688-67fa-11e7-8aa6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aa7a9cf4-68f4-11e7-a089-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd0ba1817/blobd0ba1817 @@ -1622,16 +1622,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['65536'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:33 GMT'] - ETag: ['"0x8D4CA1EA5816AE1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188F30AD9F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['16'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [cd1f3dc8-0001-0073-1f07-fc2417000000] + x-ms-request-id: [54ed313d-0001-0069-2e01-fd0b78000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -1639,9 +1639,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c1845f1e-67fa-11e7-9660-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aa7fb9a8-68f4-11e7-8797-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:29 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -2804,16 +2804,16 @@ interactions: Content-Length: ['65536'] Content-Range: [bytes 0-65535/65536] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:33 GMT'] - ETag: ['"0x8D4CA1EA5816AE1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:29 GMT'] + ETag: ['"0x8D4CB188F30AD9F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['16'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [cd1f3dd7-0001-0073-2b07-fc2417000000] + x-ms-request-id: [54ed3150-0001-0069-3d01-fd0b78000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_bytes_chunked_upload_with_index_and_count.yaml b/tests/recordings/test_append_blob.test_append_blob_from_bytes_chunked_upload_with_index_and_count.yaml index 9f44f6d5..0190f330 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_bytes_chunked_upload_with_index_and_count.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_bytes_chunked_upload_with_index_and_count.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [c201f5d2-67fa-11e7-9980-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:35 GMT'] + x-ms-client-request-id: [aafdb2b8-68f4-11e7-8e95-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:34 GMT'] - ETag: ['"0x8D4CA1EA61BA3CE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:31 GMT'] + ETag: ['"0x8D4CB188FC80095"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f8b5b9d2-0001-0120-7007-fc7e4d000000] + x-ms-request-id: [89d306ef-0001-003e-7901-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -100,9 +100,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c22ef848-67fa-11e7-a7e5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ab262bb4-68f4-11e7-953e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -110,14 +110,14 @@ interactions: body: {string: ''} headers: Content-MD5: [BteMiWh1Ek0UryavxTB3Kg==] - Date: ['Thu, 13 Jul 2017 18:40:34 GMT'] - ETag: ['"0x8D4CA1EA6376E32"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:31 GMT'] + ETag: ['"0x8D4CB188FE355D6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [f8b5ba15-0001-0120-2e07-fc7e4d000000] + x-ms-request-id: [89d3070e-0001-003e-1301-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -198,10 +198,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['4096'] - x-ms-client-request-id: [c234d4e8-67fa-11e7-9e68-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:35 GMT'] + x-ms-client-request-id: [ab2f5f7a-68f4-11e7-be99-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -209,14 +209,14 @@ interactions: body: {string: ''} headers: Content-MD5: [xSyhHmI+bd3Xa5CkEkS9ng==] - Date: ['Thu, 13 Jul 2017 18:40:34 GMT'] - ETag: ['"0x8D4CA1EA63E7456"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:31 GMT'] + ETag: ['"0x8D4CB188FEC311A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['4096'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [f8b5ba20-0001-0120-3707-fc7e4d000000] + x-ms-request-id: [89d30726-0001-003e-2601-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -297,10 +297,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['8192'] - x-ms-client-request-id: [c23bfee4-67fa-11e7-a98f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:35 GMT'] + x-ms-client-request-id: [ab364706-68f4-11e7-99c2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -308,14 +308,14 @@ interactions: body: {string: ''} headers: Content-MD5: [D005jvDXxJ7yXJuq7qDbkw==] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA64441C2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:31 GMT'] + ETag: ['"0x8D4CB188FF1D776"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['8192'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [f8b5ba29-0001-0120-3e07-fc7e4d000000] + x-ms-request-id: [89d3072d-0001-003e-2d01-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -396,10 +396,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['12288'] - x-ms-client-request-id: [c241a48c-67fa-11e7-98d9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:35 GMT'] + x-ms-client-request-id: [ab3c2c14-68f4-11e7-8ada-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -407,14 +407,14 @@ interactions: body: {string: ''} headers: Content-MD5: [UszsGVIJBQOeHNipKGSV/g==] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA649C100"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:31 GMT'] + ETag: ['"0x8D4CB188FF77DD2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['12288'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [f8b5ba2f-0001-0120-4407-fc7e4d000000] + x-ms-request-id: [89d30733-0001-003e-3201-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -495,10 +495,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['16384'] - x-ms-client-request-id: [c2470462-67fa-11e7-adbb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:35 GMT'] + x-ms-client-request-id: [ab4176f6-68f4-11e7-a5b2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -506,14 +506,14 @@ interactions: body: {string: ''} headers: Content-MD5: [eFVbP8mj3303hOrt6UsYTg==] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA64F6750"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:31 GMT'] + ETag: ['"0x8D4CB188FFCFD1A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['16384'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [f8b5ba3a-0001-0120-4e07-fc7e4d000000] + x-ms-request-id: [89d3073c-0001-003e-3b01-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -594,10 +594,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['20480'] - x-ms-client-request-id: [c24cb734-67fa-11e7-94d3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:35 GMT'] + x-ms-client-request-id: [ab46f362-68f4-11e7-a336-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -605,14 +605,14 @@ interactions: body: {string: ''} headers: Content-MD5: [iDqip5mn7VuRub80czq59A==] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA6550DA5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:31 GMT'] + ETag: ['"0x8D4CB189002F1A5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['20480'] x-ms-blob-committed-block-count: ['6'] - x-ms-request-id: [f8b5ba44-0001-0120-5707-fc7e4d000000] + x-ms-request-id: [89d30740-0001-003e-3f01-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -693,10 +693,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['24576'] - x-ms-client-request-id: [c252a786-67fa-11e7-bc9f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:35 GMT'] + x-ms-client-request-id: [ab4ce7e8-68f4-11e7-94a6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -704,14 +704,14 @@ interactions: body: {string: ''} headers: Content-MD5: [L7ImbdiVoTeGPlw8dlHGnA==] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA65B0228"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:32 GMT'] + ETag: ['"0x8D4CB189009345E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['24576'] x-ms-blob-committed-block-count: ['7'] - x-ms-request-id: [f8b5ba4c-0001-0120-5f07-fc7e4d000000] + x-ms-request-id: [89d3074d-0001-003e-4901-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -792,10 +792,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['28672'] - x-ms-client-request-id: [c2589f68-67fa-11e7-a9bc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:35 GMT'] + x-ms-client-request-id: [ab532950-68f4-11e7-8833-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -803,14 +803,14 @@ interactions: body: {string: ''} headers: Content-MD5: [t/7v6vKh+oimh1JOxr/OMQ==] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA660CF93"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:32 GMT'] + ETag: ['"0x8D4CB18900EB3B3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28672'] x-ms-blob-committed-block-count: ['8'] - x-ms-request-id: [f8b5ba5d-0001-0120-6d07-fc7e4d000000] + x-ms-request-id: [89d30757-0001-003e-5201-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -891,10 +891,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['32768'] - x-ms-client-request-id: [c262b0f4-67fa-11e7-a2eb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:35 GMT'] + x-ms-client-request-id: [ab58d170-68f4-11e7-9710-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -902,14 +902,14 @@ interactions: body: {string: ''} headers: Content-MD5: [7zzpP4iJ6uTkHqbcWpj4kg==] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA66AE385"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:32 GMT'] + ETag: ['"0x8D4CB1890148111"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['32768'] x-ms-blob-committed-block-count: ['9'] - x-ms-request-id: [f8b5ba72-0001-0120-8007-fc7e4d000000] + x-ms-request-id: [89d30762-0001-003e-5c01-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -990,10 +990,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['36864'] - x-ms-client-request-id: [c268afde-67fa-11e7-8745-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:35 GMT'] + x-ms-client-request-id: [ab5ead02-68f4-11e7-8023-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -1001,14 +1001,14 @@ interactions: body: {string: ''} headers: Content-MD5: [pkJYRVTO8o+/Llu+Sn5geQ==] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA6798C2D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:32 GMT'] + ETag: ['"0x8D4CB18901A4E84"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['36864'] x-ms-blob-committed-block-count: ['10'] - x-ms-request-id: [f8b5ba96-0001-0120-1b07-fc7e4d000000] + x-ms-request-id: [89d30774-0001-003e-6801-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1089,10 +1089,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['40960'] - x-ms-client-request-id: [c2774de6-67fa-11e7-9315-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:36 GMT'] + x-ms-client-request-id: [ab64891e-68f4-11e7-95a4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -1100,14 +1100,14 @@ interactions: body: {string: ''} headers: Content-MD5: [Q7dtYp6gOL6OmZ0H0GlhXw==] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA67FA7C7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:32 GMT'] + ETag: ['"0x8D4CB18901FF4E4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['40960'] x-ms-blob-committed-block-count: ['11'] - x-ms-request-id: [f8b5baaa-0001-0120-2c07-fc7e4d000000] + x-ms-request-id: [89d30784-0001-003e-7501-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1188,10 +1188,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['45056'] - x-ms-client-request-id: [c27cec58-67fa-11e7-9a58-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:36 GMT'] + x-ms-client-request-id: [ab69cc00-68f4-11e7-8adb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -1199,14 +1199,14 @@ interactions: body: {string: ''} headers: Content-MD5: [2VTuXyXFrVuBEVyZY1uGZA==] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA685275B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:32 GMT'] + ETag: ['"0x8D4CB18902525F6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['45056'] x-ms-blob-committed-block-count: ['12'] - x-ms-request-id: [f8b5babb-0001-0120-3b07-fc7e4d000000] + x-ms-request-id: [89d30792-0001-003e-0301-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1287,10 +1287,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['49152'] - x-ms-client-request-id: [c284ec6c-67fa-11e7-be11-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:36 GMT'] + x-ms-client-request-id: [ab6f783a-68f4-11e7-ae54-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -1298,14 +1298,14 @@ interactions: body: {string: ''} headers: Content-MD5: [UEJMSrY2OQj9xT1fo+8c2Q==] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA68D3ECB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:32 GMT'] + ETag: ['"0x8D4CB18902AF369"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['49152'] x-ms-blob-committed-block-count: ['13'] - x-ms-request-id: [f8b5bacd-0001-0120-4a07-fc7e4d000000] + x-ms-request-id: [89d3079c-0001-003e-0b01-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1386,10 +1386,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['53248'] - x-ms-client-request-id: [c28aa422-67fa-11e7-961b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:36 GMT'] + x-ms-client-request-id: [ab754198-68f4-11e7-82f3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -1397,14 +1397,14 @@ interactions: body: {string: ''} headers: Content-MD5: [Ud71ykj36WW02XJakn+QbQ==] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA692BE08"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:32 GMT'] + ETag: ['"0x8D4CB1890310F0B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['53248'] x-ms-blob-committed-block-count: ['14'] - x-ms-request-id: [f8b5bae1-0001-0120-5c07-fc7e4d000000] + x-ms-request-id: [89d307a3-0001-003e-1001-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1485,10 +1485,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['57344'] - x-ms-client-request-id: [c28ff986-67fa-11e7-9944-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:36 GMT'] + x-ms-client-request-id: [ab7b24b4-68f4-11e7-987d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -1496,14 +1496,14 @@ interactions: body: {string: ''} headers: Content-MD5: [u5Wze1ORC4fePuwPOL9u2Q==] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA698162F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:32 GMT'] + ETag: ['"0x8D4CB189036DC7E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['57344'] x-ms-blob-committed-block-count: ['15'] - x-ms-request-id: [f8b5baee-0001-0120-6807-fc7e4d000000] + x-ms-request-id: [89d307ac-0001-003e-1901-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1583,10 +1583,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4030'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['61440'] - x-ms-client-request-id: [c295a958-67fa-11e7-9b4f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:36 GMT'] + x-ms-client-request-id: [ab816bee-68f4-11e7-8729-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer29ae20c3/blob29ae20c3?comp=appendblock @@ -1594,14 +1594,14 @@ interactions: body: {string: ''} headers: Content-MD5: [Yi0rmEVYpQuG2+ljiyQd9A==] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA69DE397"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:32 GMT'] + ETag: ['"0x8D4CB18903D1F33"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['61440'] x-ms-blob-committed-block-count: ['16'] - x-ms-request-id: [f8b5bb04-0001-0120-7a07-fc7e4d000000] + x-ms-request-id: [89d307b4-0001-003e-2001-fde2f5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1609,9 +1609,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c29b5006-67fa-11e7-9937-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ab8a1dac-68f4-11e7-897b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:31 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -2773,16 +2773,16 @@ interactions: Content-Length: ['65470'] Content-Range: [bytes 0-65469/65470] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:35 GMT'] - ETag: ['"0x8D4CA1EA69DE397"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:32 GMT'] + ETag: ['"0x8D4CB18903D1F33"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['16'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f8b5bb2d-0001-0120-1c07-fc7e4d000000] + x-ms-request-id: [89d307bf-0001-003e-2a01-fde2f5000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_index.yaml b/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_index.yaml index 8200afde..a38e6289 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_index.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_index.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [c30d6bfa-67fa-11e7-9449-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:37 GMT'] + x-ms-client-request-id: [ac40adc6-68f4-11e7-87de-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer73451684/blob73451684 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:37 GMT'] - ETag: ['"0x8D4CA1EA7263EFB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:32 GMT'] + ETag: ['"0x8D4CB18910B6ADC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b791079b-0001-00ca-5c07-fcc719000000] + x-ms-request-id: [f653318e-0001-0027-7701-fdce9d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['23'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c3238b06-67fa-11e7-aee5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ac55d028-68f4-11e7-b314-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:33 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer73451684/blob73451684?comp=appendblock @@ -38,14 +38,14 @@ interactions: body: {string: ''} headers: Content-MD5: [B/3psgzlibEznuDABJiKeQ==] - Date: ['Thu, 13 Jul 2017 18:40:37 GMT'] - ETag: ['"0x8D4CA1EA72BBE3E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:33 GMT'] + ETag: ['"0x8D4CB1891118694"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [b79107b5-0001-00ca-7207-fcc719000000] + x-ms-request-id: [f65331a6-0001-0027-0d01-fdce9d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -53,9 +53,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c328f0f0-67fa-11e7-9274-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ac609ea4-68f4-11e7-86ea-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:33 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -67,16 +67,16 @@ interactions: Content-Length: ['23'] Content-Range: [bytes 0-22/23] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:37 GMT'] - ETag: ['"0x8D4CA1EA72BBE3E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:33 GMT'] + ETag: ['"0x8D4CB1891118694"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['1'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [b79107c6-0001-00ca-0107-fcc719000000] + x-ms-request-id: [f65331bb-0001-0027-2001-fdce9d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_index_and_count.yaml b/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_index_and_count.yaml index 72d9cdb2..2fa55246 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_index_and_count.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_index_and_count.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [c357f39e-67fa-11e7-b3e2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:37 GMT'] + x-ms-client-request-id: [ac986a3a-68f4-11e7-ab06-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:33 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6a5b1a9e/blob6a5b1a9e response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:36 GMT'] - ETag: ['"0x8D4CA1EA7709BD3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:34 GMT'] + ETag: ['"0x8D4CB1891629BB2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:34 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e644ad36-0001-008e-0507-fc1b75000000] + x-ms-request-id: [ab21de81-0001-010b-4a01-fd0af5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['5'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c36e14d2-67fa-11e7-8f65-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [acace99e-68f4-11e7-83a8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:33 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6a5b1a9e/blob6a5b1a9e?comp=appendblock @@ -38,14 +38,14 @@ interactions: body: {string: ''} headers: Content-MD5: [hl9cx/vXhUkC6unYIR8Xig==] - Date: ['Thu, 13 Jul 2017 18:40:36 GMT'] - ETag: ['"0x8D4CA1EA77753CA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:34 GMT'] + ETag: ['"0x8D4CB189168DE6C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:34 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [e644ad4d-0001-008e-1807-fc1b75000000] + x-ms-request-id: [ab21de97-0001-010b-5b01-fd0af5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -53,9 +53,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c37697ba-67fa-11e7-9b30-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [acb3570c-68f4-11e7-b6db-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:33 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -67,16 +67,16 @@ interactions: Content-Length: ['5'] Content-Range: [bytes 0-4/5] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:36 GMT'] - ETag: ['"0x8D4CA1EA77753CA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:34 GMT'] + ETag: ['"0x8D4CB189168DE6C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:34 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['1'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e644ad61-0001-008e-2407-fc1b75000000] + x-ms-request-id: [ab21dea8-0001-010b-6a01-fd0af5000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_progress.yaml b/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_progress.yaml index b31bfc5f..7083ba0b 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_progress.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_progress.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [c3a66d46-67fa-11e7-a3d8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:38 GMT'] + x-ms-client-request-id: [acedbeec-68f4-11e7-957d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb9e117e1/blobb9e117e1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:37 GMT'] - ETag: ['"0x8D4CA1EA7BD9138"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:34 GMT'] + ETag: ['"0x8D4CB1891B9302B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fe10031e-0001-0106-6207-fce5f9000000] + x-ms-request-id: [f235d249-0001-0130-4a01-fd48ab000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['26'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c3bafd92-67fa-11e7-b80d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ad033eb6-68f4-11e7-b2f0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb9e117e1/blobb9e117e1?comp=appendblock @@ -38,14 +38,14 @@ interactions: body: {string: ''} headers: Content-MD5: [w/zT12GS5AB9+0lsymfhOw==] - Date: ['Thu, 13 Jul 2017 18:40:37 GMT'] - ETag: ['"0x8D4CA1EA7C3FAFC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:34 GMT'] + ETag: ['"0x8D4CB1891BEFD9F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [fe10033a-0001-0106-7b07-fce5f9000000] + x-ms-request-id: [f235d265-0001-0130-6301-fd48ab000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -53,9 +53,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c3c1cb22-67fa-11e7-8789-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ad097588-68f4-11e7-8a34-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:34 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -67,16 +67,16 @@ interactions: Content-Length: ['26'] Content-Range: [bytes 0-25/26] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:37 GMT'] - ETag: ['"0x8D4CA1EA7C3FAFC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:34 GMT'] + ETag: ['"0x8D4CB1891BEFD9F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['1'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [fe100354-0001-0106-1307-fce5f9000000] + x-ms-request-id: [f235d282-0001-0130-7e01-fd48ab000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_progress_chunked_upload.yaml b/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_progress_chunked_upload.yaml index f8e30f6d..983b1d21 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_progress_chunked_upload.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_progress_chunked_upload.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [c400406e-67fa-11e7-bad0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:38 GMT'] + x-ms-client-request-id: [ad3e67c0-68f4-11e7-abf7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:38 GMT'] - ETag: ['"0x8D4CA1EA816E4F4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:34 GMT'] + ETag: ['"0x8D4CB18920933C1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8a023106-0001-0066-2c07-fce68e000000] + x-ms-request-id: [aa7db46c-0001-00fa-2701-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -100,9 +100,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c427b95a-67fa-11e7-8b73-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ad68810c-68f4-11e7-aef1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -110,14 +110,14 @@ interactions: body: {string: ''} headers: Content-MD5: [rHUhEgot5eGNYgM21e8h2g==] - Date: ['Thu, 13 Jul 2017 18:40:38 GMT'] - ETag: ['"0x8D4CA1EA8303E05"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB1892243AD4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [8a02313d-0001-0066-5a07-fce68e000000] + x-ms-request-id: [aa7db4d4-0001-00fa-7d01-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -198,10 +198,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['4096'] - x-ms-client-request-id: [c42d66de-67fa-11e7-9784-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:38 GMT'] + x-ms-client-request-id: [ad6f3a9e-68f4-11e7-94da-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -209,14 +209,14 @@ interactions: body: {string: ''} headers: Content-MD5: [my+Th9WFXH/ajv3TAyceNA==] - Date: ['Thu, 13 Jul 2017 18:40:38 GMT'] - ETag: ['"0x8D4CA1EA83A78E2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB18922ACBB7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['4096'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [8a023153-0001-0066-6f07-fce68e000000] + x-ms-request-id: [aa7db4ee-0001-00fa-1301-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -297,10 +297,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['8192'] - x-ms-client-request-id: [c437ea98-67fa-11e7-b1a0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:38 GMT'] + x-ms-client-request-id: [ad749f52-68f4-11e7-ae87-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -308,14 +308,14 @@ interactions: body: {string: ''} headers: Content-MD5: [cRC9P58LIVQsFoyL5wiBvw==] - Date: ['Thu, 13 Jul 2017 18:40:38 GMT'] - ETag: ['"0x8D4CA1EA83FD104"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB18923023E9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['8192'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [8a02315f-0001-0066-7807-fce68e000000] + x-ms-request-id: [aa7db504-0001-00fa-2601-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -396,10 +396,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['12288'] - x-ms-client-request-id: [c43cfee6-67fa-11e7-b9d3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:38 GMT'] + x-ms-client-request-id: [ad7a58f4-68f4-11e7-873a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -407,14 +407,14 @@ interactions: body: {string: ''} headers: Content-MD5: [SP3ZDs4OKhLQDScIS8apmw==] - Date: ['Thu, 13 Jul 2017 18:40:38 GMT'] - ETag: ['"0x8D4CA1EA844DB06"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB189235CA44"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['12288'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [8a023166-0001-0066-7f07-fce68e000000] + x-ms-request-id: [aa7db520-0001-00fa-3f01-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -495,10 +495,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['16384'] - x-ms-client-request-id: [c4420e74-67fa-11e7-b8cb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:39 GMT'] + x-ms-client-request-id: [ad7feb3a-68f4-11e7-9a15-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -506,14 +506,14 @@ interactions: body: {string: ''} headers: Content-MD5: [3fkMVGv66JYvFiFLe4qBpw==] - Date: ['Thu, 13 Jul 2017 18:40:38 GMT'] - ETag: ['"0x8D4CA1EA84A0C08"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB18923B4985"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['16384'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [8a023176-0001-0066-0f07-fce68e000000] + x-ms-request-id: [aa7db536-0001-00fa-5301-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -594,10 +594,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['20480'] - x-ms-client-request-id: [c447795c-67fa-11e7-9a72-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:39 GMT'] + x-ms-client-request-id: [ad86ad78-68f4-11e7-a33f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -605,14 +605,14 @@ interactions: body: {string: ''} headers: Content-MD5: [n+H6J6bizuO2zynO0f4CrQ==] - Date: ['Thu, 13 Jul 2017 18:40:38 GMT'] - ETag: ['"0x8D4CA1EA84FB259"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB189242289F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['20480'] x-ms-blob-committed-block-count: ['6'] - x-ms-request-id: [8a023191-0001-0066-2307-fce68e000000] + x-ms-request-id: [aa7db548-0001-00fa-6501-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -693,10 +693,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['24576'] - x-ms-client-request-id: [c44fc9d8-67fa-11e7-8dab-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:39 GMT'] + x-ms-client-request-id: [ad8c1d6c-68f4-11e7-8b6e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -704,14 +704,14 @@ interactions: body: {string: ''} headers: Content-MD5: [exofhAUqrL6LN1P6Gldteg==] - Date: ['Thu, 13 Jul 2017 18:40:38 GMT'] - ETag: ['"0x8D4CA1EA8581851"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB18924780C8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['24576'] x-ms-blob-committed-block-count: ['7'] - x-ms-request-id: [8a0231a9-0001-0066-3707-fce68e000000] + x-ms-request-id: [aa7db559-0001-00fa-7301-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -792,10 +792,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['28672'] - x-ms-client-request-id: [c455764c-67fa-11e7-abf7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:39 GMT'] + x-ms-client-request-id: [ad9177c6-68f4-11e7-a8dc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -803,14 +803,14 @@ interactions: body: {string: ''} headers: Content-MD5: [tx9GYeCCT1r7j4oxB9nEMg==] - Date: ['Thu, 13 Jul 2017 18:40:38 GMT'] - ETag: ['"0x8D4CA1EA85DBEA5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB18924D7552"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28672'] x-ms-blob-committed-block-count: ['8'] - x-ms-request-id: [8a0231b8-0001-0066-4407-fce68e000000] + x-ms-request-id: [aa7db56a-0001-00fa-8001-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -891,10 +891,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['32768'] - x-ms-client-request-id: [c45b139a-67fa-11e7-9cdb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:39 GMT'] + x-ms-client-request-id: [ad976b7a-68f4-11e7-898d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -902,14 +902,14 @@ interactions: body: {string: ''} headers: Content-MD5: [UqCBz/TqsxIJNktvi+91bw==] - Date: ['Thu, 13 Jul 2017 18:40:38 GMT'] - ETag: ['"0x8D4CA1EA86364FE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB189252CD84"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['32768'] x-ms-blob-committed-block-count: ['9'] - x-ms-request-id: [8a0231c4-0001-0066-4f07-fce68e000000] + x-ms-request-id: [aa7db57a-0001-00fa-1001-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -990,10 +990,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['36864'] - x-ms-client-request-id: [c4615c34-67fa-11e7-89b5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:39 GMT'] + x-ms-client-request-id: [ad9cc752-68f4-11e7-8ea4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -1001,14 +1001,14 @@ interactions: body: {string: ''} headers: Content-MD5: [0UUNSjtze8MFJpj/x/NFMA==] - Date: ['Thu, 13 Jul 2017 18:40:38 GMT'] - ETag: ['"0x8D4CA1EA869CEC7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB1892584CC5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['36864'] x-ms-blob-committed-block-count: ['10'] - x-ms-request-id: [8a0231d8-0001-0066-6107-fce68e000000] + x-ms-request-id: [aa7db592-0001-00fa-2801-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1089,10 +1089,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['40960'] - x-ms-client-request-id: [c466f408-67fa-11e7-bf1b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:39 GMT'] + x-ms-client-request-id: [ada21ce8-68f4-11e7-a6b1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -1100,14 +1100,14 @@ interactions: body: {string: ''} headers: Content-MD5: [g4qasN4kB5WhiwF+tpFopw==] - Date: ['Thu, 13 Jul 2017 18:40:38 GMT'] - ETag: ['"0x8D4CA1EA86EFFD2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB18925DA4F2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['40960'] x-ms-blob-committed-block-count: ['11'] - x-ms-request-id: [8a0231ec-0001-0066-7207-fce68e000000] + x-ms-request-id: [aa7db5a4-0001-00fa-3801-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1188,10 +1188,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['45056'] - x-ms-client-request-id: [c46c451e-67fa-11e7-b065-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:39 GMT'] + x-ms-client-request-id: [ada99a18-68f4-11e7-a26a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -1199,14 +1199,14 @@ interactions: body: {string: ''} headers: Content-MD5: [llQIPV0IJs1CQgzY+n2Mcg==] - Date: ['Thu, 13 Jul 2017 18:40:39 GMT'] - ETag: ['"0x8D4CA1EA874F46E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB1892652069"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['45056'] x-ms-blob-committed-block-count: ['12'] - x-ms-request-id: [8a0231fe-0001-0066-0307-fce68e000000] + x-ms-request-id: [aa7db5b9-0001-00fa-4801-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1287,10 +1287,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['49152'] - x-ms-client-request-id: [c4724da8-67fa-11e7-b546-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:39 GMT'] + x-ms-client-request-id: [adaef346-68f4-11e7-8a90-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -1298,14 +1298,14 @@ interactions: body: {string: ''} headers: Content-MD5: [k7Na075ZYupCGwMRwhSgDw==] - Date: ['Thu, 13 Jul 2017 18:40:39 GMT'] - ETag: ['"0x8D4CA1EA87A2564"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB18926A517F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['49152'] x-ms-blob-committed-block-count: ['13'] - x-ms-request-id: [8a02320a-0001-0066-0c07-fce68e000000] + x-ms-request-id: [aa7db5ca-0001-00fa-5901-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1386,10 +1386,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['53248'] - x-ms-client-request-id: [c477581e-67fa-11e7-bae5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:39 GMT'] + x-ms-client-request-id: [adb44dd2-68f4-11e7-8861-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -1397,14 +1397,14 @@ interactions: body: {string: ''} headers: Content-MD5: [JTrt09zgabR6J9an0ATZiw==] - Date: ['Thu, 13 Jul 2017 18:40:39 GMT'] - ETag: ['"0x8D4CA1EA87F5678"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB18926FF7D7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['53248'] x-ms-blob-committed-block-count: ['14'] - x-ms-request-id: [8a023211-0001-0066-1307-fce68e000000] + x-ms-request-id: [aa7db5d4-0001-00fa-6301-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1485,10 +1485,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['57344'] - x-ms-client-request-id: [c47c9d58-67fa-11e7-976a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:39 GMT'] + x-ms-client-request-id: [adbbc3a8-68f4-11e7-896b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -1496,14 +1496,14 @@ interactions: body: {string: ''} headers: Content-MD5: [JDdBAqzi8oMMFMwpNYoQXA==] - Date: ['Thu, 13 Jul 2017 18:40:39 GMT'] - ETag: ['"0x8D4CA1EA884AEBD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB1892774C37"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['57344'] x-ms-blob-committed-block-count: ['15'] - x-ms-request-id: [8a023219-0001-0066-1b07-fce68e000000] + x-ms-request-id: [aa7db5de-0001-00fa-6d01-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1584,10 +1584,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['61440'] - x-ms-client-request-id: [c481ade8-67fa-11e7-b0d8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:39 GMT'] + x-ms-client-request-id: [adc17336-68f4-11e7-8638-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer512c1e06/blob512c1e06?comp=appendblock @@ -1595,14 +1595,14 @@ interactions: body: {string: ''} headers: Content-MD5: [1+OW49NIrHzML6z1xDCGdw==] - Date: ['Thu, 13 Jul 2017 18:40:39 GMT'] - ETag: ['"0x8D4CA1EA88BB4C3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB18927CF28E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['61440'] x-ms-blob-committed-block-count: ['16'] - x-ms-request-id: [8a023223-0001-0066-2407-fce68e000000] + x-ms-request-id: [aa7db5e6-0001-00fa-7501-fd9d33000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1610,9 +1610,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c4890158-67fa-11e7-a002-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [adc70e5e-68f4-11e7-a46f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:35 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -2775,16 +2775,16 @@ interactions: Content-Length: ['65536'] Content-Range: [bytes 0-65535/65536] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:39 GMT'] - ETag: ['"0x8D4CA1EA88BB4C3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:35 GMT'] + ETag: ['"0x8D4CB18927CF28E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['16'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [8a023235-0001-0066-3407-fce68e000000] + x-ms-request-id: [aa7db5f7-0001-00fa-0401-fd9d33000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_path_chunked_upload.yaml b/tests/recordings/test_append_blob.test_append_blob_from_path_chunked_upload.yaml index 97704f01..b1f7baa5 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_path_chunked_upload.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_path_chunked_upload.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [c4f6d9ec-67fa-11e7-a52a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + x-ms-client-request-id: [ae48a734-68f4-11e7-bdc0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:39 GMT'] - ETag: ['"0x8D4CA1EA90DF48E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB1893129785"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [989c22b7-0001-001d-4507-fc8d3e000000] + x-ms-request-id: [85807c42-0001-0092-6b01-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -100,9 +100,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c5205428-67fa-11e7-a9ab-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ae73f93e-68f4-11e7-9ba5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -110,14 +110,14 @@ interactions: body: {string: ''} headers: Content-MD5: [Cwi9teBmzzFMm7HQkAMlAw==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA928D474"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB18932FE8F4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [989c22f9-0001-001d-7e07-fc8d3e000000] + x-ms-request-id: [85807c76-0001-0092-1b01-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -198,10 +198,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['4096'] - x-ms-client-request-id: [c528d5c8-67fa-11e7-b62c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + x-ms-client-request-id: [ae79f50a-68f4-11e7-bcdd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -209,14 +209,14 @@ interactions: body: {string: ''} headers: Content-MD5: [80VKG9Wnom4JJTThtoj6Wg==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA932734F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB189335DD7E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['4096'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [989c2316-0001-001d-1607-fc8d3e000000] + x-ms-request-id: [85807c7e-0001-0092-2201-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -297,10 +297,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['8192'] - x-ms-client-request-id: [c52ffc36-67fa-11e7-8e23-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + x-ms-client-request-id: [ae7ff392-68f4-11e7-a475-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -308,14 +308,14 @@ interactions: body: {string: ''} headers: Content-MD5: [koe/65uNAKhUlr3ZwUr9ow==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA93903F2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB18933BF920"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['8192'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [989c231f-0001-001d-1f07-fc8d3e000000] + x-ms-request-id: [85807c88-0001-0092-2c01-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -396,10 +396,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['12288'] - x-ms-client-request-id: [c5369802-67fa-11e7-b088-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + x-ms-client-request-id: [ae863574-68f4-11e7-8571-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -407,14 +407,14 @@ interactions: body: {string: ''} headers: Content-MD5: [hNXbaFKfk0vWATuqjIIwcw==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA93ED15A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB18934214BD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['12288'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [989c232b-0001-001d-2a07-fc8d3e000000] + x-ms-request-id: [85807c90-0001-0092-3301-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -495,10 +495,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['16384'] - x-ms-client-request-id: [c53c227a-67fa-11e7-8c91-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + x-ms-client-request-id: [ae8c270c-68f4-11e7-a573-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -506,14 +506,14 @@ interactions: body: {string: ''} headers: Content-MD5: [pcR0qwu4pNbBl4g/2wC/eg==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA94477B7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB189347E239"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['16384'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [989c2334-0001-001d-3307-fc8d3e000000] + x-ms-request-id: [85807c98-0001-0092-3b01-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -594,10 +594,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['20480'] - x-ms-client-request-id: [c541df1e-67fa-11e7-a6ec-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + x-ms-client-request-id: [ae9221e8-68f4-11e7-823f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -605,14 +605,14 @@ interactions: body: {string: ''} headers: Content-MD5: [QJ+nzp1e3TDJeFyeNoCYzA==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA94A451F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB18934DAFAC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['20480'] x-ms-blob-committed-block-count: ['6'] - x-ms-request-id: [989c2345-0001-001d-4207-fc8d3e000000] + x-ms-request-id: [85807ca4-0001-0092-4501-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -693,10 +693,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['24576'] - x-ms-client-request-id: [c547ab38-67fa-11e7-9dbe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + x-ms-client-request-id: [ae97c652-68f4-11e7-8ed9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -704,14 +704,14 @@ interactions: body: {string: ''} headers: Content-MD5: [YwJbCABEFrOmCugy4vOIIg==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA95039A6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB1893537D1F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['24576'] x-ms-blob-committed-block-count: ['7'] - x-ms-request-id: [989c234c-0001-001d-4907-fc8d3e000000] + x-ms-request-id: [85807cb0-0001-0092-5101-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -792,10 +792,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['28672'] - x-ms-client-request-id: [c54daac6-67fa-11e7-a442-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + x-ms-client-request-id: [ae9e905e-68f4-11e7-830a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -803,14 +803,14 @@ interactions: body: {string: ''} headers: Content-MD5: [1ZItx+QXjF0LlPXRejHmBw==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA955DFFB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB18935B46B8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28672'] x-ms-blob-committed-block-count: ['8'] - x-ms-request-id: [989c235f-0001-001d-5c07-fc8d3e000000] + x-ms-request-id: [85807cbe-0001-0092-5d01-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -891,10 +891,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['32768'] - x-ms-client-request-id: [c552f934-67fa-11e7-be69-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + x-ms-client-request-id: [aea5c0f4-68f4-11e7-925d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -902,14 +902,14 @@ interactions: body: {string: ''} headers: Content-MD5: [NB4GlngO9wBJFRcJdd0HPg==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA95AEA0D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB1893618982"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['32768'] x-ms-blob-committed-block-count: ['9'] - x-ms-request-id: [989c2371-0001-001d-6a07-fc8d3e000000] + x-ms-request-id: [85807cc3-0001-0092-6101-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -990,10 +990,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['36864'] - x-ms-client-request-id: [c5586d24-67fa-11e7-b6a9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + x-ms-client-request-id: [aeabb7fa-68f4-11e7-b2c6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -1001,14 +1001,14 @@ interactions: body: {string: ''} headers: Content-MD5: [aO00yjNuCy9U3nFbQwYTZQ==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA961C8FC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB189367A516"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['36864'] x-ms-blob-committed-block-count: ['10'] - x-ms-request-id: [989c237e-0001-001d-7407-fc8d3e000000] + x-ms-request-id: [85807cc9-0001-0092-6701-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1089,10 +1089,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['40960'] - x-ms-client-request-id: [c55eeec6-67fa-11e7-8380-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + x-ms-client-request-id: [aeb1e500-68f4-11e7-a793-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -1100,14 +1100,14 @@ interactions: body: {string: ''} headers: Content-MD5: [eA/N9sJI6N4nlVrwos0rLg==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA966FA0C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB18936DC0BC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['40960'] x-ms-blob-committed-block-count: ['11'] - x-ms-request-id: [989c2394-0001-001d-0707-fc8d3e000000] + x-ms-request-id: [85807cd5-0001-0092-7101-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1188,10 +1188,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['45056'] - x-ms-client-request-id: [c5644f68-67fa-11e7-bb7a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + x-ms-client-request-id: [aeb82a3a-68f4-11e7-9263-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -1199,14 +1199,14 @@ interactions: body: {string: ''} headers: Content-MD5: [YXgiQLXYbibtAabCzutQTg==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA96CA060"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB189373B542"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['45056'] x-ms-blob-committed-block-count: ['12'] - x-ms-request-id: [989c23a0-0001-001d-1307-fc8d3e000000] + x-ms-request-id: [85807ce0-0001-0092-7c01-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1287,10 +1287,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['49152'] - x-ms-client-request-id: [c5699f0c-67fa-11e7-bbd2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + x-ms-client-request-id: [aebe060a-68f4-11e7-a9bc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -1298,14 +1298,14 @@ interactions: body: {string: ''} headers: Content-MD5: [HkRk5LOHyAfVMqhEhn4vfQ==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA9718342"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB189379A9CD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['49152'] x-ms-blob-committed-block-count: ['13'] - x-ms-request-id: [989c23bb-0001-001d-2b07-fc8d3e000000] + x-ms-request-id: [85807ce7-0001-0092-0301-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1386,10 +1386,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['53248'] - x-ms-client-request-id: [c56ef6ca-67fa-11e7-bac6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:40 GMT'] + x-ms-client-request-id: [aec4b074-68f4-11e7-a1e1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -1397,14 +1397,14 @@ interactions: body: {string: ''} headers: Content-MD5: [BoCNoLbgs/UaNN89i2Fe7Q==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA977027B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:36 GMT'] + ETag: ['"0x8D4CB1893803ABD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['53248'] x-ms-blob-committed-block-count: ['14'] - x-ms-request-id: [989c23ca-0001-001d-3907-fc8d3e000000] + x-ms-request-id: [85807cee-0001-0092-0a01-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1485,10 +1485,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['57344'] - x-ms-client-request-id: [c574145c-67fa-11e7-9719-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:41 GMT'] + x-ms-client-request-id: [aeca608a-68f4-11e7-b466-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -1496,14 +1496,14 @@ interactions: body: {string: ''} headers: Content-MD5: [ZOrwo3VnfnpFN7NrPC45Iw==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA97C338B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:37 GMT'] + ETag: ['"0x8D4CB1893862F43"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['57344'] x-ms-blob-committed-block-count: ['15'] - x-ms-request-id: [989c23d9-0001-001d-4507-fc8d3e000000] + x-ms-request-id: [85807cf4-0001-0092-1001-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1584,10 +1584,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['61440'] - x-ms-client-request-id: [c57be59c-67fa-11e7-bab4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:41 GMT'] + x-ms-client-request-id: [aed06cc8-68f4-11e7-9297-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d?comp=appendblock @@ -1595,14 +1595,14 @@ interactions: body: {string: ''} headers: Content-MD5: [G30nYxqQO/CcXKJeQfQ9lQ==] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA983FD27"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:37 GMT'] + ETag: ['"0x8D4CB18938C4AE4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['61440'] x-ms-blob-committed-block-count: ['16'] - x-ms-request-id: [989c23f0-0001-001d-5b07-fc8d3e000000] + x-ms-request-id: [85807d06-0001-0092-1c01-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1610,9 +1610,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c5817200-67fa-11e7-87a5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:41 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aed6afca-68f4-11e7-a5dd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:37 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerb795179d/blobb795179d @@ -1622,16 +1622,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['65536'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA983FD27"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:37 GMT'] + ETag: ['"0x8D4CB18938C4AE4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['16'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [989c240b-0001-001d-7207-fc8d3e000000] + x-ms-request-id: [85807d11-0001-0092-2301-fdc362000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -1639,9 +1639,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c5880946-67fa-11e7-a621-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:41 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aedce46c-68f4-11e7-8511-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:37 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -2804,16 +2804,16 @@ interactions: Content-Length: ['65536'] Content-Range: [bytes 0-65535/65536] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:40 GMT'] - ETag: ['"0x8D4CA1EA983FD27"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:37 GMT'] + ETag: ['"0x8D4CB18938C4AE4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['16'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [989c241c-0001-001d-8007-fc8d3e000000] + x-ms-request-id: [85807d19-0001-0092-2b01-fdc362000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_path_with_progress_chunked_upload.yaml b/tests/recordings/test_append_blob.test_append_blob_from_path_with_progress_chunked_upload.yaml index ba3af37e..31f96c22 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_path_with_progress_chunked_upload.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_path_with_progress_chunked_upload.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [c5fa0486-67fa-11e7-91a8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:41 GMT'] + x-ms-client-request-id: [af502c9c-68f4-11e7-a54f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:41 GMT'] - ETag: ['"0x8D4CA1EAA14BE7B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:38 GMT'] + ETag: ['"0x8D4CB18941B10C1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ed4b246b-0001-00d1-6007-fce98b000000] + x-ms-request-id: [765300e2-0001-00d6-0e01-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -100,9 +100,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c62992c8-67fa-11e7-8a40-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [af7b91a2-68f4-11e7-987d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -110,14 +110,14 @@ interactions: body: {string: ''} headers: Content-MD5: [AjAb8LLklmCXqq+8Nscxkg==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA31E8AE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:38 GMT'] + ETag: ['"0x8D4CB189437ECEA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [ed4b24b5-0001-00d1-1f07-fce98b000000] + x-ms-request-id: [765300f5-0001-00d6-1f01-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -198,10 +198,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['4096'] - x-ms-client-request-id: [c631de4c-67fa-11e7-a80a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [af82b036-68f4-11e7-b51f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -209,14 +209,14 @@ interactions: body: {string: ''} headers: Content-MD5: [ECJ+KGecw+uGwikTPuAj1A==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA3B875A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:38 GMT'] + ETag: ['"0x8D4CB18943E56D0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['4096'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [ed4b24ca-0001-00d1-3007-fce98b000000] + x-ms-request-id: [765300f8-0001-00d6-2101-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -297,10 +297,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['8192'] - x-ms-client-request-id: [c63c8a0c-67fa-11e7-be76-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [af88571e-68f4-11e7-8709-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -308,14 +308,14 @@ interactions: body: {string: ''} headers: Content-MD5: [yqe84hGROzcO5nKY9jPhYw==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA44FEEA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:38 GMT'] + ETag: ['"0x8D4CB189443D603"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['8192'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [ed4b24d9-0001-00d1-3a07-fce98b000000] + x-ms-request-id: [765300fe-0001-00d6-2601-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -396,10 +396,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['12288'] - x-ms-client-request-id: [c64278e2-67fa-11e7-8a35-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [af8e0bfa-68f4-11e7-86c7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -407,14 +407,14 @@ interactions: body: {string: ''} headers: Content-MD5: [ltd3umWmxFJV5MTR0y+X1w==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA4ACC5A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:38 GMT'] + ETag: ['"0x8D4CB189449CA8E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['12288'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [ed4b24ee-0001-00d1-4c07-fce98b000000] + x-ms-request-id: [76530102-0001-00d6-2a01-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -495,10 +495,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['16384'] - x-ms-client-request-id: [c6482762-67fa-11e7-aede-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [af93a8b4-68f4-11e7-81f4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -506,14 +506,14 @@ interactions: body: {string: ''} headers: Content-MD5: [hfFpNF2D3ls3OWJrO0eECQ==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA5072AF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:38 GMT'] + ETag: ['"0x8D4CB18944F22B7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['16384'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [ed4b24fd-0001-00d1-5807-fce98b000000] + x-ms-request-id: [76530107-0001-00d6-2f01-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -594,10 +594,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['20480'] - x-ms-client-request-id: [c64d82dc-67fa-11e7-aec0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [af998734-68f4-11e7-9cce-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -605,14 +605,14 @@ interactions: body: {string: ''} headers: Content-MD5: [5ByDT3ku6Q1Sv7sKpWBgKQ==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA55CAEB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:39 GMT'] + ETag: ['"0x8D4CB1894551741"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['20480'] x-ms-blob-committed-block-count: ['6'] - x-ms-request-id: [ed4b250d-0001-00d1-6807-fce98b000000] + x-ms-request-id: [76530110-0001-00d6-3701-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -693,10 +693,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['24576'] - x-ms-client-request-id: [c6532ae8-67fa-11e7-90cd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [afa0ac80-68f4-11e7-bb13-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -704,14 +704,14 @@ interactions: body: {string: ''} headers: Content-MD5: [zxHVLYqRllJgxt5Fevz+lw==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA5BBF5D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:39 GMT'] + ETag: ['"0x8D4CB18945BF671"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['24576'] x-ms-blob-committed-block-count: ['7'] - x-ms-request-id: [ed4b251a-0001-00d1-7507-fce98b000000] + x-ms-request-id: [7653011b-0001-00d6-4101-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -792,10 +792,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['28672'] - x-ms-client-request-id: [c6596afa-67fa-11e7-87e4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [afa6084c-68f4-11e7-9551-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -803,14 +803,14 @@ interactions: body: {string: ''} headers: Content-MD5: [31GISuCUSYYGxw0C0Me9rA==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA61DB0C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:39 GMT'] + ETag: ['"0x8D4CB189461C3DF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28672'] x-ms-blob-committed-block-count: ['8'] - x-ms-request-id: [ed4b2527-0001-00d1-0107-fce98b000000] + x-ms-request-id: [7653011c-0001-00d6-4201-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -891,10 +891,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['32768'] - x-ms-client-request-id: [c65f19e8-67fa-11e7-baae-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [afac040c-68f4-11e7-be72-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -902,14 +902,14 @@ interactions: body: {string: ''} headers: Content-MD5: [P7jQWZoTjBIaiUwtBNjJzA==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA678147"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:39 GMT'] + ETag: ['"0x8D4CB1894676A2A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['32768'] x-ms-blob-committed-block-count: ['9'] - x-ms-request-id: [ed4b2537-0001-00d1-1007-fce98b000000] + x-ms-request-id: [76530124-0001-00d6-4801-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -990,10 +990,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['36864'] - x-ms-client-request-id: [c664b1be-67fa-11e7-ba0b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [afb16322-68f4-11e7-8e03-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -1001,14 +1001,14 @@ interactions: body: {string: ''} headers: Content-MD5: [MDOOL3m6zHqNT2Ucni7K+w==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA6D0089"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:39 GMT'] + ETag: ['"0x8D4CB18946CC26D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['36864'] x-ms-blob-committed-block-count: ['10'] - x-ms-request-id: [ed4b2543-0001-00d1-1b07-fce98b000000] + x-ms-request-id: [76530129-0001-00d6-4c01-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1089,10 +1089,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['40960'] - x-ms-client-request-id: [c66da2cc-67fa-11e7-b271-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [afb70be2-68f4-11e7-8ad9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -1100,14 +1100,14 @@ interactions: body: {string: ''} headers: Content-MD5: [5rKGVsqcEraLVxuCjAaQ9w==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA75DBC2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:39 GMT'] + ETag: ['"0x8D4CB1894728FCB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['40960'] x-ms-blob-committed-block-count: ['11'] - x-ms-request-id: [ed4b255f-0001-00d1-3307-fce98b000000] + x-ms-request-id: [76530131-0001-00d6-5201-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1188,10 +1188,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['45056'] - x-ms-client-request-id: [c672f10c-67fa-11e7-a348-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [afbcad90-68f4-11e7-a809-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -1199,14 +1199,14 @@ interactions: body: {string: ''} headers: Content-MD5: [NyZLslFoHJIEEflrPndVGw==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA7B33E9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:39 GMT'] + ETag: ['"0x8D4CB18947920AE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['45056'] x-ms-blob-committed-block-count: ['12'] - x-ms-request-id: [ed4b2570-0001-00d1-4307-fce98b000000] + x-ms-request-id: [76530133-0001-00d6-5401-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1287,10 +1287,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['49152'] - x-ms-client-request-id: [c67844f4-67fa-11e7-bc08-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [afc353a2-68f4-11e7-8151-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -1298,14 +1298,14 @@ interactions: body: {string: ''} headers: Content-MD5: [4Jnv+c74ajW8dmapLadtoA==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA803DDD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:39 GMT'] + ETag: ['"0x8D4CB18947F3C4F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['49152'] x-ms-blob-committed-block-count: ['13'] - x-ms-request-id: [ed4b257d-0001-00d1-4f07-fce98b000000] + x-ms-request-id: [76530138-0001-00d6-5901-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1386,10 +1386,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['53248'] - x-ms-client-request-id: [c67d665a-67fa-11e7-963c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [afcb15cc-68f4-11e7-b5a0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -1397,14 +1397,14 @@ interactions: body: {string: ''} headers: Content-MD5: [gvXzh6qcNuge5rCR8Rd3iw==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA85BD1F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:39 GMT'] + ETag: ['"0x8D4CB18948690AB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['53248'] x-ms-blob-committed-block-count: ['14'] - x-ms-request-id: [ed4b2585-0001-00d1-5707-fce98b000000] + x-ms-request-id: [76530140-0001-00d6-5f01-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1485,10 +1485,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['57344'] - x-ms-client-request-id: [c683108c-67fa-11e7-a44d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [afd0c5c8-68f4-11e7-8027-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -1496,14 +1496,14 @@ interactions: body: {string: ''} headers: Content-MD5: [yxyVnfMIqrvuG7+B/iTOPg==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA8B3C5D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:39 GMT'] + ETag: ['"0x8D4CB18948CD364"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['57344'] x-ms-blob-committed-block-count: ['15'] - x-ms-request-id: [ed4b2598-0001-00d1-6907-fce98b000000] + x-ms-request-id: [76530144-0001-00d6-6301-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1584,10 +1584,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['61440'] - x-ms-client-request-id: [c688b3c0-67fa-11e7-8567-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + x-ms-client-request-id: [afd78946-68f4-11e7-84de-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer315b1d8c/blob315b1d8c?comp=appendblock @@ -1595,14 +1595,14 @@ interactions: body: {string: ''} headers: Content-MD5: [+FZutIqSXMjrevPLb8+DRg==] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA909484"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:39 GMT'] + ETag: ['"0x8D4CB1894933D34"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['61440'] x-ms-blob-committed-block-count: ['16'] - x-ms-request-id: [ed4b25a7-0001-00d1-7707-fce98b000000] + x-ms-request-id: [76530149-0001-00d6-6701-fd1f0e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1610,9 +1610,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c68e5212-67fa-11e7-ab00-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [afdd310a-68f4-11e7-80f4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:38 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -2775,16 +2775,16 @@ interactions: Content-Length: ['65536'] Content-Range: [bytes 0-65535/65536] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:42 GMT'] - ETag: ['"0x8D4CA1EAA909484"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:39 GMT'] + ETag: ['"0x8D4CB1894933D34"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['16'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [ed4b25b9-0001-00d1-0607-fce98b000000] + x-ms-request-id: [7653014b-0001-00d6-6901-fd1f0e000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_stream_chunked_upload.yaml b/tests/recordings/test_append_blob.test_append_blob_from_stream_chunked_upload.yaml index 9ca7fb5c..a62ca8a7 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_stream_chunked_upload.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_stream_chunked_upload.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [c7007e34-67fa-11e7-bded-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:43 GMT'] + x-ms-client-request-id: [b0591130-68f4-11e7-ad67-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:39 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:43 GMT'] - ETag: ['"0x8D4CA1EAB1741E6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:40 GMT'] + ETag: ['"0x8D4CB1895233BDB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [61ffcf78-0001-0095-4e07-fc35e7000000] + x-ms-request-id: [e5880ced-0001-0086-6601-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -100,9 +100,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c72a4f28-67fa-11e7-9418-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b08176b6-68f4-11e7-ad80-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -110,14 +110,14 @@ interactions: body: {string: ''} headers: Content-MD5: [0c2Wztl/J7KWo1hGQjqwJA==] - Date: ['Thu, 13 Jul 2017 18:40:43 GMT'] - ETag: ['"0x8D4CA1EAB32BE1C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:40 GMT'] + ETag: ['"0x8D4CB18953EDF42"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [61ffcfc1-0001-0095-1107-fc35e7000000] + x-ms-request-id: [e5880d67-0001-0086-4e01-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -198,10 +198,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['4096'] - x-ms-client-request-id: [c7301714-67fa-11e7-9075-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:43 GMT'] + x-ms-client-request-id: [b08988d8-68f4-11e7-a2fd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -209,14 +209,14 @@ interactions: body: {string: ''} headers: Content-MD5: [jWs2/F1P3I5y1o5ykWBQgA==] - Date: ['Thu, 13 Jul 2017 18:40:43 GMT'] - ETag: ['"0x8D4CA1EAB383D5A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:40 GMT'] + ETag: ['"0x8D4CB189544FAE0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['4096'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [61ffcfcd-0001-0095-1b07-fc35e7000000] + x-ms-request-id: [e5880d8a-0001-0086-6c01-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -297,10 +297,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['8192'] - x-ms-client-request-id: [c735b9b4-67fa-11e7-80fc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:43 GMT'] + x-ms-client-request-id: [b08ed2ca-68f4-11e7-9cc8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -308,14 +308,14 @@ interactions: body: {string: ''} headers: Content-MD5: [OjwXRJq1eq6x5JAGtfDqSA==] - Date: ['Thu, 13 Jul 2017 18:40:43 GMT'] - ETag: ['"0x8D4CA1EAB3DE3B3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:40 GMT'] + ETag: ['"0x8D4CB18954A04DF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['8192'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [61ffcfdb-0001-0095-2407-fc35e7000000] + x-ms-request-id: [e5880da0-0001-0086-0101-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -396,10 +396,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['12288'] - x-ms-client-request-id: [c73b2468-67fa-11e7-a583-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + x-ms-client-request-id: [b0942ffe-68f4-11e7-b5fc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -407,14 +407,14 @@ interactions: body: {string: ''} headers: Content-MD5: [5xFdleg3SFB8WHqucb0NiQ==] - Date: ['Thu, 13 Jul 2017 18:40:43 GMT'] - ETag: ['"0x8D4CA1EAB4314BE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:40 GMT'] + ETag: ['"0x8D4CB1895502080"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['12288'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [61ffcfed-0001-0095-3407-fc35e7000000] + x-ms-request-id: [e5880dac-0001-0086-0b01-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -495,10 +495,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['16384'] - x-ms-client-request-id: [c74062d8-67fa-11e7-a6b4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + x-ms-client-request-id: [b09a45b0-68f4-11e7-ac4a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -506,14 +506,14 @@ interactions: body: {string: ''} headers: Content-MD5: [I7bK9r2YV3IEtL9AruOmCA==] - Date: ['Thu, 13 Jul 2017 18:40:43 GMT'] - ETag: ['"0x8D4CA1EAB4BA1C9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:40 GMT'] + ETag: ['"0x8D4CB189555C6D8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['16384'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [61ffd00d-0001-0095-4e07-fc35e7000000] + x-ms-request-id: [e5880dce-0001-0086-2601-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -594,10 +594,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['20480'] - x-ms-client-request-id: [c748c7f0-67fa-11e7-8129-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + x-ms-client-request-id: [b09fe13a-68f4-11e7-a8ea-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -605,14 +605,14 @@ interactions: body: {string: ''} headers: Content-MD5: [eM8XCZvjONex4xi/o4XGsg==] - Date: ['Thu, 13 Jul 2017 18:40:44 GMT'] - ETag: ['"0x8D4CA1EAB514822"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:40 GMT'] + ETag: ['"0x8D4CB18955AF7F2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['20480'] x-ms-blob-committed-block-count: ['6'] - x-ms-request-id: [61ffd020-0001-0095-5d07-fc35e7000000] + x-ms-request-id: [e5880de3-0001-0086-3901-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -693,10 +693,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['24576'] - x-ms-client-request-id: [c74ed3e8-67fa-11e7-8bca-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + x-ms-client-request-id: [b0a5488c-68f4-11e7-abda-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -704,14 +704,14 @@ interactions: body: {string: ''} headers: Content-MD5: [1gYqppGBIn2P78o1hoahlw==] - Date: ['Thu, 13 Jul 2017 18:40:44 GMT'] - ETag: ['"0x8D4CA1EAB56EE7B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:40 GMT'] + ETag: ['"0x8D4CB1895609E4E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['24576'] x-ms-blob-committed-block-count: ['7'] - x-ms-request-id: [61ffd02c-0001-0095-6807-fc35e7000000] + x-ms-request-id: [e5880df2-0001-0086-4401-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -792,10 +792,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['28672'] - x-ms-client-request-id: [c7540dae-67fa-11e7-8705-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + x-ms-client-request-id: [b0aade28-68f4-11e7-ac25-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -803,14 +803,14 @@ interactions: body: {string: ''} headers: Content-MD5: [qIaBoVHKHNmuF2Y3ANhiFA==] - Date: ['Thu, 13 Jul 2017 18:40:44 GMT'] - ETag: ['"0x8D4CA1EAB5BF86B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:40 GMT'] + ETag: ['"0x8D4CB189566E110"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28672'] x-ms-blob-committed-block-count: ['8'] - x-ms-request-id: [61ffd043-0001-0095-7f07-fc35e7000000] + x-ms-request-id: [e5880e01-0001-0086-5201-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -891,10 +891,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['32768'] - x-ms-client-request-id: [c7592e68-67fa-11e7-b67c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + x-ms-client-request-id: [b0b0e5a4-68f4-11e7-b4d7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -902,14 +902,14 @@ interactions: body: {string: ''} headers: Content-MD5: [QGX67cK8CGvSEujirnAd8A==] - Date: ['Thu, 13 Jul 2017 18:40:44 GMT'] - ETag: ['"0x8D4CA1EAB61509E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:40 GMT'] + ETag: ['"0x8D4CB18956C604C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['32768'] x-ms-blob-committed-block-count: ['9'] - x-ms-request-id: [61ffd05f-0001-0095-1407-fc35e7000000] + x-ms-request-id: [e5880e0c-0001-0086-5d01-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -990,10 +990,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['36864'] - x-ms-client-request-id: [c75ed868-67fa-11e7-a56c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + x-ms-client-request-id: [b0b63266-68f4-11e7-9a5b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -1001,14 +1001,14 @@ interactions: body: {string: ''} headers: Content-MD5: [VoRfQWq3IlXGXa5jmXC7Gg==] - Date: ['Thu, 13 Jul 2017 18:40:44 GMT'] - ETag: ['"0x8D4CA1EAB671DFD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:40 GMT'] + ETag: ['"0x8D4CB18957206A7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['36864'] x-ms-blob-committed-block-count: ['10'] - x-ms-request-id: [61ffd077-0001-0095-2707-fc35e7000000] + x-ms-request-id: [e5880e19-0001-0086-6901-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1089,10 +1089,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['40960'] - x-ms-client-request-id: [c7677308-67fa-11e7-a613-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + x-ms-client-request-id: [b0bcc28c-68f4-11e7-a3ca-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -1100,14 +1100,14 @@ interactions: body: {string: ''} headers: Content-MD5: [yG6BpPLf+oPJABt8BtVBtw==] - Date: ['Thu, 13 Jul 2017 18:40:44 GMT'] - ETag: ['"0x8D4CA1EAB6FF936"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:40 GMT'] + ETag: ['"0x8D4CB1895782249"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['40960'] x-ms-blob-committed-block-count: ['11'] - x-ms-request-id: [61ffd094-0001-0095-4107-fc35e7000000] + x-ms-request-id: [e5880e2f-0001-0086-7d01-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1188,10 +1188,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['45056'] - x-ms-client-request-id: [c76d215e-67fa-11e7-85c7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + x-ms-client-request-id: [b0c26234-68f4-11e7-834f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -1199,14 +1199,14 @@ interactions: body: {string: ''} headers: Content-MD5: [9OmsLOzFWpSEZOnl02SPPw==] - Date: ['Thu, 13 Jul 2017 18:40:44 GMT'] - ETag: ['"0x8D4CA1EAB752A4A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:40 GMT'] + ETag: ['"0x8D4CB18957DA189"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['45056'] x-ms-blob-committed-block-count: ['12'] - x-ms-request-id: [61ffd0a9-0001-0095-5607-fc35e7000000] + x-ms-request-id: [e5880e45-0001-0086-1101-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1287,10 +1287,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['49152'] - x-ms-client-request-id: [c7726f7e-67fa-11e7-b9ac-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + x-ms-client-request-id: [b0c783fe-68f4-11e7-a432-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -1298,14 +1298,14 @@ interactions: body: {string: ''} headers: Content-MD5: [mpkMtKe25KflNiDKqkFCAw==] - Date: ['Thu, 13 Jul 2017 18:40:44 GMT'] - ETag: ['"0x8D4CA1EAB7A5B5E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:40 GMT'] + ETag: ['"0x8D4CB189582F9BB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['49152'] x-ms-blob-committed-block-count: ['13'] - x-ms-request-id: [61ffd0b7-0001-0095-6207-fc35e7000000] + x-ms-request-id: [e5880e5d-0001-0086-2801-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1386,10 +1386,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['53248'] - x-ms-client-request-id: [c7778fe2-67fa-11e7-974a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + x-ms-client-request-id: [b0cd2a8c-68f4-11e7-ac74-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -1397,14 +1397,14 @@ interactions: body: {string: ''} headers: Content-MD5: [Zli6m7aSP9QH457h0qX+hg==] - Date: ['Thu, 13 Jul 2017 18:40:44 GMT'] - ETag: ['"0x8D4CA1EAB8001A6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:41 GMT'] + ETag: ['"0x8D4CB1895887919"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['53248'] x-ms-blob-committed-block-count: ['14'] - x-ms-request-id: [61ffd0c2-0001-0095-6d07-fc35e7000000] + x-ms-request-id: [e5880e7b-0001-0086-4101-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1485,10 +1485,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['57344'] - x-ms-client-request-id: [c77d3b1e-67fa-11e7-b8d5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + x-ms-client-request-id: [b0d282d8-68f4-11e7-bff6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -1496,14 +1496,14 @@ interactions: body: {string: ''} headers: Content-MD5: [EQnZ2lubRe/fl45NEm9WvA==] - Date: ['Thu, 13 Jul 2017 18:40:44 GMT'] - ETag: ['"0x8D4CA1EAB8532CB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:41 GMT'] + ETag: ['"0x8D4CB18958DF844"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['57344'] x-ms-blob-committed-block-count: ['15'] - x-ms-request-id: [61ffd0cc-0001-0095-7707-fc35e7000000] + x-ms-request-id: [e5880e93-0001-0086-5901-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1584,10 +1584,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['61440'] - x-ms-client-request-id: [c782e6d8-67fa-11e7-8a8b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + x-ms-client-request-id: [b0d7ea82-68f4-11e7-8db1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c?comp=appendblock @@ -1595,14 +1595,14 @@ interactions: body: {string: ''} headers: Content-MD5: [IAbYt1bPRETdryLvEjiMPg==] - Date: ['Thu, 13 Jul 2017 18:40:44 GMT'] - ETag: ['"0x8D4CA1EAB8B0025"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:41 GMT'] + ETag: ['"0x8D4CB1895937789"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['61440'] x-ms-blob-committed-block-count: ['16'] - x-ms-request-id: [61ffd0e1-0001-0095-0c07-fc35e7000000] + x-ms-request-id: [e5880ea8-0001-0086-6c01-fd0006000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1610,9 +1610,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c78aeffe-67fa-11e7-83ae-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b0e0f1d8-68f4-11e7-b831-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainere925187c/blobe925187c @@ -1622,16 +1622,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['65536'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:44 GMT'] - ETag: ['"0x8D4CA1EAB8B0025"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:41 GMT'] + ETag: ['"0x8D4CB1895937789"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['16'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [61ffd10e-0001-0095-3607-fc35e7000000] + x-ms-request-id: [e5880ecc-0001-0086-0d01-fd0006000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -1639,9 +1639,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c79055ac-67fa-11e7-874b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b0e6804c-68f4-11e7-8596-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:40 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -2804,16 +2804,16 @@ interactions: Content-Length: ['65536'] Content-Range: [bytes 0-65535/65536] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:44 GMT'] - ETag: ['"0x8D4CA1EAB8B0025"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:41 GMT'] + ETag: ['"0x8D4CB1895937789"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['16'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [61ffd128-0001-0095-4d07-fc35e7000000] + x-ms-request-id: [e5880edb-0001-0086-1b01-fd0006000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_stream_chunked_upload_with_count.yaml b/tests/recordings/test_append_blob.test_append_blob_from_stream_chunked_upload_with_count.yaml index 49ebf49d..53932892 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_stream_chunked_upload_with_count.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_stream_chunked_upload_with_count.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [c819e236-67fa-11e7-9edb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:45 GMT'] + x-ms-client-request-id: [b153b946-68f4-11e7-aab7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:44 GMT'] - ETag: ['"0x8D4CA1EAC30ACD8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:41 GMT'] + ETag: ['"0x8D4CB18961C970E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0bfbf5ff-0001-0081-2607-fcf683000000] + x-ms-request-id: [71288a64-0001-000a-6001-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -100,9 +100,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c844762c-67fa-11e7-b28d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b17d6a3e-68f4-11e7-8d5b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -110,14 +110,14 @@ interactions: body: {string: ''} headers: Content-MD5: [Idgj/ZWk734NhXcaptsYgg==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC4D1397"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB189638D6DF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [0bfbf651-0001-0081-7307-fcf683000000] + x-ms-request-id: [71288aa4-0001-000a-1901-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -198,10 +198,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['4096'] - x-ms-client-request-id: [c84a5f1a-67fa-11e7-b9ee-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:45 GMT'] + x-ms-client-request-id: [b1831628-68f4-11e7-a822-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -209,14 +209,14 @@ interactions: body: {string: ''} headers: Content-MD5: [SOEwE8YNwxSIMpkRXy7ASQ==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC53F2A5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB18963EA44D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['4096'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [0bfbf66b-0001-0081-0a07-fcf683000000] + x-ms-request-id: [71288ab4-0001-000a-2801-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -297,10 +297,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['8192'] - x-ms-client-request-id: [c8513682-67fa-11e7-94c4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:45 GMT'] + x-ms-client-request-id: [b188bdc6-68f4-11e7-a143-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -308,14 +308,14 @@ interactions: body: {string: ''} headers: Content-MD5: [9WxhfLJbCIfcEgwhdLIeyg==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC5971E2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB189643D564"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['8192'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [0bfbf678-0001-0081-1707-fcf683000000] + x-ms-request-id: [71288ac3-0001-000a-3601-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -396,10 +396,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['12288'] - x-ms-client-request-id: [c8570406-67fa-11e7-9d81-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:45 GMT'] + x-ms-client-request-id: [b18e6174-68f4-11e7-86b1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -407,14 +407,14 @@ interactions: body: {string: ''} headers: Content-MD5: [bqgC/waG6TXQ1CJIFipguA==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC5F3F4E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB189649F105"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['12288'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [0bfbf68e-0001-0081-2b07-fcf683000000] + x-ms-request-id: [71288ad7-0001-000a-4901-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -495,10 +495,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['16384'] - x-ms-client-request-id: [c85c8a64-67fa-11e7-b115-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:45 GMT'] + x-ms-client-request-id: [b193cd10-68f4-11e7-87e4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -506,14 +506,14 @@ interactions: body: {string: ''} headers: Content-MD5: [kFCZaG63KqA7z1HzWi+BKg==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC64BE88"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB18964F221B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['16384'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [0bfbf6a3-0001-0081-3e07-fcf683000000] + x-ms-request-id: [71288ae0-0001-000a-5101-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -594,10 +594,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['20480'] - x-ms-client-request-id: [c861d906-67fa-11e7-9519-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:45 GMT'] + x-ms-client-request-id: [b199f370-68f4-11e7-b6c0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -605,14 +605,14 @@ interactions: body: {string: ''} headers: Content-MD5: [bmTCMq7qgkY0xRGq8W4NsA==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC69EF9B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB18965564D4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['20480'] x-ms-blob-committed-block-count: ['6'] - x-ms-request-id: [0bfbf6b2-0001-0081-4d07-fcf683000000] + x-ms-request-id: [71288af2-0001-000a-6301-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -693,10 +693,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['24576'] - x-ms-client-request-id: [c867468c-67fa-11e7-9437-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:45 GMT'] + x-ms-client-request-id: [b19f5d68-68f4-11e7-9e52-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -704,14 +704,14 @@ interactions: body: {string: ''} headers: Content-MD5: [f/1xABFRBjvJrAUb9hs35Q==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC6FBD03"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB18965ABCFD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['24576'] x-ms-blob-committed-block-count: ['7'] - x-ms-request-id: [0bfbf6bf-0001-0081-5907-fcf683000000] + x-ms-request-id: [71288b01-0001-000a-7101-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -792,10 +792,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['28672'] - x-ms-client-request-id: [c86cc730-67fa-11e7-b9b6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:46 GMT'] + x-ms-client-request-id: [b1a51c5a-68f4-11e7-b521-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -803,14 +803,14 @@ interactions: body: {string: ''} headers: Content-MD5: [mzSoemXZYd1qtpY357zYkg==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC74C6FC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB1896608A79"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28672'] x-ms-blob-committed-block-count: ['8'] - x-ms-request-id: [0bfbf6ce-0001-0081-6707-fcf683000000] + x-ms-request-id: [71288b13-0001-000a-0101-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -891,10 +891,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['32768'] - x-ms-client-request-id: [c874cda4-67fa-11e7-8166-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:46 GMT'] + x-ms-client-request-id: [b1aa5d50-68f4-11e7-a86e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -902,14 +902,14 @@ interactions: body: {string: ''} headers: Content-MD5: [ByTJdHvVz+KCT64I9BilxA==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC7D05D8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB189665BB8F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['32768'] x-ms-blob-committed-block-count: ['9'] - x-ms-request-id: [0bfbf6f1-0001-0081-0607-fcf683000000] + x-ms-request-id: [71288b19-0001-000a-0701-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -990,10 +990,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['36864'] - x-ms-client-request-id: [c87a37b4-67fa-11e7-ae44-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:46 GMT'] + x-ms-client-request-id: [b1afbcb4-68f4-11e7-b76c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -1001,14 +1001,14 @@ interactions: body: {string: ''} headers: Content-MD5: [S6DSuiJUpLVodUIQKBzyww==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC82851A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB18966B3AD0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['36864'] x-ms-blob-committed-block-count: ['10'] - x-ms-request-id: [0bfbf701-0001-0081-1507-fcf683000000] + x-ms-request-id: [71288b1f-0001-000a-0c01-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1089,10 +1089,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['40960'] - x-ms-client-request-id: [c87fbdcc-67fa-11e7-aef5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:46 GMT'] + x-ms-client-request-id: [b1b56a88-68f4-11e7-a3bc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -1100,14 +1100,14 @@ interactions: body: {string: ''} headers: Content-MD5: [fUtDi8Dz2+B6A8uQfHWFqQ==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC87DD56"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB189670E130"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['40960'] x-ms-blob-committed-block-count: ['11'] - x-ms-request-id: [0bfbf70d-0001-0081-2007-fcf683000000] + x-ms-request-id: [71288b24-0001-000a-1001-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1188,10 +1188,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['45056'] - x-ms-client-request-id: [c885505c-67fa-11e7-b6fd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:46 GMT'] + x-ms-client-request-id: [b1bbc3e2-68f4-11e7-91c0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -1199,14 +1199,14 @@ interactions: body: {string: ''} headers: Content-MD5: [SrusKgAzlwr2yX99anYKSw==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC8D8391"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB1896774B00"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['45056'] x-ms-blob-committed-block-count: ['12'] - x-ms-request-id: [0bfbf71f-0001-0081-3207-fcf683000000] + x-ms-request-id: [71288b2b-0001-000a-1701-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1287,10 +1287,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['49152'] - x-ms-client-request-id: [c88b3b02-67fa-11e7-a160-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:46 GMT'] + x-ms-client-request-id: [b1c14cb8-68f4-11e7-ad8b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -1298,14 +1298,14 @@ interactions: body: {string: ''} headers: Content-MD5: [AIwegNS5Fa7sGEpljyPw8w==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC9350FD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB18967CCA40"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['49152'] x-ms-blob-committed-block-count: ['13'] - x-ms-request-id: [0bfbf730-0001-0081-4207-fcf683000000] + x-ms-request-id: [71288b36-0001-000a-2001-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1386,10 +1386,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['53248'] - x-ms-client-request-id: [c89098d8-67fa-11e7-842a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:46 GMT'] + x-ms-client-request-id: [b1c6a8c0-68f4-11e7-b893-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -1397,14 +1397,14 @@ interactions: body: {string: ''} headers: Content-MD5: [3yUhY7I5MDVR/NpJk4mRHg==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC98D03F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB189681FB5B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['53248'] x-ms-blob-committed-block-count: ['14'] - x-ms-request-id: [0bfbf742-0001-0081-5307-fcf683000000] + x-ms-request-id: [71288b3f-0001-000a-2801-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1485,10 +1485,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['57344'] - x-ms-client-request-id: [c8964092-67fa-11e7-8772-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:46 GMT'] + x-ms-client-request-id: [b1cc06ba-68f4-11e7-8491-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -1496,14 +1496,14 @@ interactions: body: {string: ''} headers: Content-MD5: [3Qzf0/NXEA8xSDrKv6o8DA==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EAC9F611A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB1896877A9B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['57344'] x-ms-blob-committed-block-count: ['15'] - x-ms-request-id: [0bfbf760-0001-0081-6d07-fcf683000000] + x-ms-request-id: [71288b49-0001-000a-3001-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1579,10 +1579,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3795'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['61440'] - x-ms-client-request-id: [c89cd948-67fa-11e7-ac5f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:46 GMT'] + x-ms-client-request-id: [b1d19352-68f4-11e7-a9c0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer120f1d1f/blob120f1d1f?comp=appendblock @@ -1590,14 +1590,14 @@ interactions: body: {string: ''} headers: Content-MD5: [lT4USduWiajlE46fpPREEA==] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EACA5559D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB18968CD2C8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['61440'] x-ms-blob-committed-block-count: ['16'] - x-ms-request-id: [0bfbf772-0001-0081-7f07-fcf683000000] + x-ms-request-id: [71288b54-0001-000a-3801-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1605,9 +1605,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c8a3b72c-67fa-11e7-b66a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b1d70af8-68f4-11e7-9924-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:42 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -2765,16 +2765,16 @@ interactions: Content-Length: ['65235'] Content-Range: [bytes 0-65234/65235] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:45 GMT'] - ETag: ['"0x8D4CA1EACA5559D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:42 GMT'] + ETag: ['"0x8D4CB18968CD2C8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['16'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [0bfbf794-0001-0081-1c07-fcf683000000] + x-ms-request-id: [71288b5f-0001-000a-4201-fd4d5d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_stream_non_seekable_chunked_upload_known_size.yaml b/tests/recordings/test_append_blob.test_append_blob_from_stream_non_seekable_chunked_upload_known_size.yaml index 22eb6faf..4a6442cb 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_stream_non_seekable_chunked_upload_known_size.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_stream_non_seekable_chunked_upload_known_size.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [c935796e-67fa-11e7-bb68-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:47 GMT'] + x-ms-client-request-id: [b268edd8-68f4-11e7-8a8d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:47 GMT'] - ETag: ['"0x8D4CA1EAD4BC5C2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:43 GMT'] + ETag: ['"0x8D4CB189732804B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ee6068ea-0001-012e-0c07-fc9246000000] + x-ms-request-id: [108f2bfa-0001-00aa-5501-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -100,9 +100,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c95f56d0-67fa-11e7-a436-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b29179ba-68f4-11e7-9c90-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -110,14 +110,14 @@ interactions: body: {string: ''} headers: Content-MD5: [LfHin88ZK2aaq4ESsW62DA==] - Date: ['Thu, 13 Jul 2017 18:40:47 GMT'] - ETag: ['"0x8D4CA1EAD67B745"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:43 GMT'] + ETag: ['"0x8D4CB18974D3930"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [ee60691b-0001-012e-3607-fc9246000000] + x-ms-request-id: [108f2c6f-0001-00aa-4201-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -198,10 +198,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['4096'] - x-ms-client-request-id: [c9653a78-67fa-11e7-b084-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:47 GMT'] + x-ms-client-request-id: [b29721b4-68f4-11e7-9864-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -209,14 +209,14 @@ interactions: body: {string: ''} headers: Content-MD5: [NuS9Lf9TRB15DUQuCm2k+g==] - Date: ['Thu, 13 Jul 2017 18:40:47 GMT'] - ETag: ['"0x8D4CA1EAD6FCEFE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:43 GMT'] + ETag: ['"0x8D4CB189752DF87"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['4096'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [ee606924-0001-012e-3d07-fc9246000000] + x-ms-request-id: [108f2c91-0001-00aa-6201-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -297,10 +297,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['8192'] - x-ms-client-request-id: [c96d66c6-67fa-11e7-a9d0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:47 GMT'] + x-ms-client-request-id: [b29df2ee-68f4-11e7-9259-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -308,14 +308,14 @@ interactions: body: {string: ''} headers: Content-MD5: [iFFEcAVKMo8SxEGmUW1+qQ==] - Date: ['Thu, 13 Jul 2017 18:40:47 GMT'] - ETag: ['"0x8D4CA1EAD777194"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:43 GMT'] + ETag: ['"0x8D4CB1897594957"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['8192'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [ee60692f-0001-012e-4707-fc9246000000] + x-ms-request-id: [108f2ca9-0001-00aa-7701-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -396,10 +396,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['12288'] - x-ms-client-request-id: [c9749e98-67fa-11e7-8982-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:47 GMT'] + x-ms-client-request-id: [b2a3dfb0-68f4-11e7-afbe-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -407,14 +407,14 @@ interactions: body: {string: ''} headers: Content-MD5: [4nREKXb32rw6i5VHa+KK7Q==] - Date: ['Thu, 13 Jul 2017 18:40:47 GMT'] - ETag: ['"0x8D4CA1EAD7C7B77"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:43 GMT'] + ETag: ['"0x8D4CB18975FB32C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['12288'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [ee60693c-0001-012e-5007-fc9246000000] + x-ms-request-id: [108f2cbb-0001-00aa-0801-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -495,10 +495,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['16384'] - x-ms-client-request-id: [c979f4c2-67fa-11e7-99e6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:47 GMT'] + x-ms-client-request-id: [b2aa3f86-68f4-11e7-8ddd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -506,14 +506,14 @@ interactions: body: {string: ''} headers: Content-MD5: [8f2RGAH8AweB/QJL+rAraw==] - Date: ['Thu, 13 Jul 2017 18:40:47 GMT'] - ETag: ['"0x8D4CA1EAD81D3A2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:44 GMT'] + ETag: ['"0x8D4CB1897661CFC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['16384'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [ee606942-0001-012e-5507-fc9246000000] + x-ms-request-id: [108f2cd5-0001-00aa-1e01-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -594,10 +594,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['20480'] - x-ms-client-request-id: [c97f4e0c-67fa-11e7-8a3a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:47 GMT'] + x-ms-client-request-id: [b2afed6e-68f4-11e7-a460-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -605,14 +605,14 @@ interactions: body: {string: ''} headers: Content-MD5: [GOG/z+zIUThznhh0Wjq7Vg==] - Date: ['Thu, 13 Jul 2017 18:40:47 GMT'] - ETag: ['"0x8D4CA1EAD8752DB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:44 GMT'] + ETag: ['"0x8D4CB18976CADDF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['20480'] x-ms-blob-committed-block-count: ['6'] - x-ms-request-id: [ee606949-0001-012e-5a07-fc9246000000] + x-ms-request-id: [108f2ce9-0001-00aa-3001-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -693,10 +693,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['24576'] - x-ms-client-request-id: [c984ab06-67fa-11e7-8d86-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:47 GMT'] + x-ms-client-request-id: [b2b6a41a-68f4-11e7-b513-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -704,14 +704,14 @@ interactions: body: {string: ''} headers: Content-MD5: [xtcrwfHey1A3ipju4NUvqQ==] - Date: ['Thu, 13 Jul 2017 18:40:47 GMT'] - ETag: ['"0x8D4CA1EAD8CAB02"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:44 GMT'] + ETag: ['"0x8D4CB1897727B52"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['24576'] x-ms-blob-committed-block-count: ['7'] - x-ms-request-id: [ee606951-0001-012e-6207-fc9246000000] + x-ms-request-id: [108f2cfa-0001-00aa-3f01-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -792,10 +792,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['28672'] - x-ms-client-request-id: [c989c26c-67fa-11e7-aaf8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:47 GMT'] + x-ms-client-request-id: [b2bdccc2-68f4-11e7-ad95-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -803,14 +803,14 @@ interactions: body: {string: ''} headers: Content-MD5: [uBZXe0vjVMLPW/FTwec0pA==] - Date: ['Thu, 13 Jul 2017 18:40:47 GMT'] - ETag: ['"0x8D4CA1EAD91DC12"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:44 GMT'] + ETag: ['"0x8D4CB189779CFAD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28672'] x-ms-blob-committed-block-count: ['8'] - x-ms-request-id: [ee60695c-0001-012e-6c07-fc9246000000] + x-ms-request-id: [108f2d05-0001-00aa-4a01-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -891,10 +891,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['32768'] - x-ms-client-request-id: [c98f1e10-67fa-11e7-9f41-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:47 GMT'] + x-ms-client-request-id: [b2c40808-68f4-11e7-ac2a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -902,14 +902,14 @@ interactions: body: {string: ''} headers: Content-MD5: [1BY8YMSm9AYo6GkifrRvfg==] - Date: ['Thu, 13 Jul 2017 18:40:47 GMT'] - ETag: ['"0x8D4CA1EAD970D21"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:44 GMT'] + ETag: ['"0x8D4CB189783474E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['32768'] x-ms-blob-committed-block-count: ['9'] - x-ms-request-id: [ee606966-0001-012e-7507-fc9246000000] + x-ms-request-id: [108f2d15-0001-00aa-5901-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -990,10 +990,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['36864'] - x-ms-client-request-id: [c99472fa-67fa-11e7-9556-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:47 GMT'] + x-ms-client-request-id: [b2cd41f4-68f4-11e7-ba8b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -1001,14 +1001,14 @@ interactions: body: {string: ''} headers: Content-MD5: [GCdMwHpcdiMOiObNIE49Ag==] - Date: ['Thu, 13 Jul 2017 18:40:47 GMT'] - ETag: ['"0x8D4CA1EAD9D01A8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:44 GMT'] + ETag: ['"0x8D4CB189789FF51"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['36864'] x-ms-blob-committed-block-count: ['10'] - x-ms-request-id: [ee60696a-0001-012e-7907-fc9246000000] + x-ms-request-id: [108f2d3a-0001-00aa-7a01-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1089,10 +1089,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['40960'] - x-ms-client-request-id: [c99a5e92-67fa-11e7-904a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:47 GMT'] + x-ms-client-request-id: [b2d41fe8-68f4-11e7-b25c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -1100,14 +1100,14 @@ interactions: body: {string: ''} headers: Content-MD5: [cxSTFN7Ub604K+dpsZu9HQ==] - Date: ['Thu, 13 Jul 2017 18:40:47 GMT'] - ETag: ['"0x8D4CA1EADA232B4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:44 GMT'] + ETag: ['"0x8D4CB18978F7E8D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['40960'] x-ms-blob-committed-block-count: ['11'] - x-ms-request-id: [ee606971-0001-012e-8007-fc9246000000] + x-ms-request-id: [108f2d60-0001-00aa-1901-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1188,10 +1188,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['45056'] - x-ms-client-request-id: [c99f7a1c-67fa-11e7-9817-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:48 GMT'] + x-ms-client-request-id: [b2d9f47e-68f4-11e7-9997-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -1199,14 +1199,14 @@ interactions: body: {string: ''} headers: Content-MD5: [FHKG2WTHzWvtnP6BUpoDhw==] - Date: ['Thu, 13 Jul 2017 18:40:48 GMT'] - ETag: ['"0x8D4CA1EADA763C8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:44 GMT'] + ETag: ['"0x8D4CB189795C14A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['45056'] x-ms-blob-committed-block-count: ['12'] - x-ms-request-id: [ee60697f-0001-012e-0b07-fc9246000000] + x-ms-request-id: [108f2d75-0001-00aa-2d01-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1287,10 +1287,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['49152'] - x-ms-client-request-id: [c9a82d58-67fa-11e7-a235-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:48 GMT'] + x-ms-client-request-id: [b2dffc52-68f4-11e7-9e71-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -1298,14 +1298,14 @@ interactions: body: {string: ''} headers: Content-MD5: [f+U16K+j9vryS9Bvg248Uw==] - Date: ['Thu, 13 Jul 2017 18:40:48 GMT'] - ETag: ['"0x8D4CA1EADB06613"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:44 GMT'] + ETag: ['"0x8D4CB18979B67A6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['49152'] x-ms-blob-committed-block-count: ['13'] - x-ms-request-id: [ee606991-0001-012e-1b07-fc9246000000] + x-ms-request-id: [108f2d90-0001-00aa-4801-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1386,10 +1386,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['53248'] - x-ms-client-request-id: [c9b58186-67fa-11e7-b1cc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:48 GMT'] + x-ms-client-request-id: [b2e643d2-68f4-11e7-8b6c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -1397,14 +1397,14 @@ interactions: body: {string: ''} headers: Content-MD5: [2hGLaUwZG/9gPDw9pamHzA==] - Date: ['Thu, 13 Jul 2017 18:40:48 GMT'] - ETag: ['"0x8D4CA1EADBDAEE4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:44 GMT'] + ETag: ['"0x8D4CB1897A30A30"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['53248'] x-ms-blob-committed-block-count: ['14'] - x-ms-request-id: [ee6069ab-0001-012e-3307-fc9246000000] + x-ms-request-id: [108f2d9d-0001-00aa-5401-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1485,10 +1485,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['57344'] - x-ms-client-request-id: [c9bb45c6-67fa-11e7-ba6a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:48 GMT'] + x-ms-client-request-id: [b2edb676-68f4-11e7-a186-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -1496,14 +1496,14 @@ interactions: body: {string: ''} headers: Content-MD5: [nypCDls4mXjaO0zZs8fHGw==] - Date: ['Thu, 13 Jul 2017 18:40:48 GMT'] - ETag: ['"0x8D4CA1EADC35541"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:44 GMT'] + ETag: ['"0x8D4CB1897A94CED"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['57344'] x-ms-blob-committed-block-count: ['15'] - x-ms-request-id: [ee6069b7-0001-012e-3d07-fc9246000000] + x-ms-request-id: [108f2db0-0001-00aa-6501-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1583,10 +1583,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4030'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['61440'] - x-ms-client-request-id: [c9c2bb12-67fa-11e7-af18-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:48 GMT'] + x-ms-client-request-id: [b2f368e6-68f4-11e7-817f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraed62267/blobaed62267?comp=appendblock @@ -1594,14 +1594,14 @@ interactions: body: {string: ''} headers: Content-MD5: [URWVWemtAd7yrouLiIJy5w==] - Date: ['Thu, 13 Jul 2017 18:40:48 GMT'] - ETag: ['"0x8D4CA1EADCAF7BD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:44 GMT'] + ETag: ['"0x8D4CB1897AECC2E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['61440'] x-ms-blob-committed-block-count: ['16'] - x-ms-request-id: [ee6069c3-0001-012e-4907-fc9246000000] + x-ms-request-id: [108f2dc7-0001-00aa-7b01-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1609,9 +1609,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [c9c8a3a6-67fa-11e7-a4cb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b2f90efe-68f4-11e7-846a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:44 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -2773,16 +2773,16 @@ interactions: Content-Length: ['65470'] Content-Range: [bytes 0-65469/65470] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:48 GMT'] - ETag: ['"0x8D4CA1EADCAF7BD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:44 GMT'] + ETag: ['"0x8D4CB1897AECC2E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['16'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [ee6069c8-0001-012e-4e07-fc9246000000] + x-ms-request-id: [108f2deb-0001-00aa-1a01-fd823b000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_stream_non_seekable_chunked_upload_unknown_size.yaml b/tests/recordings/test_append_blob.test_append_blob_from_stream_non_seekable_chunked_upload_unknown_size.yaml index 6199f3ef..322e512a 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_stream_non_seekable_chunked_upload_unknown_size.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_stream_non_seekable_chunked_upload_unknown_size.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [ca3da002-67fa-11e7-98fd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b375acca-68f4-11e7-ad48-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:48 GMT'] - ETag: ['"0x8D4CA1EAE59E416"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB189840C6F6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cf933c0d-0001-007a-7107-fc3e99000000] + x-ms-request-id: [d4c6f301-0001-00ac-4501-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -100,9 +100,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ca6cae4c-67fa-11e7-95b9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b39f61d2-68f4-11e7-9b5d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -110,14 +110,14 @@ interactions: body: {string: ''} headers: Content-MD5: [xBNlA3qYOtCucjd/7Gq+fw==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAE753924"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB18985AE37E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [cf933c50-0001-007a-3107-fc3e99000000] + x-ms-request-id: [d4c6f367-0001-00ac-1d01-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -198,10 +198,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['4096'] - x-ms-client-request-id: [ca72c6e2-67fa-11e7-8935-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3a8fb48-68f4-11e7-be60-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -209,14 +209,14 @@ interactions: body: {string: ''} headers: Content-MD5: [19YQeRigwtOYSlpIVjFLVA==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAE7C665B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB1898645B1A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['4096'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [cf933c64-0001-007a-4107-fc3e99000000] + x-ms-request-id: [d4c6f383-0001-00ac-3201-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -297,10 +297,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['8192'] - x-ms-client-request-id: [ca79ba1a-67fa-11e7-aa25-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3ae5b68-68f4-11e7-8db7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -308,14 +308,14 @@ interactions: body: {string: ''} headers: Content-MD5: [yHJfHerE2jRy2YiqYcEtkg==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAE81BE82"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB189869B34C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['8192'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [cf933c7c-0001-007a-5707-fc3e99000000] + x-ms-request-id: [d4c6f394-0001-00ac-4101-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -396,10 +396,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['12288'] - x-ms-client-request-id: [ca7f1174-67fa-11e7-b0b3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3b3fef8-68f4-11e7-bc21-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -407,14 +407,14 @@ interactions: body: {string: ''} headers: Content-MD5: [7bK30hX9fT810PLm0Aso0w==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAE87B30D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB18986F80BF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['12288'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [cf933c89-0001-007a-6207-fc3e99000000] + x-ms-request-id: [d4c6f3a1-0001-00ac-4e01-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -495,10 +495,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['16384'] - x-ms-client-request-id: [ca857268-67fa-11e7-8081-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3ba31ba-68f4-11e7-a66f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -506,14 +506,14 @@ interactions: body: {string: ''} headers: Content-MD5: [t5oCOJga/gfjnT78U/N2fQ==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAE8D8074"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB189875EA8F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['16384'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [cf933c9a-0001-007a-7107-fc3e99000000] + x-ms-request-id: [d4c6f3c0-0001-00ac-6801-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -594,10 +594,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['20480'] - x-ms-client-request-id: [ca8accba-67fa-11e7-b36b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3c031c8-68f4-11e7-9dca-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -605,14 +605,14 @@ interactions: body: {string: ''} headers: Content-MD5: [7fu5BPxYSxf6lhiyvn8F0g==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAE94114F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB18987BDF19"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['20480'] x-ms-blob-committed-block-count: ['6'] - x-ms-request-id: [cf933cac-0001-007a-0107-fc3e99000000] + x-ms-request-id: [d4c6f3c7-0001-00ac-6f01-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -693,10 +693,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['24576'] - x-ms-client-request-id: [ca9156ca-67fa-11e7-92a1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3c631a4-68f4-11e7-a888-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -704,14 +704,14 @@ interactions: body: {string: ''} headers: Content-MD5: [YBV8EiEbih9HWzQFaltV6A==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAE99B7A4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB189881AC88"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['24576'] x-ms-blob-committed-block-count: ['7'] - x-ms-request-id: [cf933cc8-0001-007a-1b07-fc3e99000000] + x-ms-request-id: [d4c6f3cd-0001-00ac-7501-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -792,10 +792,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['28672'] - x-ms-client-request-id: [ca977174-67fa-11e7-a39f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3cbb412-68f4-11e7-a54a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -803,14 +803,14 @@ interactions: body: {string: ''} headers: Content-MD5: [E4fYvr+rCXzbc4XqB0Pxvg==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAE9F8518"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB18988704BA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28672'] x-ms-blob-committed-block-count: ['8'] - x-ms-request-id: [cf933ce3-0001-007a-3307-fc3e99000000] + x-ms-request-id: [d4c6f3d9-0001-00ac-8001-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -891,10 +891,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['32768'] - x-ms-client-request-id: [ca9cd4dc-67fa-11e7-a6b7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3d13f5e-68f4-11e7-afc9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -902,14 +902,14 @@ interactions: body: {string: ''} headers: Content-MD5: [jltCrP3pWoSBRCruwKCmbw==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAEA52B69"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB18988CAB16"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['32768'] x-ms-blob-committed-block-count: ['9'] - x-ms-request-id: [cf933cf9-0001-007a-4807-fc3e99000000] + x-ms-request-id: [d4c6f3ec-0001-00ac-1101-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -990,10 +990,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['36864'] - x-ms-client-request-id: [caa281d4-67fa-11e7-8aa2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3d71968-68f4-11e7-aaa7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -1001,14 +1001,14 @@ interactions: body: {string: ''} headers: Content-MD5: [MFshtZdzEqVVVxm51WZrrA==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAEAA8390"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB1898929FA0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['36864'] x-ms-blob-committed-block-count: ['10'] - x-ms-request-id: [cf933d0d-0001-007a-5907-fc3e99000000] + x-ms-request-id: [d4c6f3fc-0001-00ac-1f01-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1089,10 +1089,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['40960'] - x-ms-client-request-id: [caa80ad2-67fa-11e7-933e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3dce8b8-68f4-11e7-9df9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -1100,14 +1100,14 @@ interactions: body: {string: ''} headers: Content-MD5: [2Nrn1mWR6+ka8KWclVVz6g==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAEB002C9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB1898984600"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['40960'] x-ms-blob-committed-block-count: ['11'] - x-ms-request-id: [cf933d26-0001-007a-6f07-fc3e99000000] + x-ms-request-id: [d4c6f408-0001-00ac-2a01-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1188,10 +1188,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['45056'] - x-ms-client-request-id: [caada44c-67fa-11e7-8acf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3e25c1c-68f4-11e7-a7a1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -1199,14 +1199,14 @@ interactions: body: {string: ''} headers: Content-MD5: [NetAXWBP2ca/8QH6wYohQQ==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAEB77E4C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB18989D9E2A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['45056'] x-ms-blob-committed-block-count: ['12'] - x-ms-request-id: [cf933d32-0001-007a-7b07-fc3e99000000] + x-ms-request-id: [d4c6f412-0001-00ac-3101-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1287,10 +1287,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['49152'] - x-ms-client-request-id: [cab4ef4a-67fa-11e7-8bfc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3e7920c-68f4-11e7-b4ea-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -1298,14 +1298,14 @@ interactions: body: {string: ''} headers: Content-MD5: [eOY85QqAB9GOAs9X3ovLRQ==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAEBD2490"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB1898A2CF40"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['49152'] x-ms-blob-committed-block-count: ['13'] - x-ms-request-id: [cf933d52-0001-007a-1707-fc3e99000000] + x-ms-request-id: [d4c6f41f-0001-00ac-3c01-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1386,10 +1386,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['53248'] - x-ms-client-request-id: [caba6e98-67fa-11e7-bb10-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3ed2158-68f4-11e7-95d2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -1397,14 +1397,14 @@ interactions: body: {string: ''} headers: Content-MD5: [PUyY0ARZbFYfH0Z/Vs9ZKw==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAEC2A3C5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:46 GMT'] + ETag: ['"0x8D4CB1898A84E84"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['53248'] x-ms-blob-committed-block-count: ['14'] - x-ms-request-id: [cf933d6a-0001-007a-2b07-fc3e99000000] + x-ms-request-id: [d4c6f431-0001-00ac-4b01-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1485,10 +1485,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['57344'] - x-ms-client-request-id: [cac03e90-67fa-11e7-9177-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3f22bcc-68f4-11e7-8870-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -1496,14 +1496,14 @@ interactions: body: {string: ''} headers: Content-MD5: [A3v1FvYlj03AnjCmyF+/+g==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAEC84A1E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:47 GMT'] + ETag: ['"0x8D4CB1898AD5883"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['57344'] x-ms-blob-committed-block-count: ['15'] - x-ms-request-id: [cf933d7d-0001-007a-3d07-fc3e99000000] + x-ms-request-id: [d4c6f43f-0001-00ac-5601-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1584,10 +1584,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['61440'] - x-ms-client-request-id: [cac74eba-67fa-11e7-8eaf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:49 GMT'] + x-ms-client-request-id: [b3f8e61c-68f4-11e7-9848-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf54c234a/blobf54c234a?comp=appendblock @@ -1595,14 +1595,14 @@ interactions: body: {string: ''} headers: Content-MD5: [/HwZGJXsfW9Oz7eUh4XLMA==] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAED03AC8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:47 GMT'] + ETag: ['"0x8D4CB1898B4ACDF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['61440'] x-ms-blob-committed-block-count: ['16'] - x-ms-request-id: [cf933d91-0001-007a-5107-fc3e99000000] + x-ms-request-id: [d4c6f44f-0001-00ac-6501-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1610,9 +1610,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cacd9e28-67fa-11e7-878a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b3ff075e-68f4-11e7-9266-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:45 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -2775,16 +2775,16 @@ interactions: Content-Length: ['65536'] Content-Range: [bytes 0-65535/65536] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:49 GMT'] - ETag: ['"0x8D4CA1EAED03AC8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:47 GMT'] + ETag: ['"0x8D4CB1898B4ACDF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['16'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [cf933db3-0001-007a-7007-fc3e99000000] + x-ms-request-id: [d4c6f45c-0001-00ac-7201-fd7543000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_stream_with_multiple_appends.yaml b/tests/recordings/test_append_blob.test_append_blob_from_stream_with_multiple_appends.yaml index 87686d42..9e703a36 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_stream_with_multiple_appends.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_stream_with_multiple_appends.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [cb3a40f0-67fa-11e7-9963-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:50 GMT'] + x-ms-client-request-id: [b470849c-68f4-11e7-9e35-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAF50093C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB18993B0CC1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1d35f0d2-0001-00b6-4e07-fc5a2c000000] + x-ms-request-id: [0074db9a-0001-0133-5501-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -100,9 +100,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cb63bb62-67fa-11e7-a436-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b49a22b6-68f4-11e7-b757-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -110,14 +110,14 @@ interactions: body: {string: ''} headers: Content-MD5: [Idt4sIaAaWjj5l2rjA7YKg==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAF6BFA9D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB1899563AE7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [1d35f12a-0001-00b6-1607-fc5a2c000000] + x-ms-request-id: [0074dbaf-0001-0133-6701-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -198,10 +198,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['4096'] - x-ms-client-request-id: [cb69334c-67fa-11e7-8923-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4a0631a-68f4-11e7-bced-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -209,14 +209,14 @@ interactions: body: {string: ''} headers: Content-MD5: [UYobuyHgZ4bWXzY5dRfv1A==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAF7179DA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB18995BBA30"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['4096'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [1d35f141-0001-00b6-2907-fc5a2c000000] + x-ms-request-id: [0074dbb6-0001-0133-6d01-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -297,10 +297,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['8192'] - x-ms-client-request-id: [cb6ee6a2-67fa-11e7-a0a7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4a5e0f6-68f4-11e7-9b18-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -308,14 +308,14 @@ interactions: body: {string: ''} headers: Content-MD5: [2zFvm+G6RBBNIRJYzax9Mg==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAF76F91C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB189961608C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['8192'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [1d35f14f-0001-00b6-3707-fc5a2c000000] + x-ms-request-id: [0074dbb9-0001-0133-7001-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -396,10 +396,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['12288'] - x-ms-client-request-id: [cb745448-67fa-11e7-8606-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4abb454-68f4-11e7-9c6e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -407,14 +407,14 @@ interactions: body: {string: ''} headers: Content-MD5: [L0xlD6yS7PWvDi6oLbpIig==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAF7CC688"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB189966DFD0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['12288'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [1d35f169-0001-00b6-4d07-fc5a2c000000] + x-ms-request-id: [0074dbbd-0001-0133-7401-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -495,10 +495,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['16384'] - x-ms-client-request-id: [cb7aa33e-67fa-11e7-b87b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4b0cba6-68f4-11e7-8094-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -506,14 +506,14 @@ interactions: body: {string: ''} headers: Content-MD5: [K4wdDg92T+hVT73lDNanMg==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAF82E21E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB18996C37FE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['16384'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [1d35f17c-0001-00b6-5e07-fc5a2c000000] + x-ms-request-id: [0074dbc5-0001-0133-7b01-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -594,10 +594,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['20480'] - x-ms-client-request-id: [cb82d1a8-67fa-11e7-820a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4b9509e-68f4-11e7-a3a3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -605,14 +605,14 @@ interactions: body: {string: ''} headers: Content-MD5: [4dT4s4TA+HdrT7c0LPiRJw==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAF8AD2CC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB189974C50F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['20480'] x-ms-blob-committed-block-count: ['6'] - x-ms-request-id: [1d35f191-0001-00b6-7207-fc5a2c000000] + x-ms-request-id: [0074dbcf-0001-0133-0401-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -693,10 +693,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['24576'] - x-ms-client-request-id: [cb87d78c-67fa-11e7-bc5c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4be9f06-68f4-11e7-a289-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -704,14 +704,14 @@ interactions: body: {string: ''} headers: Content-MD5: [yvCkntlWA1NMw1W3IiJQaQ==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAF8FDCC1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB18997A4465"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['24576'] x-ms-blob-committed-block-count: ['7'] - x-ms-request-id: [1d35f19f-0001-00b6-7f07-fc5a2c000000] + x-ms-request-id: [0074dbd5-0001-0133-0a01-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -792,10 +792,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['28672'] - x-ms-client-request-id: [cb8d45fa-67fa-11e7-8a90-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4c41f1c-68f4-11e7-aba4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -803,14 +803,14 @@ interactions: body: {string: ''} headers: Content-MD5: [EkFFGF/jN7WB/OrfiDAI9w==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAF95AA35"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB18997F9C89"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28672'] x-ms-blob-committed-block-count: ['8'] - x-ms-request-id: [1d35f1ab-0001-00b6-0a07-fc5a2c000000] + x-ms-request-id: [0074dbd9-0001-0133-0e01-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -891,10 +891,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['32768'] - x-ms-client-request-id: [cb92df46-67fa-11e7-a305-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4cbce74-68f4-11e7-978d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -902,14 +902,14 @@ interactions: body: {string: ''} headers: Content-MD5: [a2Uzwy/p51TF/K1jfHdu7Q==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAF9B5085"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB1899873F1C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['32768'] x-ms-blob-committed-block-count: ['9'] - x-ms-request-id: [1d35f1bb-0001-00b6-1807-fc5a2c000000] + x-ms-request-id: [0074dbe2-0001-0133-1601-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -990,10 +990,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['36864'] - x-ms-client-request-id: [cb9b44e8-67fa-11e7-b45d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4d12efa-68f4-11e7-80ce-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -1001,14 +1001,14 @@ interactions: body: {string: ''} headers: Content-MD5: [wspUiqc1Wtc8bz2zaiTzjw==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAFA38F66"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB18998CBE58"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['36864'] x-ms-blob-committed-block-count: ['10'] - x-ms-request-id: [1d35f1ce-0001-00b6-2a07-fc5a2c000000] + x-ms-request-id: [0074dbe3-0001-0133-1701-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1089,10 +1089,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['40960'] - x-ms-client-request-id: [cba0d34c-67fa-11e7-9fb1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4d6e4a8-68f4-11e7-b503-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -1100,14 +1100,14 @@ interactions: body: {string: ''} headers: Content-MD5: [GkGZGIrx6iCrrCFseoRLJA==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAFA90EA0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB1899957281"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['40960'] x-ms-blob-committed-block-count: ['11'] - x-ms-request-id: [1d35f1d8-0001-00b6-3407-fc5a2c000000] + x-ms-request-id: [0074dbea-0001-0133-1d01-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1188,10 +1188,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['45056'] - x-ms-client-request-id: [cba62218-67fa-11e7-8fcc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4dfcf64-68f4-11e7-ba07-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -1199,14 +1199,14 @@ interactions: body: {string: ''} headers: Content-MD5: [/aA4MgpR0JXgI+9+lF9DXg==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAFB0D837"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB18999B3FF4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['45056'] x-ms-blob-committed-block-count: ['12'] - x-ms-request-id: [1d35f1e6-0001-00b6-4007-fc5a2c000000] + x-ms-request-id: [0074dbf0-0001-0133-2301-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1287,10 +1287,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['49152'] - x-ms-client-request-id: [cbaddc90-67fa-11e7-aa9d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4e52bda-68f4-11e7-a163-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -1298,14 +1298,14 @@ interactions: body: {string: ''} headers: Content-MD5: [RGuqvdCt/jwwxb9RcmvDVA==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAFB5BB1D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB1899A0BF38"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['49152'] x-ms-blob-committed-block-count: ['13'] - x-ms-request-id: [1d35f1fa-0001-00b6-5407-fc5a2c000000] + x-ms-request-id: [0074dbf6-0001-0133-2701-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1386,10 +1386,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['53248'] - x-ms-client-request-id: [cbb2fea8-67fa-11e7-8e15-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4ead440-68f4-11e7-859b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -1397,14 +1397,14 @@ interactions: body: {string: ''} headers: Content-MD5: [ZkjFVHlfCQfreHOR8Iajzg==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAFBB1344"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB1899A6DADA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['53248'] x-ms-blob-committed-block-count: ['14'] - x-ms-request-id: [1d35f209-0001-00b6-6207-fc5a2c000000] + x-ms-request-id: [0074dbfa-0001-0133-2b01-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1485,10 +1485,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['57344'] - x-ms-client-request-id: [cbb86980-67fa-11e7-bf34-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4f1159e-68f4-11e7-a95b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -1496,14 +1496,14 @@ interactions: body: {string: ''} headers: Content-MD5: [d2a/57s/lDe4LjdX7lQ5wQ==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAFC06B66"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:48 GMT'] + ETag: ['"0x8D4CB1899AC8136"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['57344'] x-ms-blob-committed-block-count: ['15'] - x-ms-request-id: [1d35f21b-0001-00b6-7007-fc5a2c000000] + x-ms-request-id: [0074dbfc-0001-0133-2d01-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1584,10 +1584,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['61440'] - x-ms-client-request-id: [cbbdcbdc-67fa-11e7-a725-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b4f922ac-68f4-11e7-af66-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -1595,14 +1595,14 @@ interactions: body: {string: ''} headers: Content-MD5: [EKrD6PEq9VZKTAm1eq1Mgw==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAFC5EAA4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB1899B49906"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['61440'] x-ms-blob-committed-block-count: ['16'] - x-ms-request-id: [1d35f228-0001-00b6-7d07-fc5a2c000000] + x-ms-request-id: [0074dc05-0001-0133-3201-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1683,9 +1683,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cbc32712-67fa-11e7-b10b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b4fe660c-68f4-11e7-8fae-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -1693,14 +1693,14 @@ interactions: body: {string: ''} headers: Content-MD5: [Idt4sIaAaWjj5l2rjA7YKg==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAFCB42CA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB1899B9CA1C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['65536'] x-ms-blob-committed-block-count: ['17'] - x-ms-request-id: [1d35f232-0001-00b6-0407-fc5a2c000000] + x-ms-request-id: [0074dc08-0001-0133-3501-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1781,10 +1781,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['69632'] - x-ms-client-request-id: [cbc8b222-67fa-11e7-91d9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b5051b86-68f4-11e7-a708-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -1792,14 +1792,14 @@ interactions: body: {string: ''} headers: Content-MD5: [UYobuyHgZ4bWXzY5dRfv1A==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAFD09AF5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB1899C0D049"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['69632'] x-ms-blob-committed-block-count: ['18'] - x-ms-request-id: [1d35f23d-0001-00b6-0e07-fc5a2c000000] + x-ms-request-id: [0074dc0e-0001-0133-3901-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1880,10 +1880,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['73728'] - x-ms-client-request-id: [cbce2ffe-67fa-11e7-be5c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b50c6b34-68f4-11e7-8e53-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -1891,14 +1891,14 @@ interactions: body: {string: ''} headers: Content-MD5: [2zFvm+G6RBBNIRJYzax9Mg==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAFD6685D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB1899C7D676"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['73728'] x-ms-blob-committed-block-count: ['19'] - x-ms-request-id: [1d35f252-0001-00b6-2207-fc5a2c000000] + x-ms-request-id: [0074dc13-0001-0133-3d01-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1979,10 +1979,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['77824'] - x-ms-client-request-id: [cbd39bf6-67fa-11e7-954e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b511b6dc-68f4-11e7-af05-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -1990,14 +1990,14 @@ interactions: body: {string: ''} headers: Content-MD5: [L0xlD6yS7PWvDi6oLbpIig==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAFDB996D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB1899CD2EA8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['77824'] x-ms-blob-committed-block-count: ['20'] - x-ms-request-id: [1d35f25f-0001-00b6-2d07-fc5a2c000000] + x-ms-request-id: [0074dc18-0001-0133-4201-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -2078,10 +2078,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['81920'] - x-ms-client-request-id: [cbdaf5ae-67fa-11e7-a60e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b5172180-68f4-11e7-a53e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -2089,14 +2089,14 @@ interactions: body: {string: ''} headers: Content-MD5: [K4wdDg92T+hVT73lDNanMg==] - Date: ['Thu, 13 Jul 2017 18:40:50 GMT'] - ETag: ['"0x8D4CA1EAFE2EDBF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB1899D286D1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['81920'] x-ms-blob-committed-block-count: ['21'] - x-ms-request-id: [1d35f270-0001-00b6-3e07-fc5a2c000000] + x-ms-request-id: [0074dc20-0001-0133-4901-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -2177,10 +2177,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['86016'] - x-ms-client-request-id: [cbe05262-67fa-11e7-a91a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b51c739c-68f4-11e7-9e18-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -2188,14 +2188,14 @@ interactions: body: {string: ''} headers: Content-MD5: [4dT4s4TA+HdrT7c0LPiRJw==] - Date: ['Thu, 13 Jul 2017 18:40:51 GMT'] - ETag: ['"0x8D4CA1EAFE86D05"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB1899D790D0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['86016'] x-ms-blob-committed-block-count: ['22'] - x-ms-request-id: [1d35f285-0001-00b6-5307-fc5a2c000000] + x-ms-request-id: [0074dc27-0001-0133-5001-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -2276,10 +2276,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['90112'] - x-ms-client-request-id: [cbe775e8-67fa-11e7-9869-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b5218238-68f4-11e7-9346-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -2287,14 +2287,14 @@ interactions: body: {string: ''} headers: Content-MD5: [yvCkntlWA1NMw1W3IiJQaQ==] - Date: ['Thu, 13 Jul 2017 18:40:51 GMT'] - ETag: ['"0x8D4CA1EAFEF9A38"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB1899DD1014"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['90112'] x-ms-blob-committed-block-count: ['23'] - x-ms-request-id: [1d35f296-0001-00b6-6107-fc5a2c000000] + x-ms-request-id: [0074dc2a-0001-0133-5301-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -2375,10 +2375,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['94208'] - x-ms-client-request-id: [cbecce34-67fa-11e7-9f01-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b5270674-68f4-11e7-8da4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -2386,14 +2386,14 @@ interactions: body: {string: ''} headers: Content-MD5: [EkFFGF/jN7WB/OrfiDAI9w==] - Date: ['Thu, 13 Jul 2017 18:40:51 GMT'] - ETag: ['"0x8D4CA1EAFF4F25E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB1899E26842"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['94208'] x-ms-blob-committed-block-count: ['24'] - x-ms-request-id: [1d35f2a9-0001-00b6-6f07-fc5a2c000000] + x-ms-request-id: [0074dc32-0001-0133-5a01-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -2474,10 +2474,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['98304'] - x-ms-client-request-id: [cbf21e3a-67fa-11e7-bc85-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b52c5cda-68f4-11e7-9272-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -2485,14 +2485,14 @@ interactions: body: {string: ''} headers: Content-MD5: [a2Uzwy/p51TF/K1jfHdu7Q==] - Date: ['Thu, 13 Jul 2017 18:40:51 GMT'] - ETag: ['"0x8D4CA1EAFF9FC5B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB1899E7C06F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['98304'] x-ms-blob-committed-block-count: ['25'] - x-ms-request-id: [1d35f2b1-0001-00b6-7707-fc5a2c000000] + x-ms-request-id: [0074dc37-0001-0133-5f01-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -2573,10 +2573,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['102400'] - x-ms-client-request-id: [cbf73528-67fa-11e7-8108-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:51 GMT'] + x-ms-client-request-id: [b531fb22-68f4-11e7-8c0c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -2584,14 +2584,14 @@ interactions: body: {string: ''} headers: Content-MD5: [wspUiqc1Wtc8bz2zaiTzjw==] - Date: ['Thu, 13 Jul 2017 18:40:51 GMT'] - ETag: ['"0x8D4CA1EAFFF5482"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB1899ED66CF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['102400'] x-ms-blob-committed-block-count: ['26'] - x-ms-request-id: [1d35f2c5-0001-00b6-0607-fc5a2c000000] + x-ms-request-id: [0074dc3b-0001-0133-6301-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -2672,10 +2672,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['106496'] - x-ms-client-request-id: [cbfe4590-67fa-11e7-b5b0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:52 GMT'] + x-ms-client-request-id: [b5384e46-68f4-11e7-8710-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -2683,14 +2683,14 @@ interactions: body: {string: ''} headers: Content-MD5: [GkGZGIrx6iCrrCFseoRLJA==] - Date: ['Thu, 13 Jul 2017 18:40:51 GMT'] - ETag: ['"0x8D4CA1EB0065AAA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB1899F3D09B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['106496'] x-ms-blob-committed-block-count: ['27'] - x-ms-request-id: [1d35f2db-0001-00b6-1a07-fc5a2c000000] + x-ms-request-id: [0074dc41-0001-0133-6901-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -2771,10 +2771,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['110592'] - x-ms-client-request-id: [cc03a648-67fa-11e7-bab4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:52 GMT'] + x-ms-client-request-id: [b53de478-68f4-11e7-8d98-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -2782,14 +2782,14 @@ interactions: body: {string: ''} headers: Content-MD5: [/aA4MgpR0JXgI+9+lF9DXg==] - Date: ['Thu, 13 Jul 2017 18:40:51 GMT'] - ETag: ['"0x8D4CA1EB00B649A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB1899F976F7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['110592'] x-ms-blob-committed-block-count: ['28'] - x-ms-request-id: [1d35f2ed-0001-00b6-2b07-fc5a2c000000] + x-ms-request-id: [0074dc42-0001-0133-6a01-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -2870,10 +2870,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['114688'] - x-ms-client-request-id: [cc08ef06-67fa-11e7-a6cd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:52 GMT'] + x-ms-client-request-id: [b5433f86-68f4-11e7-bed5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -2881,14 +2881,14 @@ interactions: body: {string: ''} headers: Content-MD5: [RGuqvdCt/jwwxb9RcmvDVA==] - Date: ['Thu, 13 Jul 2017 18:40:51 GMT'] - ETag: ['"0x8D4CA1EB011320B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB1899FEA811"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['114688'] x-ms-blob-committed-block-count: ['29'] - x-ms-request-id: [1d35f2fd-0001-00b6-3b07-fc5a2c000000] + x-ms-request-id: [0074dc46-0001-0133-6d01-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -2969,10 +2969,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['118784'] - x-ms-client-request-id: [cc11a414-67fa-11e7-aa3f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:52 GMT'] + x-ms-client-request-id: [b5489d5a-68f4-11e7-a02b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -2980,14 +2980,14 @@ interactions: body: {string: ''} headers: Content-MD5: [ZkjFVHlfCQfreHOR8Iajzg==] - Date: ['Thu, 13 Jul 2017 18:40:51 GMT'] - ETag: ['"0x8D4CA1EB019BF1A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB189A04003B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['118784'] x-ms-blob-committed-block-count: ['30'] - x-ms-request-id: [1d35f318-0001-00b6-5407-fc5a2c000000] + x-ms-request-id: [0074dc48-0001-0133-6f01-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -3068,10 +3068,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['122880'] - x-ms-client-request-id: [cc170ba2-67fa-11e7-8fc5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:52 GMT'] + x-ms-client-request-id: [b54e419c-68f4-11e7-afcf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -3079,14 +3079,14 @@ interactions: body: {string: ''} headers: Content-MD5: [d2a/57s/lDe4LjdX7lQ5wQ==] - Date: ['Thu, 13 Jul 2017 18:40:51 GMT'] - ETag: ['"0x8D4CA1EB01F173C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB189A0A42F8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['122880'] x-ms-blob-committed-block-count: ['31'] - x-ms-request-id: [1d35f326-0001-00b6-6107-fc5a2c000000] + x-ms-request-id: [0074dc4d-0001-0133-7401-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -3167,10 +3167,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['126976'] - x-ms-client-request-id: [cc1c527e-67fa-11e7-bcb6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:52 GMT'] + x-ms-client-request-id: [b55487d2-68f4-11e7-8293-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2731b87/bloba2731b87?comp=appendblock @@ -3178,14 +3178,14 @@ interactions: body: {string: ''} headers: Content-MD5: [EKrD6PEq9VZKTAm1eq1Mgw==] - Date: ['Thu, 13 Jul 2017 18:40:51 GMT'] - ETag: ['"0x8D4CA1EB0246F74"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB189A101067"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['126976'] x-ms-blob-committed-block-count: ['32'] - x-ms-request-id: [1d35f337-0001-00b6-7107-fc5a2c000000] + x-ms-request-id: [0074dc51-0001-0133-7801-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -3193,9 +3193,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cc21a9fe-67fa-11e7-a183-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b55a3178-68f4-11e7-9b6e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:48 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -5508,16 +5508,16 @@ interactions: Content-Length: ['131072'] Content-Range: [bytes 0-131071/131072] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:51 GMT'] - ETag: ['"0x8D4CA1EB0246F74"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB189A101067"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['32'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [1d35f34a-0001-00b6-0107-fc5a2c000000] + x-ms-request-id: [0074dc53-0001-0133-7a01-fd4bac000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_text.yaml b/tests/recordings/test_append_blob.test_append_blob_from_text.yaml index c44de985..3b920a3b 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_text.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_text.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [cccc6a58-67fa-11e7-ba5a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:53 GMT'] + x-ms-client-request-id: [b6126fa4-68f4-11e7-be31-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:49 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer80b01190/blob80b01190 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:52 GMT'] - ETag: ['"0x8D4CA1EB0E5712E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB189ADC86F4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [56692d5e-0001-012f-3707-fc93bb000000] + x-ms-request-id: [9ca72f60-0001-0043-2901-fd7e3d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['27'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cce2ba0c-67fa-11e7-8f4f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b628ab70-68f4-11e7-9ab6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:49 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer80b01190/blob80b01190?comp=appendblock @@ -38,14 +38,14 @@ interactions: body: {string: ''} headers: Content-MD5: [1dmqejQJFCXZC/Jqkmc1Lw==] - Date: ['Thu, 13 Jul 2017 18:40:52 GMT'] - ETag: ['"0x8D4CA1EB0EB3EA3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB189AE45096"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [56692d64-0001-012f-3b07-fc93bb000000] + x-ms-request-id: [9ca72f75-0001-0043-3b01-fd7e3d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -53,9 +53,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cce85e6e-67fa-11e7-91bc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b62e5174-68f4-11e7-a57a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:49 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer80b01190/blob80b01190 @@ -65,16 +65,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['27'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:52 GMT'] - ETag: ['"0x8D4CA1EB0EB3EA3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB189AE45096"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['1'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [56692d6f-0001-012f-4407-fc93bb000000] + x-ms-request-id: [9ca72f81-0001-0043-4601-fd7e3d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -82,9 +82,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cced90e6-67fa-11e7-ab9e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b633e546-68f4-11e7-a0c1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:49 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -96,16 +96,16 @@ interactions: Content-Length: ['27'] Content-Range: [bytes 0-26/27] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:52 GMT'] - ETag: ['"0x8D4CA1EB0EB3EA3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:49 GMT'] + ETag: ['"0x8D4CB189AE45096"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['1'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [56692d79-0001-012f-4e07-fc93bb000000] + x-ms-request-id: [9ca72f8f-0001-0043-5101-fd7e3d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_text_chunked_upload.yaml b/tests/recordings/test_append_blob.test_append_blob_from_text_chunked_upload.yaml index 0c4f6788..c2d97dec 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_text_chunked_upload.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_text_chunked_upload.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [cd1f924c-67fa-11e7-a19a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:53 GMT'] + x-ms-client-request-id: [b6654a80-68f4-11e7-88ef-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:49 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB1359B98"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:50 GMT'] + ETag: ['"0x8D4CB189B2FE681"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f75fd96-0001-00a3-0207-fc98b5000000] + x-ms-request-id: [9e6e9d78-0001-00ff-6801-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -100,9 +100,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cd3cf690-67fa-11e7-86c4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b684eb9c-68f4-11e7-8c87-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -110,14 +110,14 @@ interactions: body: {string: ''} headers: Content-MD5: [gBE3N+K6DotzGfGe/0sG7Q==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB1450786"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:50 GMT'] + ETag: ['"0x8D4CB189B43C054"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [4f75fdc3-0001-00a3-2407-fc98b5000000] + x-ms-request-id: [9e6e9d94-0001-00ff-0101-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -198,10 +198,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['4096'] - x-ms-client-request-id: [cd428a4c-67fa-11e7-bbd9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [b68e0808-68f4-11e7-a4e4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -209,14 +209,14 @@ interactions: body: {string: ''} headers: Content-MD5: [6HmmZvLRnLPvfQ/IxN5pEQ==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB14A86C8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:50 GMT'] + ETag: ['"0x8D4CB189B4C4D69"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['4096'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [4f75fdd1-0001-00a3-3007-fc98b5000000] + x-ms-request-id: [9e6e9db2-0001-00ff-1b01-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -297,10 +297,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['8192'] - x-ms-client-request-id: [cd4790f0-67fa-11e7-87d6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [b696b7dc-68f4-11e7-a94b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -308,14 +308,14 @@ interactions: body: {string: ''} headers: Content-MD5: [M1V5Wt8o+yziMOw6dBFj7A==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB14F90BD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:50 GMT'] + ETag: ['"0x8D4CB189B52B739"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['8192'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [4f75fde3-0001-00a3-3f07-fc98b5000000] + x-ms-request-id: [9e6e9dd7-0001-00ff-3501-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -396,10 +396,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['12288'] - x-ms-client-request-id: [cd4ceee2-67fa-11e7-8f4d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [b69ca390-68f4-11e7-9679-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -407,14 +407,14 @@ interactions: body: {string: ''} headers: Content-MD5: [unyoiaSw9wiWpPe/yBz3nQ==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB154E8E3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:50 GMT'] + ETag: ['"0x8D4CB189B58367E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['12288'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [4f75fdef-0001-00a3-4a07-fc98b5000000] + x-ms-request-id: [9e6e9deb-0001-00ff-4601-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -495,10 +495,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['16384'] - x-ms-client-request-id: [cd52141c-67fa-11e7-9c5e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [b6a24a02-68f4-11e7-a0b9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -506,14 +506,14 @@ interactions: body: {string: ''} headers: Content-MD5: [JEdduyWCniXAAu+ljbNBOg==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB15A19F3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:50 GMT'] + ETag: ['"0x8D4CB189B5E03F1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['16384'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [4f75fe01-0001-00a3-5707-fc98b5000000] + x-ms-request-id: [9e6e9dfb-0001-00ff-5401-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -598,10 +598,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['20480'] - x-ms-client-request-id: [cd576322-67fa-11e7-b2a7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [b6a878be-68f4-11e7-ad7a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -609,14 +609,14 @@ interactions: body: {string: ''} headers: Content-MD5: [jywYfnsEjl9BUOKsvohCSQ==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB15F721A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:50 GMT'] + ETag: ['"0x8D4CB189B63F87B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['20480'] x-ms-blob-committed-block-count: ['6'] - x-ms-request-id: [4f75fe10-0001-00a3-6407-fc98b5000000] + x-ms-request-id: [9e6e9e0a-0001-00ff-6301-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -697,10 +697,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['24576'] - x-ms-client-request-id: [cd5cb086-67fa-11e7-86d8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [b6afd852-68f4-11e7-b4b2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -708,14 +708,14 @@ interactions: body: {string: ''} headers: Content-MD5: [+D9wsImRzr8+cBY8FMlO+Q==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB164A32E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:50 GMT'] + ETag: ['"0x8D4CB189B6B73EE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['24576'] x-ms-blob-committed-block-count: ['7'] - x-ms-request-id: [4f75fe1b-0001-00a3-6e07-fc98b5000000] + x-ms-request-id: [9e6e9e2a-0001-00ff-7e01-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -796,10 +796,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['28672'] - x-ms-client-request-id: [cd61bd0c-67fa-11e7-a44a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [b6b5b9fa-68f4-11e7-9073-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -807,14 +807,14 @@ interactions: body: {string: ''} headers: Content-MD5: [Ae7saMeJZjstiugZBmEQbw==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB169AD26"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:50 GMT'] + ETag: ['"0x8D4CB189B72EF61"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28672'] x-ms-blob-committed-block-count: ['8'] - x-ms-request-id: [4f75fe32-0001-00a3-8007-fc98b5000000] + x-ms-request-id: [9e6e9e3e-0001-00ff-1001-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -895,10 +895,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['32768'] - x-ms-client-request-id: [cd66f56c-67fa-11e7-852b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [b6be8a78-68f4-11e7-ae0b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -906,14 +906,14 @@ interactions: body: {string: ''} headers: Content-MD5: [Ry2u9gWJxK/R6QE/Sxj2tw==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB16F7AB0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:50 GMT'] + ETag: ['"0x8D4CB189B7A1CA9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['32768'] x-ms-blob-committed-block-count: ['9'] - x-ms-request-id: [4f75fe41-0001-00a3-0d07-fc98b5000000] + x-ms-request-id: [9e6e9e50-0001-00ff-2101-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -994,10 +994,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['36864'] - x-ms-client-request-id: [cd6d1f9e-67fa-11e7-a3c2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [b6c43228-68f4-11e7-88f7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -1005,14 +1005,14 @@ interactions: body: {string: ''} headers: Content-MD5: [hp+Q7F8VFJkPLplZM/6G6A==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB17520DE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:50 GMT'] + ETag: ['"0x8D4CB189B7F9C08"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['36864'] x-ms-blob-committed-block-count: ['10'] - x-ms-request-id: [4f75fe4e-0001-00a3-1a07-fc98b5000000] + x-ms-request-id: [9e6e9e5f-0001-00ff-3001-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1096,10 +1096,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['40960'] - x-ms-client-request-id: [cd727626-67fa-11e7-a987-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [b6cb3ade-68f4-11e7-94ed-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -1107,14 +1107,14 @@ interactions: body: {string: ''} headers: Content-MD5: [aGZcXDHPBw7xeoX1MrXU2g==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB17AA024"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:50 GMT'] + ETag: ['"0x8D4CB189B86A217"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['40960'] x-ms-blob-committed-block-count: ['11'] - x-ms-request-id: [4f75fe5e-0001-00a3-2807-fc98b5000000] + x-ms-request-id: [9e6e9e70-0001-00ff-3e01-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1195,10 +1195,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['45056'] - x-ms-client-request-id: [cd77e994-67fa-11e7-b42f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [b6d0dfc0-68f4-11e7-9560-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -1206,14 +1206,14 @@ interactions: body: {string: ''} headers: Content-MD5: [9H89ZzT4CfCrRgoTN9Gz5A==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB17FF84B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:29:50 GMT'] + ETag: ['"0x8D4CB189B8C215C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['45056'] x-ms-blob-committed-block-count: ['12'] - x-ms-request-id: [4f75fe6b-0001-00a3-3307-fc98b5000000] + x-ms-request-id: [9e6e9e7c-0001-00ff-4a01-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1294,10 +1294,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['49152'] - x-ms-client-request-id: [cd7d427a-67fa-11e7-9a6b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [b6d6ba8a-68f4-11e7-a146-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:29:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -1305,14 +1305,14 @@ interactions: body: {string: ''} headers: Content-MD5: [t+lXzibWeaCVQA9mazYTag==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB185506E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:03 GMT'] + ETag: ['"0x8D4CB189B923CFD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:29:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['49152'] x-ms-blob-committed-block-count: ['13'] - x-ms-request-id: [4f75fe7f-0001-00a3-4307-fc98b5000000] + x-ms-request-id: [9e6e9e92-0001-00ff-5e01-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1399,10 +1399,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['53248'] - x-ms-client-request-id: [cd830c0c-67fa-11e7-9c19-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [be55b498-68f4-11e7-9cd7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -1410,14 +1410,14 @@ interactions: body: {string: ''} headers: Content-MD5: [eHtWx4C+gKC5NXXzSHV1Rw==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB18AF6C2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:03 GMT'] + ETag: ['"0x8D4CB18A31467C2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['53248'] x-ms-blob-committed-block-count: ['14'] - x-ms-request-id: [4f75fe8a-0001-00a3-4e07-fc98b5000000] + x-ms-request-id: [9e6eb705-0001-00ff-1b01-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1502,10 +1502,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['57344'] - x-ms-client-request-id: [cd884d5c-67fa-11e7-a7b1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [be5e5dba-68f4-11e7-8524-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -1513,14 +1513,14 @@ interactions: body: {string: ''} headers: Content-MD5: [ReobTn5F1r5x9CdPnxbYKg==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB1907600"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:03 GMT'] + ETag: ['"0x8D4CB18A319BFEF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['57344'] x-ms-blob-committed-block-count: ['15'] - x-ms-request-id: [4f75fe98-0001-00a3-5907-fc98b5000000] + x-ms-request-id: [9e6eb71c-0001-00ff-3101-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1601,10 +1601,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['61440'] - x-ms-client-request-id: [cd8df2d4-67fa-11e7-882b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [be664e9e-68f4-11e7-b50b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -1612,14 +1612,14 @@ interactions: body: {string: ''} headers: Content-MD5: [+Fd7XmJYL8ZMI/1JJMhF6g==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB195F542"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:03 GMT'] + ETag: ['"0x8D4CB18A321D7BB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['61440'] x-ms-blob-committed-block-count: ['16'] - x-ms-request-id: [4f75fea4-0001-00a3-6507-fc98b5000000] + x-ms-request-id: [9e6eb739-0001-00ff-4d01-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1700,10 +1700,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['65536'] - x-ms-client-request-id: [cd93510c-67fa-11e7-ad3c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [be6d5da8-68f4-11e7-aca6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -1711,14 +1711,14 @@ interactions: body: {string: ''} headers: Content-MD5: [MTYuI6UV1IeckZZVaiQLrg==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB19B747B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:03 GMT'] + ETag: ['"0x8D4CB18A3295336"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['65536'] x-ms-blob-committed-block-count: ['17'] - x-ms-request-id: [4f75feb3-0001-00a3-7107-fc98b5000000] + x-ms-request-id: [9e6eb74c-0001-00ff-5f01-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1799,10 +1799,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['69632'] - x-ms-client-request-id: [cd98ac88-67fa-11e7-87eb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [be7483f8-68f4-11e7-863d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -1810,14 +1810,14 @@ interactions: body: {string: ''} headers: Content-MD5: [7f20FleUlkVxgoBAEq7X8g==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB1A0A5A0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:03 GMT'] + ETag: ['"0x8D4CB18A330595F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['69632'] x-ms-blob-committed-block-count: ['18'] - x-ms-request-id: [4f75fec7-0001-00a3-0107-fc98b5000000] + x-ms-request-id: [9e6eb77b-0001-00ff-0a01-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1898,10 +1898,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['73728'] - x-ms-client-request-id: [cd9de400-67fa-11e7-ba27-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [be7b9efe-68f4-11e7-994d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -1909,14 +1909,14 @@ interactions: body: {string: ''} headers: Content-MD5: [swUdbHGyKPWwZX6B67Ugig==] - Date: ['Thu, 13 Jul 2017 18:40:53 GMT'] - ETag: ['"0x8D4CA1EB1A5D69F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:03 GMT'] + ETag: ['"0x8D4CB18A3375F8C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['73728'] x-ms-blob-committed-block-count: ['19'] - x-ms-request-id: [4f75fecd-0001-00a3-0607-fc98b5000000] + x-ms-request-id: [9e6eb79b-0001-00ff-2a01-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1997,10 +1997,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['77824'] - x-ms-client-request-id: [cda3eb66-67fa-11e7-a533-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [be827012-68f4-11e7-abad-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -2008,14 +2008,14 @@ interactions: body: {string: ''} headers: Content-MD5: [UyHKeYLHhtD39seidRatJw==] - Date: ['Thu, 13 Jul 2017 18:40:54 GMT'] - ETag: ['"0x8D4CA1EB1ABF239"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:03 GMT'] + ETag: ['"0x8D4CB18A33DC960"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['77824'] x-ms-blob-committed-block-count: ['20'] - x-ms-request-id: [4f75fede-0001-00a3-1507-fc98b5000000] + x-ms-request-id: [9e6eb7b5-0001-00ff-4401-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -2096,10 +2096,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['81920'] - x-ms-client-request-id: [cdabe8b6-67fa-11e7-898a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [be882c0a-68f4-11e7-9b5b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -2107,14 +2107,14 @@ interactions: body: {string: ''} headers: Content-MD5: [BR7CVAd6zj1Q8PCVHvlsUw==] - Date: ['Thu, 13 Jul 2017 18:40:54 GMT'] - ETag: ['"0x8D4CA1EB1B3BBD0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:03 GMT'] + ETag: ['"0x8D4CB18A3436FB8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['81920'] x-ms-blob-committed-block-count: ['21'] - x-ms-request-id: [4f75fee7-0001-00a3-1e07-fc98b5000000] + x-ms-request-id: [9e6eb7d5-0001-00ff-6101-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -2195,10 +2195,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['86016'] - x-ms-client-request-id: [cdb18968-67fa-11e7-9ecb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [be8df0c2-68f4-11e7-a297-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -2206,14 +2206,14 @@ interactions: body: {string: ''} headers: Content-MD5: [JeQNDFJ9vwUPJiaSguZTmg==] - Date: ['Thu, 13 Jul 2017 18:40:54 GMT'] - ETag: ['"0x8D4CA1EB1B98938"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:03 GMT'] + ETag: ['"0x8D4CB18A3498B59"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['86016'] x-ms-blob-committed-block-count: ['22'] - x-ms-request-id: [4f75fef1-0001-00a3-2607-fc98b5000000] + x-ms-request-id: [9e6eb7ee-0001-00ff-7801-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -2262,10 +2262,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['2269'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-condition-appendpos: ['90112'] - x-ms-client-request-id: [cdbacdcc-67fa-11e7-af22-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + x-ms-client-request-id: [be93da82-68f4-11e7-9640-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb92d17b5/blobb92d17b5?comp=appendblock @@ -2273,14 +2273,14 @@ interactions: body: {string: ''} headers: Content-MD5: [CcgEHMokmsIri1BPY5xfYw==] - Date: ['Thu, 13 Jul 2017 18:40:54 GMT'] - ETag: ['"0x8D4CA1EB1C2B29F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:03 GMT'] + ETag: ['"0x8D4CB18A34F58D1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['90112'] x-ms-blob-committed-block-count: ['23'] - x-ms-request-id: [4f75ff0a-0001-00a3-3b07-fc98b5000000] + x-ms-request-id: [9e6eb80d-0001-00ff-1401-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -2288,9 +2288,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cdc40c70-67fa-11e7-ae55-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [be99df5e-68f4-11e7-a0f9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:03 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -4070,16 +4070,16 @@ interactions: Content-Length: ['92381'] Content-Range: [bytes 0-92380/92381] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:54 GMT'] - ETag: ['"0x8D4CA1EB1C2B29F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:04 GMT'] + ETag: ['"0x8D4CB18A34F58D1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['23'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [4f75ff1d-0001-00a3-4c07-fc98b5000000] + x-ms-request-id: [9e6eb821-0001-00ff-2801-fd694c000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_text_with_encoding.yaml b/tests/recordings/test_append_blob.test_append_blob_from_text_with_encoding.yaml index 0eb6caa5..cde9f20a 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_text_with_encoding.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_text_with_encoding.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [ce455f98-67fa-11e7-8533-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:55 GMT'] + x-ms-client-request-id: [bf181bda-68f4-11e7-9475-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:04 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera1e01751/bloba1e01751 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:55 GMT'] - ETag: ['"0x8D4CA1EB2764482"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:04 GMT'] + ETag: ['"0x8D4CB18A3E26538"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f60305f5-0001-0114-2607-fcd1e5000000] + x-ms-request-id: [6a83080e-0001-0104-3d01-fde703000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['36'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ce7760b8-67fa-11e7-8dd7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bf2ea63e-68f4-11e7-940d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:04 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera1e01751/bloba1e01751?comp=appendblock @@ -39,14 +39,14 @@ interactions: body: {string: ''} headers: Content-MD5: [O7c5HRnUhbM5yD4T1wnm/w==] - Date: ['Thu, 13 Jul 2017 18:40:55 GMT'] - ETag: ['"0x8D4CA1EB2811BF0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:04 GMT'] + ETag: ['"0x8D4CB18A3EACB37"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [f6030648-0001-0114-6b07-fcd1e5000000] + x-ms-request-id: [6a830825-0001-0104-5301-fde703000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -54,9 +54,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ce7ee02c-67fa-11e7-bd14-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bf34bb6e-68f4-11e7-82ba-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:04 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -70,16 +70,16 @@ interactions: Content-Length: ['36'] Content-Range: [bytes 0-35/36] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:55 GMT'] - ETag: ['"0x8D4CA1EB2811BF0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:04 GMT'] + ETag: ['"0x8D4CB18A3EACB37"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['1'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f603066b-0001-0114-0c07-fcd1e5000000] + x-ms-request-id: [6a830835-0001-0104-6001-fde703000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_blob_from_text_with_encoding_and_progress.yaml b/tests/recordings/test_append_blob.test_append_blob_from_text_with_encoding_and_progress.yaml index 51bb90d1..df32f3f6 100644 --- a/tests/recordings/test_append_blob.test_append_blob_from_text_with_encoding_and_progress.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_from_text_with_encoding_and_progress.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [ceaf56c6-67fa-11e7-87d6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:56 GMT'] + x-ms-client-request-id: [bf687268-68f4-11e7-b348-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf5ef1cb7/blobf5ef1cb7 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:55 GMT'] - ETag: ['"0x8D4CA1EB2C5F981"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:05 GMT'] + ETag: ['"0x8D4CB18A4332C42"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [744898c6-0001-0060-6007-fc11f6000000] + x-ms-request-id: [ccd373c1-0001-0128-1c01-fd653e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['36'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cec398e8-67fa-11e7-b7b1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bf7d6fee-68f4-11e7-9bd2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf5ef1cb7/blobf5ef1cb7?comp=appendblock @@ -39,14 +39,14 @@ interactions: body: {string: ''} headers: Content-MD5: [O7c5HRnUhbM5yD4T1wnm/w==] - Date: ['Thu, 13 Jul 2017 18:40:55 GMT'] - ETag: ['"0x8D4CA1EB2CC151C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:05 GMT'] + ETag: ['"0x8D4CB18A43947E1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [744898d5-0001-0060-6c07-fc11f6000000] + x-ms-request-id: [ccd373d8-0001-0128-3101-fd653e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_append_blob.test_append_blob_with_md5.yaml b/tests/recordings/test_append_blob.test_append_blob_with_md5.yaml index bdbf995f..e6aedc3d 100644 --- a/tests/recordings/test_append_blob.test_append_blob_with_md5.yaml +++ b/tests/recordings/test_append_blob.test_append_blob_with_md5.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [cef68be8-67fa-11e7-8c12-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:56 GMT'] + x-ms-client-request-id: [bfaff362-68f4-11e7-b710-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6f1410d9/blob6f1410d9 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:56 GMT'] - ETag: ['"0x8D4CA1EB30F92EA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:05 GMT'] + ETag: ['"0x8D4CB18A4799114"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d43efa7a-0001-0038-0107-fc158d000000] + x-ms-request-id: [e3575c01-0001-00bf-3d01-fd40a2000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: Connection: [keep-alive] Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cf0e0590-67fa-11e7-a0ea-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bfc3b508-68f4-11e7-a4f1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6f1410d9/blob6f1410d9?comp=appendblock @@ -39,14 +39,14 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:40:56 GMT'] - ETag: ['"0x8D4CA1EB316990F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:05 GMT'] + ETag: ['"0x8D4CB18A48504E8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [d43efa93-0001-0038-1607-fc158d000000] + x-ms-request-id: [e3575c06-0001-00bf-4001-fd40a2000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_append_blob.test_append_block.yaml b/tests/recordings/test_append_blob.test_append_block.yaml index 9c716cf3..da3c7f9d 100644 --- a/tests/recordings/test_append_blob.test_append_block.yaml +++ b/tests/recordings/test_append_blob.test_append_block.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [cf3ecb94-67fa-11e7-853b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:57 GMT'] + x-ms-client-request-id: [bff8211c-68f4-11e7-9acd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:06 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf23c0dc5/blobf23c0dc5 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:57 GMT'] - ETag: ['"0x8D4CA1EB3555B0B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:14 GMT'] + ETag: ['"0x8D4CB18A4C3A01F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8431ba33-0001-00d8-3007-fcf305000000] + x-ms-request-id: [99de88f0-0001-0007-0901-fda251000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cf52c718-67fa-11e7-9d4c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c4ae3d5e-68f4-11e7-8363-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:13 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf23c0dc5/blobf23c0dc5?comp=appendblock @@ -38,14 +38,14 @@ interactions: body: {string: ''} headers: Content-MD5: [TjjhPkKeLS6Els52i6m9Bg==] - Date: ['Thu, 13 Jul 2017 18:40:57 GMT'] - ETag: ['"0x8D4CA1EB35B9DBD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:14 GMT'] + ETag: ['"0x8D4CB18A969E8C6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:14 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [8431ba39-0001-00d8-3507-fcf305000000] + x-ms-request-id: [99de9276-0001-0007-6801-fda251000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -54,9 +54,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cf5a1a98-67fa-11e7-8ab1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c4b67534-68f4-11e7-92f5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:13 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf23c0dc5/blobf23c0dc5?comp=appendblock @@ -64,14 +64,14 @@ interactions: body: {string: ''} headers: Content-MD5: [ZOnmAD+J5F2p66g8NFSefA==] - Date: ['Thu, 13 Jul 2017 18:40:57 GMT'] - ETag: ['"0x8D4CA1EB3622E97"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:15 GMT'] + ETag: ['"0x8D4CB18A975357E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:14 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['7'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [8431ba45-0001-00d8-3f07-fcf305000000] + x-ms-request-id: [99de9294-0001-0007-0101-fda251000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -80,9 +80,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cf5f9e98-67fa-11e7-8e8f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c4c08e64-68f4-11e7-8617-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:14 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf23c0dc5/blobf23c0dc5?comp=appendblock @@ -90,14 +90,14 @@ interactions: body: {string: ''} headers: Content-MD5: [giBgEwOK96+T6eqweyrlNg==] - Date: ['Thu, 13 Jul 2017 18:40:57 GMT'] - ETag: ['"0x8D4CA1EB367D4F1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:15 GMT'] + ETag: ['"0x8D4CB18A987131D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:14 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['14'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [8431ba4b-0001-00d8-4507-fcf305000000] + x-ms-request-id: [99de92a7-0001-0007-1401-fda251000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -106,9 +106,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cf6546d4-67fa-11e7-a1f6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c4d130ac-68f4-11e7-9532-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:14 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf23c0dc5/blobf23c0dc5?comp=appendblock @@ -116,14 +116,14 @@ interactions: body: {string: ''} headers: Content-MD5: [FDhv5/Vy34Z9KKvEnjH2lQ==] - Date: ['Thu, 13 Jul 2017 18:40:57 GMT'] - ETag: ['"0x8D4CA1EB36DC96F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:15 GMT'] + ETag: ['"0x8D4CB18A98C6B4F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:15 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['21'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [8431ba54-0001-00d8-4d07-fcf305000000] + x-ms-request-id: [99de92c8-0001-0007-2c01-fda251000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -132,9 +132,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cf6b2b3a-67fa-11e7-ad1e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c4d6d638-68f4-11e7-b58a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:14 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf23c0dc5/blobf23c0dc5?comp=appendblock @@ -142,14 +142,14 @@ interactions: body: {string: ''} headers: Content-MD5: [jkC3Z8KTocewrRQF+tkxeA==] - Date: ['Thu, 13 Jul 2017 18:40:57 GMT'] - ETag: ['"0x8D4CA1EB3732196"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:15 GMT'] + ETag: ['"0x8D4CB18A991EAA5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:15 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [8431ba5c-0001-00d8-5407-fcf305000000] + x-ms-request-id: [99de92d1-0001-0007-3401-fda251000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -157,9 +157,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cf704c0a-67fa-11e7-9977-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c4dbeaec-68f4-11e7-be55-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:14 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -171,16 +171,16 @@ interactions: Content-Length: ['35'] Content-Range: [bytes 0-34/35] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:57 GMT'] - ETag: ['"0x8D4CA1EB3732196"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:15 GMT'] + ETag: ['"0x8D4CB18A991EAA5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:15 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['5'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [8431ba6c-0001-00d8-6207-fcf305000000] + x-ms-request-id: [99de92df-0001-0007-4001-fda251000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_append_blob.test_append_block_unicode.yaml b/tests/recordings/test_append_blob.test_append_block_unicode.yaml index b4415067..985326e4 100644 --- a/tests/recordings/test_append_blob.test_append_block_unicode.yaml +++ b/tests/recordings/test_append_blob.test_append_block_unicode.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [cfa6d49e-67fa-11e7-8609-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:58 GMT'] + x-ms-client-request-id: [c521a38c-68f4-11e7-83e7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:14 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6f45110b/blob6f45110b response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:57 GMT'] - ETag: ['"0x8D4CA1EB3BE41E5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:15 GMT'] + ETag: ['"0x8D4CB18A9EB3EAE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:15 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [324789fd-0001-0088-7d07-fcec0d000000] + x-ms-request-id: [705ec7ea-0001-007b-7401-fd3f64000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_append_blob.test_append_block_with_md5.yaml b/tests/recordings/test_append_blob.test_append_block_with_md5.yaml index c751635b..16e77bcc 100644 --- a/tests/recordings/test_append_blob.test_append_block_with_md5.yaml +++ b/tests/recordings/test_append_blob.test_append_block_with_md5.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [cfe631fe-67fa-11e7-8eaf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:58 GMT'] + x-ms-client-request-id: [c55e8a1a-68f4-11e7-b616-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:15 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer80a61145/blob80a61145 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:57 GMT'] - ETag: ['"0x8D4CA1EB3FE3CA6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:15 GMT'] + ETag: ['"0x8D4CB18AA2964A5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:16 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e0064ee0-0001-00c4-2a07-fc2b12000000] + x-ms-request-id: [b23e2d9c-0001-0063-6f01-fd12f1000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: Connection: [keep-alive] Content-Length: ['5'] Content-MD5: [FFEfL1VkZQ0SnKfKvDMyeA==] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [cffbb466-67fa-11e7-bc73-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c573ec02-68f4-11e7-a3b3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:15 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer80a61145/blob80a61145?comp=appendblock @@ -39,14 +39,14 @@ interactions: body: {string: ''} headers: Content-MD5: [FFEfL1VkZQ0SnKfKvDMyeA==] - Date: ['Thu, 13 Jul 2017 18:40:57 GMT'] - ETag: ['"0x8D4CA1EB4045834"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:15 GMT'] + ETag: ['"0x8D4CB18AA312E43"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:16 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [e0064eef-0001-00c4-3807-fc2b12000000] + x-ms-request-id: [b23e2db4-0001-0063-0301-fd12f1000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_append_blob.test_create_blob.yaml b/tests/recordings/test_append_blob.test_create_blob.yaml index b9b31dc1..6b3d0aac 100644 --- a/tests/recordings/test_append_blob.test_create_blob.yaml +++ b/tests/recordings/test_append_blob.test_create_blob.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [d02a6c02-67fa-11e7-aef2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:59 GMT'] + x-ms-client-request-id: [c5a60c1e-68f4-11e7-adf0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:15 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere44d0d55/blobe44d0d55 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:57 GMT'] - ETag: ['"0x8D4CA1EB44081AC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:15 GMT'] + ETag: ['"0x8D4CB18AA6FA25F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:16 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e47b6430-0001-00f3-1907-fc87bd000000] + x-ms-request-id: [c04b5ea9-0001-0036-5601-fdf986000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -27,9 +27,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d03db8c0-67fa-11e7-a22e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c5bbcb1c-68f4-11e7-840f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:15 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainere44d0d55/blobe44d0d55 @@ -39,16 +39,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['0'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:57 GMT'] - ETag: ['"0x8D4CA1EB44081AC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:15 GMT'] + ETag: ['"0x8D4CB18AA6FA25F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:16 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['0'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e47b6440-0001-00f3-2707-fc87bd000000] + x-ms-request-id: [c04b5ed0-0001-0036-7601-fdf986000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -56,9 +56,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d042c586-67fa-11e7-b2c1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c5c0a47a-68f4-11e7-be92-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:15 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainere44d0d55/blobe44d0d55 @@ -68,16 +68,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['0'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:57 GMT'] - ETag: ['"0x8D4CA1EB44081AC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:15 GMT'] + ETag: ['"0x8D4CB18AA6FA25F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:16 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['0'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e47b6453-0001-00f3-3907-fc87bd000000] + x-ms-request-id: [c04b5ef6-0001-0036-1b01-fdf986000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_append_blob.test_create_blob_with_lease_id.yaml b/tests/recordings/test_append_blob.test_create_blob_with_lease_id.yaml index 86510078..457353a8 100644 --- a/tests/recordings/test_append_blob.test_create_blob_with_lease_id.yaml +++ b/tests/recordings/test_append_blob.test_create_blob_with_lease_id.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [d072ea5e-67fa-11e7-b541-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:59 GMT'] + x-ms-client-request-id: [c5f8d25a-68f4-11e7-bb79-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:16 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerca1d1305/blobca1d1305 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:59 GMT'] - ETag: ['"0x8D4CA1EB48A6950"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:16 GMT'] + ETag: ['"0x8D4CB18AAC23E96"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:17 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [62dc217d-0001-0053-2907-fc48db000000] + x-ms-request-id: [2bc36995-0001-00d2-2901-fdea8c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d0881f98-67fa-11e7-a7b2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c60c2d78-68f4-11e7-9476-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:16 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -39,13 +39,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:59 GMT'] - ETag: ['"0x8D4CA1EB48A6950"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:16 GMT'] + ETag: ['"0x8D4CB18AAC23E96"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:17 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [6c398b81-0c79-45cf-bebe-35da4ad89916] - x-ms-request-id: [62dc218f-0001-0053-3707-fc48db000000] + x-ms-lease-id: [c7669d05-345b-4ef3-b8e9-c8bdab1ab5ef] + x-ms-request-id: [2bc369a4-0001-00d2-3601-fdea8c000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -53,23 +53,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [d08e8a52-67fa-11e7-8aec-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:59 GMT'] - x-ms-lease-id: [6c398b81-0c79-45cf-bebe-35da4ad89916] + x-ms-client-request-id: [c6114ab0-68f4-11e7-b76a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:16 GMT'] + x-ms-lease-id: [c7669d05-345b-4ef3-b8e9-c8bdab1ab5ef] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerca1d1305/blobca1d1305 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:59 GMT'] - ETag: ['"0x8D4CA1EB497B218"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:16 GMT'] + ETag: ['"0x8D4CB18AACCA0A9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:17 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [62dc219e-0001-0053-4407-fc48db000000] + x-ms-request-id: [2bc369b2-0001-00d2-4101-fdea8c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -77,9 +77,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d0953e88-67fa-11e7-b650-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:40:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c6177d5e-68f4-11e7-90ff-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:16 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerca1d1305/blobca1d1305 @@ -89,9 +89,9 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['0'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:40:59 GMT'] - ETag: ['"0x8D4CA1EB497B218"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:16 GMT'] + ETag: ['"0x8D4CB18AACCA0A9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:17 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['0'] @@ -99,7 +99,7 @@ interactions: x-ms-lease-duration: [infinite] x-ms-lease-state: [leased] x-ms-lease-status: [locked] - x-ms-request-id: [62dc21a3-0001-0053-4807-fc48db000000] + x-ms-request-id: [2bc369bd-0001-00d2-4b01-fdea8c000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_append_blob.test_create_blob_with_metadata.yaml b/tests/recordings/test_append_blob.test_create_blob_with_metadata.yaml index 5af1db3c..2b16df3a 100644 --- a/tests/recordings/test_append_blob.test_create_blob_with_metadata.yaml +++ b/tests/recordings/test_append_blob.test_create_blob_with_metadata.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [d0c7d866-67fa-11e7-8e31-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:00 GMT'] + x-ms-client-request-id: [c6477522-68f4-11e7-bd93-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:16 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -16,12 +16,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:59 GMT'] - ETag: ['"0x8D4CA1EB4E0880E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:17 GMT'] + ETag: ['"0x8D4CB18AB11CCC8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:17 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1d0183b3-0001-00cb-3707-fcc6e4000000] + x-ms-request-id: [b3645c82-0001-006a-6b01-fd087f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,24 +29,24 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d0ddc66c-67fa-11e7-80cb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c65c4678-68f4-11e7-a1ca-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:16 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerca521310/blobca521310?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:40:59 GMT'] - ETag: ['"0x8D4CA1EB4E0880E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:40:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:17 GMT'] + ETag: ['"0x8D4CB18AB11CCC8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:17 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [1d0183be-0001-00cb-4107-fcc6e4000000] + x-ms-request-id: [b3645c96-0001-006a-7801-fd087f000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_match.yaml b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_match.yaml index dbdf8ac9..b225da01 100644 --- a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d102c930-67fa-11e7-9412-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c68073c2-68f4-11e7-b3dd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:16 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd31a180d?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:00 GMT'] - ETag: ['"0x8D4CA1EB575B77D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:15 GMT'] + ETag: ['"0x8D4CB18AAA150AB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:16 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [61d6d064-0001-0136-4d07-fcbfd3000000] + x-ms-request-id: [4542ba69-0001-004d-0301-fd9236000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [d1191098-67fa-11e7-bd27-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:00 GMT'] + x-ms-client-request-id: [c6949d0c-68f4-11e7-8c84-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:17 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:00 GMT'] - ETag: ['"0x8D4CA1EB5319CD9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:16 GMT'] + ETag: ['"0x8D4CB18AB5E9B72"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [35a34c92-0001-00b7-7107-fc5bd1000000] + x-ms-request-id: [9c38a3a8-0001-0052-5701-fd4926000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -49,9 +49,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d12f0dec-67fa-11e7-b6e0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c6a9210a-68f4-11e7-a5f2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:17 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1 @@ -61,16 +61,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['0'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:00 GMT'] - ETag: ['"0x8D4CA1EB5319CD9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:16 GMT'] + ETag: ['"0x8D4CB18AB5E9B72"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['0'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [35a34ca5-0001-00b7-8007-fc5bd1000000] + x-ms-request-id: [9c38a3ba-0001-0052-6701-fd4926000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -79,10 +79,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Match: ['"0x8D4CA1EB5319CD9"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d1342778-67fa-11e7-833a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:00 GMT'] + If-Match: ['"0x8D4CB18AB5E9B72"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c6aea102-68f4-11e7-a305-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:17 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1?comp=appendblock @@ -90,14 +90,14 @@ interactions: body: {string: ''} headers: Content-MD5: [TjjhPkKeLS6Els52i6m9Bg==] - Date: ['Thu, 13 Jul 2017 18:41:00 GMT'] - ETag: ['"0x8D4CA1EB53C9B66"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:17 GMT'] + ETag: ['"0x8D4CB18AB6A365A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [35a34cb2-0001-00b7-0907-fc5bd1000000] + x-ms-request-id: [9c38a3cb-0001-0052-7601-fd4926000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -105,9 +105,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d139e8ca-67fa-11e7-ac20-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c6b43bb4-68f4-11e7-aec2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:17 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1 @@ -117,16 +117,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['7'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:00 GMT'] - ETag: ['"0x8D4CA1EB53C9B66"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:17 GMT'] + ETag: ['"0x8D4CB18AB6A365A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['1'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [35a34cbd-0001-00b7-1407-fc5bd1000000] + x-ms-request-id: [9c38a3da-0001-0052-0301-fd4926000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -135,10 +135,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Match: ['"0x8D4CA1EB53C9B66"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d13ede34-67fa-11e7-a499-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:00 GMT'] + If-Match: ['"0x8D4CB18AB6A365A"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c6b987a2-68f4-11e7-9ac6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:17 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1?comp=appendblock @@ -146,14 +146,14 @@ interactions: body: {string: ''} headers: Content-MD5: [ZOnmAD+J5F2p66g8NFSefA==] - Date: ['Thu, 13 Jul 2017 18:41:00 GMT'] - ETag: ['"0x8D4CA1EB546FD70"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:17 GMT'] + ETag: ['"0x8D4CB18AB74E6C1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['7'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [35a34ccd-0001-00b7-2307-fc5bd1000000] + x-ms-request-id: [9c38a3eb-0001-0052-1101-fd4926000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -161,9 +161,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d1445094-67fa-11e7-bcbe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c6bf3436-68f4-11e7-b062-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:17 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1 @@ -173,16 +173,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['14'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:00 GMT'] - ETag: ['"0x8D4CA1EB546FD70"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:17 GMT'] + ETag: ['"0x8D4CB18AB74E6C1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['2'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [35a34ce1-0001-00b7-3207-fc5bd1000000] + x-ms-request-id: [9c38a3f8-0001-0052-1d01-fd4926000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -191,10 +191,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Match: ['"0x8D4CA1EB546FD70"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d14a0b68-67fa-11e7-83b8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:00 GMT'] + If-Match: ['"0x8D4CB18AB74E6C1"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c6c43cc6-68f4-11e7-8ec8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:17 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1?comp=appendblock @@ -202,14 +202,14 @@ interactions: body: {string: ''} headers: Content-MD5: [giBgEwOK96+T6eqweyrlNg==] - Date: ['Thu, 13 Jul 2017 18:41:00 GMT'] - ETag: ['"0x8D4CA1EB5524A19"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:17 GMT'] + ETag: ['"0x8D4CB18AB7F6FF8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['14'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [35a34cf0-0001-00b7-4007-fc5bd1000000] + x-ms-request-id: [9c38a401-0001-0052-2601-fd4926000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -217,9 +217,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d14fa48a-67fa-11e7-a58d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c6c9e638-68f4-11e7-aa0b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:17 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1 @@ -229,16 +229,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['21'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:00 GMT'] - ETag: ['"0x8D4CA1EB5524A19"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:17 GMT'] + ETag: ['"0x8D4CB18AB7F6FF8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['3'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [35a34cff-0001-00b7-4c07-fc5bd1000000] + x-ms-request-id: [9c38a41b-0001-0052-3b01-fd4926000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -247,10 +247,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Match: ['"0x8D4CA1EB5524A19"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d1550e8c-67fa-11e7-9eb2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:00 GMT'] + If-Match: ['"0x8D4CB18AB7F6FF8"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c6cf4fc6-68f4-11e7-b9b6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:17 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1?comp=appendblock @@ -258,14 +258,14 @@ interactions: body: {string: ''} headers: Content-MD5: [FDhv5/Vy34Z9KKvEnjH2lQ==] - Date: ['Thu, 13 Jul 2017 18:41:00 GMT'] - ETag: ['"0x8D4CA1EB55D4899"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:17 GMT'] + ETag: ['"0x8D4CB18AB8AE3C7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['21'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [35a34d0e-0001-00b7-5a07-fc5bd1000000] + x-ms-request-id: [9c38a425-0001-0052-4401-fd4926000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -273,9 +273,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d15ab6f4-67fa-11e7-82ef-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c6d71ab0-68f4-11e7-8388-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:17 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1 @@ -285,16 +285,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['28'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:00 GMT'] - ETag: ['"0x8D4CA1EB55D4899"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:17 GMT'] + ETag: ['"0x8D4CB18AB8AE3C7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['4'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [35a34d22-0001-00b7-6a07-fc5bd1000000] + x-ms-request-id: [9c38a437-0001-0052-5401-fd4926000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -303,10 +303,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Match: ['"0x8D4CA1EB55D4899"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d1608a34-67fa-11e7-ba8c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:01 GMT'] + If-Match: ['"0x8D4CB18AB8AE3C7"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c6dcc28a-68f4-11e7-95de-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:17 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1?comp=appendblock @@ -314,14 +314,14 @@ interactions: body: {string: ''} headers: Content-MD5: [jkC3Z8KTocewrRQF+tkxeA==] - Date: ['Thu, 13 Jul 2017 18:41:00 GMT'] - ETag: ['"0x8D4CA1EB568E39C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:17 GMT'] + ETag: ['"0x8D4CB18AB982CAD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [35a34d2f-0001-00b7-7507-fc5bd1000000] + x-ms-request-id: [9c38a448-0001-0052-6401-fd4926000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -329,9 +329,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d1665cd4-67fa-11e7-9eb1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c6e3489e-68f4-11e7-8c0d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:17 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -343,16 +343,16 @@ interactions: Content-Length: ['35'] Content-Range: [bytes 0-34/35] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:00 GMT'] - ETag: ['"0x8D4CA1EB568E39C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:16 GMT'] + ETag: ['"0x8D4CB18AB982CAD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['5'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [61d6d163-0001-0136-3507-fcbfd3000000] + x-ms-request-id: [4542baf5-0001-004d-7301-fd9236000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_match_fail.yaml index fa7e7ab9..4c0d9679 100644 --- a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d18d47c2-67fa-11e7-965e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c714f722-68f4-11e7-ab54-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:17 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer513e1a08?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:01 GMT'] - ETag: ['"0x8D4CA1EB5AEDD31"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:19 GMT'] + ETag: ['"0x8D4CB18AC51EC4F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:19 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [69da8258-0001-0122-5707-fc7cb7000000] + x-ms-request-id: [d4c7256f-0001-00ac-6f01-fd7543000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [d1a15686-67fa-11e7-ab8b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:01 GMT'] + x-ms-client-request-id: [c72963f6-68f4-11e7-a0da-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:18 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer513e1a08/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:00 GMT'] - ETag: ['"0x8D4CA1EB5B87153"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:18 GMT'] + ETag: ['"0x8D4CB18ABF4B5AF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:19 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [70781a25-0001-0003-7407-fc57d3000000] + x-ms-request-id: [b0c0604c-0001-00c6-3801-fd29e8000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,22 +51,22 @@ interactions: Connection: [keep-alive] Content-Length: ['7'] If-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d1b5bee6-67fa-11e7-8c76-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c73f3280-68f4-11e7-bbe9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:18 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer513e1a08/blob1?comp=appendblock response: body: {string: "\uFEFFOutOfRangeInputOne\ - \ of the request inputs is out of range.\nRequestId:70781a3d-0001-0003-0a07-fc57d3000000\n\ - Time:2017-07-13T18:41:02.5198881Z"} + \ of the request inputs is out of range.\nRequestId:b0c06064-0001-00c6-4d01-fd29e8000000\n\ + Time:2017-07-15T00:30:19.6451857Z"} headers: Content-Length: ['226'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [70781a3d-0001-0003-0a07-fc57d3000000] + x-ms-request-id: [b0c06064-0001-00c6-4d01-fd29e8000000] x-ms-version: ['2017-04-17'] status: {code: 400, message: One of the request inputs is out of range.} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_modified.yaml index 7a99db68..f7d38f45 100644 --- a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d29fcb1c-67fa-11e7-b5c8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c7b2ede2-68f4-11e7-abcc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:18 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1dd11941?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:02 GMT'] - ETag: ['"0x8D4CA1EB6B2B9BD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:19 GMT'] + ETag: ['"0x8D4CB18AC5DBB44"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:19 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [304d1532-0001-008f-6907-fc1a88000000] + x-ms-request-id: [a1646d47-0001-0094-6d01-fd341a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [d2b440b0-67fa-11e7-8d7a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:03 GMT'] + x-ms-client-request-id: [c7c8a97a-68f4-11e7-82ab-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:19 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1dd11941/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:03 GMT'] - ETag: ['"0x8D4CA1EB6CB4B61"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:19 GMT'] + ETag: ['"0x8D4CB18AC930ED4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [96aac878-0001-0011-4a07-fc63cf000000] + x-ms-request-id: [11ab1c52-0001-0125-5601-fd8a32000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,10 +50,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:03 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d2c87dbe-67fa-11e7-92d8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:03 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c7ddd6b0-68f4-11e7-a7d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:19 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1dd11941/blob1?comp=appendblock @@ -61,14 +61,14 @@ interactions: body: {string: ''} headers: Content-MD5: [TjjhPkKeLS6Els52i6m9Bg==] - Date: ['Thu, 13 Jul 2017 18:41:03 GMT'] - ETag: ['"0x8D4CA1EB6D118CE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:19 GMT'] + ETag: ['"0x8D4CB18AC9B4DBC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [96aac87f-0001-0011-5007-fc63cf000000] + x-ms-request-id: [11ab1c62-0001-0125-6501-fd8a32000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -77,10 +77,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:03 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d2ce3e66-67fa-11e7-b512-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:03 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c7e6b0c8-68f4-11e7-8bc0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:19 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1dd11941/blob1?comp=appendblock @@ -88,14 +88,14 @@ interactions: body: {string: ''} headers: Content-MD5: [ZOnmAD+J5F2p66g8NFSefA==] - Date: ['Thu, 13 Jul 2017 18:41:03 GMT'] - ETag: ['"0x8D4CA1EB6D6980C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:19 GMT'] + ETag: ['"0x8D4CB18ACA38CA3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['7'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [96aac88e-0001-0011-5b07-fc63cf000000] + x-ms-request-id: [11ab1c87-0001-0125-0101-fd8a32000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -104,10 +104,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:03 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d2d69c50-67fa-11e7-acf4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:03 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c7f054d4-68f4-11e7-81f0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:19 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1dd11941/blob1?comp=appendblock @@ -115,14 +115,14 @@ interactions: body: {string: ''} headers: Content-MD5: [giBgEwOK96+T6eqweyrlNg==] - Date: ['Thu, 13 Jul 2017 18:41:03 GMT'] - ETag: ['"0x8D4CA1EB6DED6ED"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:19 GMT'] + ETag: ['"0x8D4CB18ACABA477"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['14'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [96aac896-0001-0011-6307-fc63cf000000] + x-ms-request-id: [11ab1c9f-0001-0125-1601-fd8a32000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -131,10 +131,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:03 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d2de5382-67fa-11e7-9865-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:03 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c7f5f38a-68f4-11e7-9934-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:19 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1dd11941/blob1?comp=appendblock @@ -142,14 +142,14 @@ interactions: body: {string: ''} headers: Content-MD5: [FDhv5/Vy34Z9KKvEnjH2lQ==] - Date: ['Thu, 13 Jul 2017 18:41:03 GMT'] - ETag: ['"0x8D4CA1EB6E67969"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:19 GMT'] + ETag: ['"0x8D4CB18ACB14ACE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['21'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [96aac8a5-0001-0011-6f07-fc63cf000000] + x-ms-request-id: [11ab1cb9-0001-0125-2f01-fd8a32000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -158,10 +158,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:03 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d2e3b20a-67fa-11e7-b9a3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:03 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c7fb4452-68f4-11e7-a877-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:19 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1dd11941/blob1?comp=appendblock @@ -169,14 +169,14 @@ interactions: body: {string: ''} headers: Content-MD5: [jkC3Z8KTocewrRQF+tkxeA==] - Date: ['Thu, 13 Jul 2017 18:41:03 GMT'] - ETag: ['"0x8D4CA1EB6EC1FC2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:19 GMT'] + ETag: ['"0x8D4CB18ACB6CA17"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [96aac8aa-0001-0011-7407-fc63cf000000] + x-ms-request-id: [11ab1cce-0001-0125-4401-fd8a32000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -184,9 +184,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d2e95980-67fa-11e7-b15c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c801007a-68f4-11e7-aa10-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:19 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -198,16 +198,16 @@ interactions: Content-Length: ['35'] Content-Range: [bytes 0-34/35] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:03 GMT'] - ETag: ['"0x8D4CA1EB6EC1FC2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:19 GMT'] + ETag: ['"0x8D4CB18ACB6CA17"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['5'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [304d1591-0001-008f-3b07-fc1a88000000] + x-ms-request-id: [a1646de8-0001-0094-7801-fd341a000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_modified_fail.yaml index 60980aae..3f57ca86 100644 --- a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d30a7f52-67fa-11e7-9863-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c824a358-68f4-11e7-9417-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:19 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera1ea1b3c?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:02 GMT'] - ETag: ['"0x8D4CA1EB6EADCC7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:20 GMT'] + ETag: ['"0x8D4CB18ACDE2DF0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78abaa1-0001-0017-4107-fc94b7000000] + x-ms-request-id: [0be12d0e-0001-007c-5501-fdc9e1000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [d325a1f6-67fa-11e7-a045-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:04 GMT'] + x-ms-client-request-id: [c83b5182-68f4-11e7-b763-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:19 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera1ea1b3c/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:03 GMT'] - ETag: ['"0x8D4CA1EB73DF802"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:19 GMT'] + ETag: ['"0x8D4CB18AD076A01"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [410d7bdf-0001-00c5-0e07-fc2aef000000] + x-ms-request-id: [e50a2b61-0001-0045-1501-fd8945000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,23 +50,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:04 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d33b8b62-67fa-11e7-b659-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:04 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:45:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c851ea50-68f4-11e7-b110-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera1ea1b3c/blob1?comp=appendblock response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:410d7bf1-0001-00c5-1b07-fc2aef000000\n\ - Time:2017-07-13T18:41:04.1600684Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:e50a2b75-0001-0045-2701-fd8945000000\n\ + Time:2017-07-15T00:30:20.9276182Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:19 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [410d7bf1-0001-00c5-1b07-fc2aef000000] + x-ms-request-id: [e50a2b75-0001-0045-2701-fd8945000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_none_match.yaml b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_none_match.yaml index d388faf2..fac020a4 100644 --- a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_none_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_none_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d3589cf0-67fa-11e7-a225-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c86fdd3a-68f4-11e7-a50b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer51c91a1c?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:04 GMT'] - ETag: ['"0x8D4CA1EB77A6FF2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:19 GMT'] + ETag: ['"0x8D4CB18ACA7FF57"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d2ca7513-0001-0090-4d07-fcc198000000] + x-ms-request-id: [9722ebcb-0001-0028-6b01-fd236b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [d36dbff4-67fa-11e7-babf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:04 GMT'] + x-ms-client-request-id: [c8924cee-68f4-11e7-9cb4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer51c91a1c/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:04 GMT'] - ETag: ['"0x8D4CA1EB78631AD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:20 GMT'] + ETag: ['"0x8D4CB18AD5C9EA9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [90d5f690-0001-013d-1a07-fca7a7000000] + x-ms-request-id: [ada622cf-0001-0131-3601-fd4956000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: Connection: [keep-alive] Content-Length: ['7'] If-None-Match: ['0x8D2C9167D53FC2C'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d3841d46-67fa-11e7-bcd4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c8a6e7b4-68f4-11e7-8728-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer51c91a1c/blob1?comp=appendblock @@ -61,14 +61,14 @@ interactions: body: {string: ''} headers: Content-MD5: [TjjhPkKeLS6Els52i6m9Bg==] - Date: ['Thu, 13 Jul 2017 18:41:04 GMT'] - ETag: ['"0x8D4CA1EB78D85EB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:20 GMT'] + ETag: ['"0x8D4CB18AD62E163"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [90d5f699-0001-013d-2207-fca7a7000000] + x-ms-request-id: [ada622dd-0001-0131-4101-fd4956000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -78,9 +78,9 @@ interactions: Connection: [keep-alive] Content-Length: ['7'] If-None-Match: ['0x8D2C9167D53FC2C'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d38aae3e-67fa-11e7-84e4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c8adbd12-68f4-11e7-a04a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer51c91a1c/blob1?comp=appendblock @@ -88,14 +88,14 @@ interactions: body: {string: ''} headers: Content-MD5: [ZOnmAD+J5F2p66g8NFSefA==] - Date: ['Thu, 13 Jul 2017 18:41:04 GMT'] - ETag: ['"0x8D4CA1EB7930525"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:20 GMT'] + ETag: ['"0x8D4CB18AD69C078"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['7'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [90d5f6a0-0001-013d-2807-fca7a7000000] + x-ms-request-id: [ada622e8-0001-0131-4901-fd4956000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -105,9 +105,9 @@ interactions: Connection: [keep-alive] Content-Length: ['7'] If-None-Match: ['0x8D2C9167D53FC2C'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d3906518-67fa-11e7-8b88-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c8b3bd1e-68f4-11e7-9e7d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer51c91a1c/blob1?comp=appendblock @@ -115,14 +115,14 @@ interactions: body: {string: ''} headers: Content-MD5: [giBgEwOK96+T6eqweyrlNg==] - Date: ['Thu, 13 Jul 2017 18:41:04 GMT'] - ETag: ['"0x8D4CA1EB798AB7E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:21 GMT'] + ETag: ['"0x8D4CB18AD6F8DF0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['14'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [90d5f6a7-0001-013d-2f07-fca7a7000000] + x-ms-request-id: [ada622ed-0001-0131-4e01-fd4956000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -132,9 +132,9 @@ interactions: Connection: [keep-alive] Content-Length: ['7'] If-None-Match: ['0x8D2C9167D53FC2C'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d3961364-67fa-11e7-997c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c8d9d99c-68f4-11e7-b887-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer51c91a1c/blob1?comp=appendblock @@ -142,14 +142,14 @@ interactions: body: {string: ''} headers: Content-MD5: [FDhv5/Vy34Z9KKvEnjH2lQ==] - Date: ['Thu, 13 Jul 2017 18:41:04 GMT'] - ETag: ['"0x8D4CA1EB79E51D2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:21 GMT'] + ETag: ['"0x8D4CB18ADA2B555"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['21'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [90d5f6b0-0001-013d-3607-fca7a7000000] + x-ms-request-id: [ada6231d-0001-0131-7401-fd4956000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -159,9 +159,9 @@ interactions: Connection: [keep-alive] Content-Length: ['7'] If-None-Match: ['0x8D2C9167D53FC2C'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d39bb30a-67fa-11e7-84e7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c8ecf0b8-68f4-11e7-b7a2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:21 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer51c91a1c/blob1?comp=appendblock @@ -169,14 +169,14 @@ interactions: body: {string: ''} headers: Content-MD5: [jkC3Z8KTocewrRQF+tkxeA==] - Date: ['Thu, 13 Jul 2017 18:41:04 GMT'] - ETag: ['"0x8D4CA1EB7A3D110"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:21 GMT'] + ETag: ['"0x8D4CB18ADA8F80E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [90d5f6b4-0001-013d-3907-fca7a7000000] + x-ms-request-id: [ada62345-0001-0131-1101-fd4956000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -184,9 +184,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d3a15ae4-67fa-11e7-9d1a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c8f3f6cc-68f4-11e7-96b3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:21 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -198,16 +198,16 @@ interactions: Content-Length: ['35'] Content-Range: [bytes 0-34/35] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:04 GMT'] - ETag: ['"0x8D4CA1EB7A3D110"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:19 GMT'] + ETag: ['"0x8D4CB18ADA8F80E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['5'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [d2ca758c-0001-0090-3007-fcc198000000] + x-ms-request-id: [9722ed1d-0001-0028-0e01-fd236b000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_none_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_none_match_fail.yaml index 6f1984c7..7e6d6f93 100644 --- a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_none_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_none_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d3c53bda-67fa-11e7-aa5a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c91ad15e-68f4-11e7-b30b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:21 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerda291c17?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:05 GMT'] - ETag: ['"0x8D4CA1EB7FB1EEA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:22 GMT'] + ETag: ['"0x8D4CB18AE26CBF8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [381e06ed-0001-0040-2e07-fc7d3a000000] + x-ms-request-id: [48f7adca-0001-0087-4001-fd01fb000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [d3de942c-67fa-11e7-929f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:05 GMT'] + x-ms-client-request-id: [c93443be-68f4-11e7-ae07-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:21 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerda291c17/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:05 GMT'] - ETag: ['"0x8D4CA1EB7F50CF5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:22 GMT'] + ETag: ['"0x8D4CB18ADFF3E5C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f5e76bd6-0001-0115-7a07-fcd018000000] + x-ms-request-id: [d3aec23f-0001-0119-7d01-fd3ee9000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -49,9 +49,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d3f28eb4-67fa-11e7-af7f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9493af8-68f4-11e7-80c4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:21 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerda291c17/blob1 @@ -61,16 +61,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['0'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:05 GMT'] - ETag: ['"0x8D4CA1EB7F50CF5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:22 GMT'] + ETag: ['"0x8D4CB18ADFF3E5C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['0'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f5e76be6-0001-0115-0707-fcd018000000] + x-ms-request-id: [d3aec24a-0001-0119-0601-fd3ee9000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -79,23 +79,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-None-Match: ['"0x8D4CA1EB7F50CF5"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d3f8f3da-67fa-11e7-a487-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:05 GMT'] + If-None-Match: ['"0x8D4CB18ADFF3E5C"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c94f6702-68f4-11e7-a421-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:21 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerda291c17/blob1?comp=appendblock response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:f5e76bfe-0001-0115-1b07-fcd018000000\n\ - Time:2017-07-13T18:41:05.4928217Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:d3aec261-0001-0119-1601-fd3ee9000000\n\ + Time:2017-07-15T00:30:23.2578365Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [f5e76bfe-0001-0115-1b07-fcd018000000] + x-ms-request-id: [d3aec261-0001-0119-1601-fd3ee9000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_unmodified.yaml index 6fbf6be0..c1c83d44 100644 --- a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d4148b9a-67fa-11e7-85bc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c96c9a8c-68f4-11e7-a5f9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:21 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer52411a24?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:05 GMT'] - ETag: ['"0x8D4CA1EB82E52E5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:21 GMT'] + ETag: ['"0x8D4CB18AE0727B7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5df02690-0001-0004-7307-fca156000000] + x-ms-request-id: [4acedced-0001-0047-7601-fd8bbf000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [d42ce328-67fa-11e7-af61-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:05 GMT'] + x-ms-client-request-id: [c9842014-68f4-11e7-a2c6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer52411a24/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:05 GMT'] - ETag: ['"0x8D4CA1EB8444CBF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:21 GMT'] + ETag: ['"0x8D4CB18AE4E0930"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f155fab-0001-0129-7b07-fc64c3000000] + x-ms-request-id: [6d1f56ba-0001-0075-8001-fdd36f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,10 +50,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:05 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d4421966-67fa-11e7-bbeb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:05 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9987f5a-68f4-11e7-ae4f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer52411a24/blob1?comp=appendblock @@ -61,14 +61,14 @@ interactions: body: {string: ''} headers: Content-MD5: [TjjhPkKeLS6Els52i6m9Bg==] - Date: ['Thu, 13 Jul 2017 18:41:05 GMT'] - ETag: ['"0x8D4CA1EB84A6845"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:21 GMT'] + ETag: ['"0x8D4CB18AE53FDBF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['0'] x-ms-blob-committed-block-count: ['1'] - x-ms-request-id: [4f155fb4-0001-0129-0207-fc64c3000000] + x-ms-request-id: [6d1f56c6-0001-0075-0a01-fdd36f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -77,10 +77,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:05 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d447cae6-67fa-11e7-860e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:05 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c99e379c-68f4-11e7-9c6e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer52411a24/blob1?comp=appendblock @@ -88,14 +88,14 @@ interactions: body: {string: ''} headers: Content-MD5: [ZOnmAD+J5F2p66g8NFSefA==] - Date: ['Thu, 13 Jul 2017 18:41:05 GMT'] - ETag: ['"0x8D4CA1EB84FE783"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:21 GMT'] + ETag: ['"0x8D4CB18AE59A417"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['7'] x-ms-blob-committed-block-count: ['2'] - x-ms-request-id: [4f155fc2-0001-0129-0e07-fc64c3000000] + x-ms-request-id: [6d1f56d3-0001-0075-1601-fdd36f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -104,10 +104,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:05 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d44d6eb0-67fa-11e7-acca-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:05 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9a3b7b4-68f4-11e7-9830-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer52411a24/blob1?comp=appendblock @@ -115,14 +115,14 @@ interactions: body: {string: ''} headers: Content-MD5: [giBgEwOK96+T6eqweyrlNg==] - Date: ['Thu, 13 Jul 2017 18:41:05 GMT'] - ETag: ['"0x8D4CA1EB8558DDC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:22 GMT'] + ETag: ['"0x8D4CB18AE5F2360"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['14'] x-ms-blob-committed-block-count: ['3'] - x-ms-request-id: [4f155fca-0001-0129-1407-fc64c3000000] + x-ms-request-id: [6d1f56e2-0001-0075-2301-fdd36f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -131,10 +131,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:05 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d452beec-67fa-11e7-b8dd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:05 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9a909a6-68f4-11e7-9cb6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer52411a24/blob1?comp=appendblock @@ -142,14 +142,14 @@ interactions: body: {string: ''} headers: Content-MD5: [FDhv5/Vy34Z9KKvEnjH2lQ==] - Date: ['Thu, 13 Jul 2017 18:41:05 GMT'] - ETag: ['"0x8D4CA1EB85AE602"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:22 GMT'] + ETag: ['"0x8D4CB18AE642D5B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['21'] x-ms-blob-committed-block-count: ['4'] - x-ms-request-id: [4f155fd6-0001-0129-1e07-fc64c3000000] + x-ms-request-id: [6d1f56f2-0001-0075-2f01-fdd36f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -158,10 +158,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:05 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d4582742-67fa-11e7-9c7b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:06 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9adfbbe-68f4-11e7-90ed-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer52411a24/blob1?comp=appendblock @@ -169,14 +169,14 @@ interactions: body: {string: ''} headers: Content-MD5: [jkC3Z8KTocewrRQF+tkxeA==] - Date: ['Thu, 13 Jul 2017 18:41:05 GMT'] - ETag: ['"0x8D4CA1EB8603E25"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:22 GMT'] + ETag: ['"0x8D4CB18AE69D3B6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-append-offset: ['28'] x-ms-blob-committed-block-count: ['5'] - x-ms-request-id: [4f155fdd-0001-0129-2507-fc64c3000000] + x-ms-request-id: [6d1f56fc-0001-0075-3901-fdd36f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -184,9 +184,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d45dd3e8-67fa-11e7-bbcf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9b79ec6-68f4-11e7-89de-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:22 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -198,16 +198,16 @@ interactions: Content-Length: ['35'] Content-Range: [bytes 0-34/35] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:05 GMT'] - ETag: ['"0x8D4CA1EB8603E25"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:22 GMT'] + ETag: ['"0x8D4CB18AE69D3B6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-committed-block-count: ['5'] x-ms-blob-type: [AppendBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [5df02709-0001-0004-5907-fca156000000] + x-ms-request-id: [4aceddb8-0001-0047-2a01-fd8bbf000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_unmodified_fail.yaml index 276a71f5..a3f21b54 100644 --- a/tests/recordings/test_blob_access_conditions.test_append_block_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_append_block_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d47d1b88-67fa-11e7-9736-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9d9411e-68f4-11e7-bded-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdac91c1f?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:08 GMT'] - ETag: ['"0x8D4CA1EBA3EED98"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:22 GMT'] + ETag: ['"0x8D4CB18AE8E18F1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [2f2341d8-0001-00a4-6b07-fc6e30000000] + x-ms-request-id: [8579b6cb-0001-00e3-2401-fdb15b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [AppendBlob] - x-ms-client-request-id: [d491d4e2-67fa-11e7-940f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:06 GMT'] + x-ms-client-request-id: [c9eeab14-68f4-11e7-9b53-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdac91c1f/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:03 GMT'] - ETag: ['"0x8D4CA1EB8A9895F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:23 GMT'] + ETag: ['"0x8D4CB18AEB8ECC0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [81b6fd21-0001-0039-2907-fc1470000000] + x-ms-request-id: [aa35baf2-0001-00fc-0801-fd6a4b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,23 +50,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:06 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d4a78210-67fa-11e7-8142-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:06 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:15:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ca05ad9e-68f4-11e7-827a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdac91c1f/blob1?comp=appendblock response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:81b6fd30-0001-0039-3607-fc1470000000\n\ - Time:2017-07-13T18:41:04.9575503Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:aa35bb0f-0001-00fc-2101-fd6a4b000000\n\ + Time:2017-07-15T00:30:24.1002479Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [81b6fd30-0001-0039-3607-fc1470000000] + x-ms-request-id: [aa35bb0f-0001-00fc-2101-fd6a4b000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_match.yaml b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_match.yaml index 3005b1dd..cb15c020 100644 --- a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d4c24a00-67fa-11e7-a30b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ca2ea946-68f4-11e7-99af-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerba52179c?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:06 GMT'] - ETag: ['"0x8D4CA1EB94E5AAA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:22 GMT'] + ETag: ['"0x8D4CB18AEDFFE02"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [713b0378-0001-0068-3f07-fc0a85000000] + x-ms-request-id: [f4a54fa7-0001-002b-6401-fd206c000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d4d6cf5c-67fa-11e7-b5c3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:06 GMT'] + x-ms-client-request-id: [ca42729e-68f4-11e7-84f1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerba52179c/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:06 GMT'] - ETag: ['"0x8D4CA1EB8DF7027"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:23 GMT'] + ETag: ['"0x8D4CB18AEFE3FF3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [713b038e-0001-0068-5007-fc0a85000000] + x-ms-request-id: [f4a54fc6-0001-002b-0101-fd206c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d4dd2866-67fa-11e7-82d7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ca4939e4-68f4-11e7-b5a6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:23 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerba52179c/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:06 GMT'] - ETag: ['"0x8D4CA1EB8DF7027"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:23 GMT'] + ETag: ['"0x8D4CB18AEFE3FF3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [713b039b-0001-0068-5c07-fc0a85000000] + x-ms-request-id: [f4a54fe4-0001-002b-1c01-fd206c000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -80,20 +80,20 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Match: ['"0x8D4CA1EB8DF7027"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d4e2861c-67fa-11e7-8302-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:06 GMT'] + If-Match: ['"0x8D4CB18AEFE3FF3"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ca4e3c5a-68f4-11e7-bb66-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:23 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/utcontainerba52179c/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [713b03ae-0001-0068-6e07-fc0a85000000] + x-ms-request-id: [f4a54ffd-0001-002b-3001-fd206c000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_match_fail.yaml index 4e634c71..248c5781 100644 --- a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d51dc042-67fa-11e7-8f50-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ca720950-68f4-11e7-9b4f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer36411997?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:06 GMT'] - ETag: ['"0x8D4CA1EB92AC9A3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:24 GMT'] + ETag: ['"0x8D4CB18AF37382B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9378d7a3-0001-0046-0d07-fc8a42000000] + x-ms-request-id: [c4fb54e3-0001-00c1-4001-fddf6d000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d5329ddc-67fa-11e7-829b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:07 GMT'] + x-ms-client-request-id: [ca8715b6-68f4-11e7-8860-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer36411997/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:06 GMT'] - ETag: ['"0x8D4CA1EB93B0E2B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:24 GMT'] + ETag: ['"0x8D4CB18AF42A89F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9378d7bf-0001-0046-2107-fc8a42000000] + x-ms-request-id: [c4fb54fe-0001-00c1-5601-fddf6d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,22 +52,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] If-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d5393d4a-67fa-11e7-8b63-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ca8d6eca-68f4-11e7-8dd2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:23 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/utcontainer36411997/blob1 response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:9378d7ce-0001-0046-2d07-fc8a42000000\n\ - Time:2017-07-13T18:41:07.1311859Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:c4fb5523-0001-00c1-7701-fddf6d000000\n\ + Time:2017-07-15T00:30:24.6178411Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [9378d7ce-0001-0046-2d07-fc8a42000000] + x-ms-request-id: [c4fb5523-0001-00c1-7701-fddf6d000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_modified.yaml index ce1b1f6a..7de08328 100644 --- a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d554dc8a-67fa-11e7-b85a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [caac8a58-68f4-11e7-a597-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer3b618d0?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:06 GMT'] - ETag: ['"0x8D4CA1EB9810774"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:24 GMT'] + ETag: ['"0x8D4CB18AF482C45"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e26f8aaf-0001-0061-6407-fc100b000000] + x-ms-request-id: [a130051d-0001-011c-0c01-fdca96000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d56ae480-67fa-11e7-9b09-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:07 GMT'] + x-ms-client-request-id: [cac1771a-68f4-11e7-8875-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer3b618d0/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:06 GMT'] - ETag: ['"0x8D4CA1EB9736679"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:24 GMT'] + ETag: ['"0x8D4CB18AF7D7296"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e26f8abf-0001-0061-7207-fc100b000000] + x-ms-request-id: [a1300524-0001-011c-1101-fdca96000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,20 +51,20 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:07 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d570ec18-67fa-11e7-8a88-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:07 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cac7be18-68f4-11e7-b19d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:24 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/utcontainer3b618d0/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e26f8ace-0001-0061-0107-fc100b000000] + x-ms-request-id: [a1300527-0001-011c-1401-fdca96000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_modified_fail.yaml index 0742bdcc..83373d9f 100644 --- a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d58c3982-67fa-11e7-95f5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cae4c7f6-68f4-11e7-8f8a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer859a1acb?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:07 GMT'] - ETag: ['"0x8D4CA1EB9B8C823"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:24 GMT'] + ETag: ['"0x8D4CB18AF917705"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0411ca31-0001-007c-1607-fcc9e1000000] + x-ms-request-id: [6ee60f26-0001-00ae-7301-fd77b9000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d5a14dd8-67fa-11e7-8fcf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:08 GMT'] + x-ms-client-request-id: [caf9f8ec-68f4-11e7-8e74-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer859a1acb/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:07 GMT'] - ETag: ['"0x8D4CA1EB9B02C30"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:24 GMT'] + ETag: ['"0x8D4CB18AFB5A3FF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0411ca5d-0001-007c-3b07-fcc9e1000000] + x-ms-request-id: [6ee60f4b-0001-00ae-1401-fd77b9000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,23 +51,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:08 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d5ad8c36-67fa-11e7-8c84-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:08 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:45:24 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [caffc134-68f4-11e7-a000-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:24 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/utcontainer859a1acb/blob1 response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:0411ca7a-0001-007c-5107-fcc9e1000000\n\ - Time:2017-07-13T18:41:08.1298100Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:6ee60f61-0001-00ae-2a01-fd77b9000000\n\ + Time:2017-07-15T00:30:25.2072733Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [0411ca7a-0001-007c-5107-fcc9e1000000] + x-ms-request-id: [6ee60f61-0001-00ae-2a01-fd77b9000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_none_match.yaml b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_none_match.yaml index d9fb167d..3a47192d 100644 --- a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_none_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_none_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d5cd1894-67fa-11e7-bfd9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cb1b0c80-68f4-11e7-8c88-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer36cc19ab?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:07 GMT'] - ETag: ['"0x8D4CA1EB9FDD093"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:25 GMT'] + ETag: ['"0x8D4CB18AFF70848"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e58308c6-0001-010f-3207-fcff77000000] + x-ms-request-id: [994e7f32-0001-00e1-5901-fdb3a1000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d5f17a06-67fa-11e7-aa22-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:08 GMT'] + x-ms-client-request-id: [cb391c8c-68f4-11e7-a869-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer36cc19ab/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:07 GMT'] - ETag: ['"0x8D4CA1EB9FA13C8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:25 GMT'] + ETag: ['"0x8D4CB18AFF4DB94"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e58308e9-0001-010f-5107-fcff77000000] + x-ms-request-id: [994e7f56-0001-00e1-7601-fdb3a1000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,19 +52,19 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] If-None-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d5f77dc8-67fa-11e7-a402-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cb3f10d0-68f4-11e7-a593-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:24 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/utcontainer36cc19ab/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e58308f5-0001-010f-5d07-fcff77000000] + x-ms-request-id: [994e7f72-0001-00e1-1001-fdb3a1000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_none_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_none_match_fail.yaml index 4682aa19..2d0bf005 100644 --- a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_none_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_none_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d61267a8-67fa-11e7-a092-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cb5e5170-68f4-11e7-a2c6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:25 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbcf71ba6?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:07 GMT'] - ETag: ['"0x8D4CA1EBA0BF9AE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:25 GMT'] + ETag: ['"0x8D4CB18B0197752"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6109c0bf-0001-009d-3d07-fc2e94000000] + x-ms-request-id: [9e6edba2-0001-00ff-3a01-fd694c000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d626cacc-67fa-11e7-93cc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:09 GMT'] + x-ms-client-request-id: [cb7918fa-68f4-11e7-8ab0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:25 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbcf71ba6/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:07 GMT'] - ETag: ['"0x8D4CA1EBA2FFAA9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:25 GMT'] + ETag: ['"0x8D4CB18B035C125"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6109c0da-0001-009d-5607-fc2e94000000] + x-ms-request-id: [9e6edbcc-0001-00ff-5b01-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d62da206-67fa-11e7-9a5f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cb80ad7e-68f4-11e7-aee3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:25 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerbcf71ba6/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:07 GMT'] - ETag: ['"0x8D4CA1EBA2FFAA9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:25 GMT'] + ETag: ['"0x8D4CB18B035C125"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [6109c0ec-0001-009d-6607-fc2e94000000] + x-ms-request-id: [9e6edbdf-0001-00ff-6c01-fd694c000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -80,23 +80,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-None-Match: ['"0x8D4CA1EBA2FFAA9"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d6333fde-67fa-11e7-a56f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:09 GMT'] + If-None-Match: ['"0x8D4CB18B035C125"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cb860e9a-68f4-11e7-ac91-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:25 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/utcontainerbcf71ba6/blob1 response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:6109c0f9-0001-009d-7007-fc2e94000000\n\ - Time:2017-07-13T18:41:08.6460026Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:9e6edbe7-0001-00ff-7401-fd694c000000\n\ + Time:2017-07-15T00:30:26.1646140Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [6109c0f9-0001-009d-7007-fc2e94000000] + x-ms-request-id: [9e6edbe7-0001-00ff-7401-fd694c000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_unmodified.yaml index 68248065..c59fb48a 100644 --- a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d651f91a-67fa-11e7-83a1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cbae4934-68f4-11e7-b93f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:25 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer374419b3?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:09 GMT'] - ETag: ['"0x8D4CA1EBA82A24A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:26 GMT'] + ETag: ['"0x8D4CB18B09B523B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dfb923e0-0001-002c-8007-fcd6e9000000] + x-ms-request-id: [7dabb7fb-0001-011e-6901-fdc86c000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d66a5af0-67fa-11e7-9b68-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:09 GMT'] + x-ms-client-request-id: [cbc47464-68f4-11e7-af99-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:25 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer374419b3/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:09 GMT'] - ETag: ['"0x8D4CA1EBA72DC03"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:26 GMT'] + ETag: ['"0x8D4CB18B0801E71"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dfb923ee-0001-002c-0907-fcd6e9000000] + x-ms-request-id: [7dabb80c-0001-011e-7801-fdc86c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,20 +51,20 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:09 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d670471c-67fa-11e7-82e4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:09 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cbcbe85c-68f4-11e7-8844-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:25 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/utcontainer374419b3/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dfb923fb-0001-002c-1507-fcd6e9000000] + x-ms-request-id: [7dabb814-0001-011e-7f01-fdc86c000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_unmodified_fail.yaml index d3104596..78d9226a 100644 --- a/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d68e8b8c-67fa-11e7-90fe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cbe8301e-68f4-11e7-9d13-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:26 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbd971bae?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:08 GMT'] - ETag: ['"0x8D4CA1EBAA163FE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] + ETag: ['"0x8D4CB18B294D965"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [94984a5e-0001-001f-5607-fc8fc4000000] + x-ms-request-id: [88871e0a-0001-0025-4801-fdcc67000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d6a4666e-67fa-11e7-85f3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:09 GMT'] + x-ms-client-request-id: [cbfcbe28-68f4-11e7-9200-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:26 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbd971bae/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:08 GMT'] - ETag: ['"0x8D4CA1EBAACE235"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] + ETag: ['"0x8D4CB18B0B84FBF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [94984a75-0001-001f-6907-fc8fc4000000] + x-ms-request-id: [88871e19-0001-0025-5401-fdcc67000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,23 +51,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:09 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d6aabeb0-67fa-11e7-b1d5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:09 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:15:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cc02bbac-68f4-11e7-8852-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:26 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/utcontainerbd971bae/blob1 response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:94984a89-0001-001f-7907-fc8fc4000000\n\ - Time:2017-07-13T18:41:09.5971919Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:88871e22-0001-0025-5d01-fdcc67000000\n\ + Time:2017-07-15T00:30:30.2676338Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [94984a89-0001-001f-7907-fc8fc4000000] + x-ms-request-id: [88871e22-0001-0025-5d01-fdcc67000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_modified.yaml index 6b5d9568..e1fd9717 100644 --- a/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d6c6cd76-67fa-11e7-882d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cc1ec6ba-68f4-11e7-b17a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:26 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer88321af4?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:08 GMT'] - ETag: ['"0x8D4CA1EBA9E0BA8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:27 GMT'] + ETag: ['"0x8D4CB18B135981E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [069f5a66-0001-00ed-7607-fc5d50000000] + x-ms-request-id: [26e6073e-0001-007f-2501-fdcae6000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,43 +26,43 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:10 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d6dbcb7a-67fa-11e7-ab8a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:10 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cc35056c-68f4-11e7-abf7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:26 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/utcontainer88321af4?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [069f5a7f-0001-00ed-0b07-fc5d50000000] + x-ms-request-id: [26e60755-0001-007f-3501-fdcae6000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d6e465ca-67fa-11e7-9224-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cc3aa1d4-68f4-11e7-b772-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:26 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer88321af4?restype=container response: body: {string: "\uFEFFContainerNotFoundThe\ - \ specified container does not exist.\nRequestId:069f5a9e-0001-00ed-2207-fc5d50000000\n\ - Time:2017-07-13T18:41:09.5822725Z"} + \ specified container does not exist.\nRequestId:26e6075f-0001-007f-3e01-fdcae6000000\n\ + Time:2017-07-15T00:30:27.9696401Z"} headers: Content-Length: ['225'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [069f5a9e-0001-00ed-2207-fc5d50000000] + x-ms-request-id: [26e6075f-0001-007f-3e01-fdcae6000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified container does not exist.} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_modified_fail.yaml index 15727088..b96aa07b 100644 --- a/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d7019c9e-67fa-11e7-a1d4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cc56a438-68f4-11e7-b2f0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:26 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer14d91cef?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:10 GMT'] - ETag: ['"0x8D4CA1EBB18701D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:26 GMT'] + ETag: ['"0x8D4CB18B115B5ED"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b65c8c48-0001-00b8-1e07-fcb627000000] + x-ms-request-id: [21b98b8b-0001-0026-6b01-fdcf60000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:10 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d7167470-67fa-11e7-860f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:10 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:45:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cc6b32d8-68f4-11e7-8b71-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:26 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/utcontainer14d91cef?restype=container response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:b65c8c65-0001-00b8-3507-fcb627000000\n\ - Time:2017-07-13T18:41:10.3283439Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:21b98ba3-0001-0026-7f01-fdcf60000000\n\ + Time:2017-07-15T00:30:27.7136551Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [b65c8c65-0001-00b8-3507-fcb627000000] + x-ms-request-id: [21b98ba3-0001-0026-7f01-fdcf60000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_unmodified.yaml index b6bc2dab..160feba9 100644 --- a/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d732d9d0-67fa-11e7-9df1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cc859e1e-68f4-11e7-9e33-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerc0081bd7?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:10 GMT'] - ETag: ['"0x8D4CA1EBB435C32"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:27 GMT'] + ETag: ['"0x8D4CB18B159ACCC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5ebf5b3f-0001-00fb-6d07-fc9cce000000] + x-ms-request-id: [0af651c7-0001-00d0-6101-fde876000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,43 +26,43 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:10 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d7469a92-67fa-11e7-aeaa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:10 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cc9ce986-68f4-11e7-a824-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:27 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/utcontainerc0081bd7?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5ebf5b59-0001-00fb-0207-fc9cce000000] + x-ms-request-id: [0af651db-0001-00d0-7101-fde876000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d74c8a42-67fa-11e7-943a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cca63070-68f4-11e7-ae89-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:27 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerc0081bd7?restype=container response: body: {string: "\uFEFFContainerNotFoundThe\ - \ specified container does not exist.\nRequestId:5ebf5b6e-0001-00fb-1207-fc9cce000000\n\ - Time:2017-07-13T18:41:10.6416635Z"} + \ specified container does not exist.\nRequestId:0af651ed-0001-00d0-0101-fde876000000\n\ + Time:2017-07-15T00:30:28.2261134Z"} headers: Content-Length: ['225'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [5ebf5b6e-0001-00fb-1207-fc9cce000000] + x-ms-request-id: [0af651ed-0001-00d0-0101-fde876000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified container does not exist.} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_unmodified_fail.yaml index 694bd72c..58488d69 100644 --- a/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d76a3d62-67fa-11e7-aa80-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ccbfb28c-68f4-11e7-be9f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer511e1dd2?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:11 GMT'] - ETag: ['"0x8D4CA1EBBC09F69"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:27 GMT'] + ETag: ['"0x8D4CB18B197F64C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b2abcd-0001-0026-8007-fccf60000000] + x-ms-request-id: [27ff077a-0001-003b-2b01-fd168a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:11 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d77f00d0-67fa-11e7-90e9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:11 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:15:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ccd7cb12-68f4-11e7-a7f5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:27 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/utcontainer511e1dd2?restype=container response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:e5b2abe4-0001-0026-1407-fccf60000000\n\ - Time:2017-07-13T18:41:11.4265631Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:27ff0798-0001-003b-4401-fd168a000000\n\ + Time:2017-07-15T00:30:28.5952912Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [e5b2abe4-0001-0026-1407-fccf60000000] + x-ms-request-id: [27ff0798-0001-003b-4401-fd168a000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_match.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_match.yaml index f9277330..496036a7 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d7992bd8-67fa-11e7-a0fb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ccf2ff2c-68f4-11e7-bacb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer505b1a09?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:10 GMT'] - ETag: ['"0x8D4CA1EBBBCC2E7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:28 GMT'] + ETag: ['"0x8D4CB18B1BD21EC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5cec4aed-0001-0130-7b07-fc48ab000000] + x-ms-request-id: [e7a248b9-0001-0121-6501-fd7fb0000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d7ae020c-67fa-11e7-87db-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:11 GMT'] + x-ms-client-request-id: [cd08143e-68f4-11e7-8686-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer505b1a09/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:10 GMT'] - ETag: ['"0x8D4CA1EBBB692E4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:28 GMT'] + ETag: ['"0x8D4CB18B1C3D6D5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5cec4afb-0001-0130-0207-fc48ab000000] + x-ms-request-id: [e7a248ca-0001-0121-7101-fd7fb0000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d7b408c0-67fa-11e7-a318-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cd0dd11c-68f4-11e7-8d53-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:27 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer505b1a09/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:10 GMT'] - ETag: ['"0x8D4CA1EBBB692E4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:28 GMT'] + ETag: ['"0x8D4CB18B1C3D6D5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [5cec4b03-0001-0130-0707-fc48ab000000] + x-ms-request-id: [e7a248d9-0001-0121-7e01-fd7fb0000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -79,23 +79,23 @@ interactions: body: null headers: Connection: [keep-alive] - If-Match: ['"0x8D4CA1EBBB692E4"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d7b95636-67fa-11e7-ab2b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:11 GMT'] + If-Match: ['"0x8D4CB18B1C3D6D5"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cd12d05e-68f4-11e7-acef-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:27 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer505b1a09/blob1?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:10 GMT'] - ETag: ['"0x8D4CA1EBBB692E4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:28 GMT'] + ETag: ['"0x8D4CB18B1C3D6D5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [5cec4b0b-0001-0130-0e07-fc48ab000000] + x-ms-request-id: [e7a248f0-0001-0121-1001-fd7fb0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_match_fail.yaml index 9c3e7e4c..abe39015 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d7db2a9a-67fa-11e7-af04-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cd2e29ee-68f4-11e7-adee-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd85c1c04?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:11 GMT'] - ETag: ['"0x8D4CA1EBC28A0A0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] + ETag: ['"0x8D4CB18B238CF55"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8014769a-0001-0108-3007-fc09f2000000] + x-ms-request-id: [9a956266-0001-0078-7501-fd3c63000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d7f13058-67fa-11e7-b781-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:12 GMT'] + x-ms-client-request-id: [cd45bd18-68f4-11e7-b920-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd85c1c04/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:11 GMT'] - ETag: ['"0x8D4CA1EBBF97475"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] + ETag: ['"0x8D4CB18B203D1DA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [801476b9-0001-0108-4607-fc09f2000000] + x-ms-request-id: [9a956287-0001-0078-1301-fd3c63000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,23 +51,23 @@ interactions: headers: Connection: [keep-alive] If-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d7f6959e-67fa-11e7-a4ea-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cd4ef79e-68f4-11e7-8461-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:28 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerd85c1c04/blob1?comp=metadata response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:801476c9-0001-0108-5307-fc09f2000000\n\ - Time:2017-07-13T18:41:12.2492667Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:9a956293-0001-0078-1e01-fd3c63000000\n\ + Time:2017-07-15T00:30:29.7004691Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [801476c9-0001-0108-5307-fc09f2000000] + x-ms-request-id: [9a956293-0001-0078-1e01-fd3c63000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_modified.yaml index adfa2196..f213576a 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d820e9a4-67fa-11e7-b921-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cd6bbf5c-68f4-11e7-8567-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera0f71b3d?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:11 GMT'] - ETag: ['"0x8D4CA1EBC309E4B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] + ETag: ['"0x8D4CB18B238C43D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0680723a-0001-00f4-8007-fc7138000000] + x-ms-request-id: [5f22e2fa-0001-005a-6b01-fd5255000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d8342eba-67fa-11e7-b672-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:12 GMT'] + x-ms-client-request-id: [cd82c2a6-68f4-11e7-93d8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera0f71b3d/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:11 GMT'] - ETag: ['"0x8D4CA1EBC3C55B9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] + ETag: ['"0x8D4CB18B240BF17"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [06807252-0001-00f4-1507-fc7138000000] + x-ms-request-id: [5f22e316-0001-005a-0101-fd5255000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,23 +50,23 @@ interactions: body: null headers: Connection: [keep-alive] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:12 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d839b038-67fa-11e7-9d63-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:12 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:28 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cd8b3898-68f4-11e7-a366-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:28 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainera0f71b3d/blob1?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:11 GMT'] - ETag: ['"0x8D4CA1EBC3C55B9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] + ETag: ['"0x8D4CB18B240BF17"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [06807267-0001-00f4-2a07-fc7138000000] + x-ms-request-id: [5f22e328-0001-005a-1301-fd5255000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_modified_fail.yaml index 57b262bb..15e352ad 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d854166c-67fa-11e7-8703-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cda6beae-68f4-11e7-b109-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer2f0b1d38?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:11 GMT'] - ETag: ['"0x8D4CA1EBC76E33F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] + ETag: ['"0x8D4CB18B25E8E64"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3a6ab328-0001-0123-1807-fc7d4a000000] + x-ms-request-id: [e5bb7e87-0001-0008-5701-fd4fa7000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d8706e34-67fa-11e7-a632-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:12 GMT'] + x-ms-client-request-id: [cdc2fac6-68f4-11e7-9cf0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer2f0b1d38/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:11 GMT'] - ETag: ['"0x8D4CA1EBC78CD69"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] + ETag: ['"0x8D4CB18B27E6FC4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3a6ab336-0001-0123-2407-fc7d4a000000] + x-ms-request-id: [e5bb7e95-0001-0008-6101-fd4fa7000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,10 +50,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:12 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d876728c-67fa-11e7-84dd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:12 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:45:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cdc8be9e-68f4-11e7-92d0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:29 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer2f0b1d38/blob1?comp=metadata @@ -61,10 +61,10 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:41:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [3a6ab347-0001-0123-3407-fc7d4a000000] + x-ms-request-id: [e5bb7e9c-0001-0008-6701-fd4fa7000000] x-ms-version: ['2017-04-17'] status: {code: 304, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_none_match.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_none_match.yaml index 371e5ce3..24ef0cc6 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_none_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_none_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d892ba02-67fa-11e7-8102-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cdeb31cc-68f4-11e7-aadc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd8e71c18?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:12 GMT'] - ETag: ['"0x8D4CA1EBC932BDE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] + ETag: ['"0x8D4CB18B26342F0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3c930b1f-0001-008a-4e07-fceef7000000] + x-ms-request-id: [334e28a8-0001-008a-0e01-fdeef7000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d8a653be-67fa-11e7-a2d9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:13 GMT'] + x-ms-client-request-id: [cdff8018-68f4-11e7-8a65-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd8e71c18/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:12 GMT'] - ETag: ['"0x8D4CA1EBCAEDB43"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] + ETag: ['"0x8D4CB18B2BB35E2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3c930b39-0001-008a-6607-fceef7000000] + x-ms-request-id: [334e28ba-0001-008a-1b01-fdeef7000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,22 +51,22 @@ interactions: headers: Connection: [keep-alive] If-None-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d8ac0bb0-67fa-11e7-a518-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ce053682-68f4-11e7-8313-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:29 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerd8e71c18/blob1?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:12 GMT'] - ETag: ['"0x8D4CA1EBCAEDB43"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:29 GMT'] + ETag: ['"0x8D4CB18B2BB35E2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [3c930b61-0001-008a-0507-fceef7000000] + x-ms-request-id: [334e28c2-0001-008a-2301-fdeef7000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_none_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_none_match_fail.yaml index d882c746..eab48c63 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_none_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_none_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d8c88a10-67fa-11e7-882d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ce2161cc-68f4-11e7-8dbb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6b421e13?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:12 GMT'] - ETag: ['"0x8D4CA1EBCE1B823"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:30 GMT'] + ETag: ['"0x8D4CB18B34AA614"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [61005569-0001-00f5-6a07-fc70c5000000] + x-ms-request-id: [71f70933-0001-00f7-5701-fd723f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d8ddbf18-67fa-11e7-8288-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:13 GMT'] + x-ms-client-request-id: [ce35dc4c-68f4-11e7-b0c1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6b421e13/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:12 GMT'] - ETag: ['"0x8D4CA1EBCE648F2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:30 GMT'] + ETag: ['"0x8D4CB18B2F11CE9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6100557d-0001-00f5-7807-fc70c5000000] + x-ms-request-id: [71f7094a-0001-00f7-6b01-fd723f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d8e3b8c6-67fa-11e7-a60f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ce3b1a06-68f4-11e7-a5e8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:29 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer6b421e13/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:12 GMT'] - ETag: ['"0x8D4CA1EBCE648F2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:30 GMT'] + ETag: ['"0x8D4CB18B2F11CE9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [61005586-0001-00f5-8007-fc70c5000000] + x-ms-request-id: [71f7095b-0001-00f7-7c01-fd723f000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -79,10 +79,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-None-Match: ['"0x8D4CA1EBCE648F2"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d8e91ab4-67fa-11e7-8039-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:13 GMT'] + If-None-Match: ['"0x8D4CB18B2F11CE9"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ce40a0a8-68f4-11e7-b010-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:29 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer6b421e13/blob1?comp=metadata @@ -90,10 +90,10 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:41:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [6100558a-0001-00f5-0407-fc70c5000000] + x-ms-request-id: [71f70973-0001-00f7-1301-fd723f000000] x-ms-version: ['2017-04-17'] status: {code: 304, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_unmodified.yaml index fb986b19..1f44abed 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d90429ba-67fa-11e7-8bf2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ce5bdfdc-68f4-11e7-a7a6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd95f1c20?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:13 GMT'] - ETag: ['"0x8D4CA1EBD13DCB6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:30 GMT'] + ETag: ['"0x8D4CB18B32771FC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [23a83f45-0001-0047-3707-fc8bbf000000] + x-ms-request-id: [b0c07b70-0001-00c6-6601-fd29e8000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d91b0b50-67fa-11e7-a373-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:14 GMT'] + x-ms-client-request-id: [ce72f9d8-68f4-11e7-a942-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd95f1c20/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:13 GMT'] - ETag: ['"0x8D4CA1EBD23AB1F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:30 GMT'] + ETag: ['"0x8D4CB18B330C9D1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [23a83f57-0001-0047-4707-fc8bbf000000] + x-ms-request-id: [b0c07b8b-0001-00c6-7f01-fd29e8000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,23 +50,23 @@ interactions: body: null headers: Connection: [keep-alive] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:14 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d922c662-67fa-11e7-8d7d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:14 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:30 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ce7ba88a-68f4-11e7-9f8a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:30 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerd95f1c20/blob1?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:13 GMT'] - ETag: ['"0x8D4CA1EBD23AB1F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:30 GMT'] + ETag: ['"0x8D4CB18B330C9D1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [23a83f6a-0001-0047-5707-fc8bbf000000] + x-ms-request-id: [b0c07ba6-0001-00c6-1801-fd29e8000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_unmodified_fail.yaml index f873914c..a31415eb 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_metadata_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d941bc14-67fa-11e7-ab1e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:14 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ce996ee2-68f4-11e7-86c4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6be21e1b?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:13 GMT'] - ETag: ['"0x8D4CA1EBD670490"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:31 GMT'] + ETag: ['"0x8D4CB18B3BE8FED"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d0562e38-0001-0102-6407-fc107b000000] + x-ms-request-id: [0074f60b-0001-0133-5f01-fd4bac000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d956da68-67fa-11e7-b2ab-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:14 GMT'] + x-ms-client-request-id: [ceadf84c-68f4-11e7-9e19-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6be21e1b/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:13 GMT'] - ETag: ['"0x8D4CA1EBD60BF22"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:31 GMT'] + ETag: ['"0x8D4CB18B369BEAA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d0562e42-0001-0102-6a07-fc107b000000] + x-ms-request-id: [0074f621-0001-0133-6f01-fd4bac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,24 +50,24 @@ interactions: body: null headers: Connection: [keep-alive] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:14 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d95efca2-67fa-11e7-8907-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:14 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:15:30 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ceb3fe7e-68f4-11e7-9cbf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:30 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer6be21e1b/blob1?comp=metadata response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:d0562e4b-0001-0102-7107-fc107b000000\n\ - Time:2017-07-13T18:41:14.2528087Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:0074f62d-0001-0133-7a01-fd4bac000000\n\ + Time:2017-07-15T00:30:32.2157128Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [d0562e4b-0001-0102-7107-fc107b000000] + x-ms-request-id: [0074f62d-0001-0133-7a01-fd4bac000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_match.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_match.yaml index f4105d8d..0ac65c25 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d980f4b0-67fa-11e7-b63c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:14 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ced1cd1e-68f4-11e7-8616-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8a2f1b15?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:13 GMT'] - ETag: ['"0x8D4CA1EBD6EBA36"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] + ETag: ['"0x8D4CB18B4EF6F00"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:34 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [47f6af44-0001-00a5-2707-fc6fcd000000] + x-ms-request-id: [173bb1f0-0001-00ed-5c01-fd5d50000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d994d00c-67fa-11e7-ada9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:14 GMT'] + x-ms-client-request-id: [cee89c10-68f4-11e7-b5fb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8a2f1b15/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:13 GMT'] - ETag: ['"0x8D4CA1EBD9EBDB3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] + ETag: ['"0x8D4CB18B3A48899"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [47f6af59-0001-00a5-3907-fc6fcd000000] + x-ms-request-id: [173bb205-0001-00ed-6e01-fd5d50000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d99c51c6-67fa-11e7-aba7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:14 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ceeee3b8-68f4-11e7-9c55-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:31 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer8a2f1b15/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:13 GMT'] - ETag: ['"0x8D4CA1EBD9EBDB3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] + ETag: ['"0x8D4CB18B3A48899"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [47f6af7b-0001-00a5-5707-fc6fcd000000] + x-ms-request-id: [173bb21a-0001-00ed-8001-fd5d50000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -79,10 +79,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-Match: ['"0x8D4CA1EBD9EBDB3"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d9a1557a-67fa-11e7-b1c9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:14 GMT'] + If-Match: ['"0x8D4CB18B3A48899"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cef58d4c-68f4-11e7-a114-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:31 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer8a2f1b15/blob1 @@ -93,15 +93,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:13 GMT'] - ETag: ['"0x8D4CA1EBD9EBDB3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] + ETag: ['"0x8D4CB18B3A48899"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [47f6af87-0001-00a5-6207-fc6fcd000000] + x-ms-request-id: [173bb226-0001-00ed-0c01-fd5d50000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_match_fail.yaml index 7631c469..b1aed940 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d9bcc77e-67fa-11e7-a7ac-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cf12c83a-68f4-11e7-a2b2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer177b1d10?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:14 GMT'] - ETag: ['"0x8D4CA1EBDF8BC3C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:32 GMT'] + ETag: ['"0x8D4CB18B437325F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [349d51a6-0001-002f-5807-fcd5ee000000] + x-ms-request-id: [99dead96-0001-0007-5a01-fda251000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d9d0d8fe-67fa-11e7-b51f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:15 GMT'] + x-ms-client-request-id: [cf28e8e2-68f4-11e7-b170-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer177b1d10/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:14 GMT'] - ETag: ['"0x8D4CA1EBDD9392F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:32 GMT'] + ETag: ['"0x8D4CB18B3E54717"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [349d51b3-0001-002f-6307-fcd5ee000000] + x-ms-request-id: [99deadb0-0001-0007-6d01-fda251000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,20 +51,20 @@ interactions: headers: Connection: [keep-alive] If-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d9d65506-67fa-11e7-a140-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cf2fad3a-68f4-11e7-8d18-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:31 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer177b1d10/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [349d51bd-0001-002f-6b07-fcd5ee000000] + x-ms-request-id: [99deadc4-0001-0007-8001-fda251000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_modified.yaml index 154c851c..2bab89dd 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d9f29354-67fa-11e7-885c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cf4bfe68-68f4-11e7-98fe-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerddef1c49?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:15 GMT'] - ETag: ['"0x8D4CA1EBE109E82"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:32 GMT'] + ETag: ['"0x8D4CB18B3E05A83"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e8786a70-0001-00a7-6807-fc6d37000000] + x-ms-request-id: [542c03c5-0001-0061-2101-fd100b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [da066fd2-67fa-11e7-8e4e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:15 GMT'] + x-ms-client-request-id: [cf621fcc-68f4-11e7-926a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerddef1c49/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:15 GMT'] - ETag: ['"0x8D4CA1EBE0ED1C8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:32 GMT'] + ETag: ['"0x8D4CB18B41D9F9B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e8786a8e-0001-00a7-0407-fc6d37000000] + x-ms-request-id: [542c03d6-0001-0061-2f01-fd100b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,10 +50,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:15 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [da10a2e8-67fa-11e7-a8db-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:15 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cf67ba86-68f4-11e7-932e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:31 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerddef1c49/blob1 @@ -64,15 +64,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:15 GMT'] - ETag: ['"0x8D4CA1EBE0ED1C8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:32 GMT'] + ETag: ['"0x8D4CB18B41D9F9B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e8786ab0-0001-00a7-2007-fc6d37000000] + x-ms-request-id: [542c03dc-0001-0061-3401-fd100b000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_modified_fail.yaml index 06be210d..4f5e2a21 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [da2b7ac0-67fa-11e7-9f02-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cf852648-68f4-11e7-b74a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer713f1e44?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:14 GMT'] - ETag: ['"0x8D4CA1EBE49E04E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] + ETag: ['"0x8D4CB18B483F4D9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9c97ecaa-0001-000d-0407-fcbbd8000000] + x-ms-request-id: [ddae76a7-0001-0093-2f01-fdc29f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [da4135e2-67fa-11e7-b182-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:15 GMT'] + x-ms-client-request-id: [cf9d068c-68f4-11e7-8282-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer713f1e44/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:14 GMT'] - ETag: ['"0x8D4CA1EBE497456"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] + ETag: ['"0x8D4CB18B45890A6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9c97ecbf-0001-000d-1507-fcbbd8000000] + x-ms-request-id: [ddae76cb-0001-0093-4b01-fdc29f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,10 +50,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:15 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [da46f4ba-67fa-11e7-b1b9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:15 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:45:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cfa2c78c-68f4-11e7-bdfe-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:32 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer713f1e44/blob1 @@ -61,10 +61,10 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:41:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [9c97eccd-0001-000d-2107-fcbbd8000000] + x-ms-request-id: [ddae76e2-0001-0093-6001-fdc29f000000] x-ms-version: ['2017-04-17'] status: {code: 304, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_none_match.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_none_match.yaml index 9602101e..004da0f5 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_none_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_none_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [da615c94-67fa-11e7-9858-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cfc46c5e-68f4-11e7-96bd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer18061d24?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:15 GMT'] - ETag: ['"0x8D4CA1EBE7AFCE6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:32 GMT'] + ETag: ['"0x8D4CB18B44024C6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [2de508fc-0001-008c-2107-fc198f000000] + x-ms-request-id: [2b3eb8e2-0001-013d-4e01-fda7a7000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [da75e5c6-67fa-11e7-ba3a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:16 GMT'] + x-ms-client-request-id: [cfdb7dc2-68f4-11e7-9614-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer18061d24/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:15 GMT'] - ETag: ['"0x8D4CA1EBE7E7098"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:32 GMT'] + ETag: ['"0x8D4CB18B49704C3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [2de5091c-0001-008c-3b07-fc198f000000] + x-ms-request-id: [2b3eb8fc-0001-013d-5e01-fda7a7000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] If-None-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [da7be9cc-67fa-11e7-80f1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cfe19646-68f4-11e7-a963-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:32 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer18061d24/blob1 @@ -64,15 +64,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:15 GMT'] - ETag: ['"0x8D4CA1EBE7E7098"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:32 GMT'] + ETag: ['"0x8D4CB18B49704C3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [2de50923-0001-008c-4207-fc198f000000] + x-ms-request-id: [2b3eb90a-0001-013d-6901-fda7a7000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_none_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_none_match_fail.yaml index 1384a67e..2f8c9207 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_none_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_none_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [da974af4-67fa-11e7-b0c2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cfffcff6-68f4-11e7-8099-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraf8e1f1f?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:16 GMT'] - ETag: ['"0x8D4CA1EBEBE2ED4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] + ETag: ['"0x8D4CB18B4C588D8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d4b33c3b-0001-007f-1307-fccae6000000] + x-ms-request-id: [9ca76b17-0001-0043-3701-fd7e3d000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [daabd328-67fa-11e7-b8fc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:16 GMT'] + x-ms-client-request-id: [d014ea9e-68f4-11e7-840f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:33 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineraf8e1f1f/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:16 GMT'] - ETag: ['"0x8D4CA1EBEB43045"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] + ETag: ['"0x8D4CB18B4D095FC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d4b33c59-0001-007f-2e07-fccae6000000] + x-ms-request-id: [9ca76b34-0001-0043-4d01-fd7e3d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dab2b724-67fa-11e7-a3d6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d01bf140-68f4-11e7-a5f5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:33 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontaineraf8e1f1f/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:16 GMT'] - ETag: ['"0x8D4CA1EBEB43045"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] + ETag: ['"0x8D4CB18B4D095FC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [d4b33c75-0001-007f-4807-fccae6000000] + x-ms-request-id: [9ca76b43-0001-0043-5901-fd7e3d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -79,10 +79,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-None-Match: ['"0x8D4CA1EBEB43045"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dab817b4-67fa-11e7-b131-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:16 GMT'] + If-None-Match: ['"0x8D4CB18B4D095FC"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d0216fee-68f4-11e7-91df-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:33 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontaineraf8e1f1f/blob1 @@ -90,10 +90,10 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:41:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [d4b33c91-0001-007f-6307-fccae6000000] + x-ms-request-id: [9ca76b50-0001-0043-6601-fd7e3d000000] x-ms-version: ['2017-04-17'] status: {code: 304, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_unmodified.yaml index f4d8fec1..05984d33 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dadf9bb8-67fa-11e7-ac69-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d0457894-68f4-11e7-b354-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:33 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer187e1d2c?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:16 GMT'] - ETag: ['"0x8D4CA1EBEEC0E09"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] + ETag: ['"0x8D4CB18B5008121"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:34 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [293ab9ee-0001-00ea-1107-fcabd5000000] + x-ms-request-id: [6d1f655d-0001-0075-4001-fdd36f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [db076b66-67fa-11e7-b8de-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:17 GMT'] + x-ms-client-request-id: [d085ef78-68f4-11e7-b3c0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:33 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer187e1d2c/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:16 GMT'] - ETag: ['"0x8D4CA1EBF101C7C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] + ETag: ['"0x8D4CB18B54146FB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:34 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [293aba00-0001-00ea-1f07-fcabd5000000] + x-ms-request-id: [6d1f659f-0001-0075-7b01-fdd36f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,10 +50,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:17 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [db0dbaa2-67fa-11e7-acfa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:17 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d08b95d8-68f4-11e7-b7c1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:33 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer187e1d2c/blob1 @@ -64,15 +64,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:16 GMT'] - ETag: ['"0x8D4CA1EBF101C7C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] + ETag: ['"0x8D4CB18B54146FB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:34 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [293aba02-0001-00ea-2107-fcabd5000000] + x-ms-request-id: [6d1f65a4-0001-0075-8001-fdd36f000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_unmodified_fail.yaml index 107b86a5..d54bc1df 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_properties_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [db2aa21e-67fa-11e7-9aa1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d0a6bc80-68f4-11e7-9212-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:33 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb02e1f27?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:16 GMT'] - ETag: ['"0x8D4CA1EBF494D77"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] + ETag: ['"0x8D4CB18B55AA6F6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:34 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e1d7a950-0001-00dc-0c07-fc0687000000] + x-ms-request-id: [8580b2d5-0001-0092-7001-fdc362000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [db3ea6a8-67fa-11e7-ba53-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:17 GMT'] + x-ms-client-request-id: [d0bba4a6-68f4-11e7-8ab2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb02e1f27/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:16 GMT'] - ETag: ['"0x8D4CA1EBF473C00"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] + ETag: ['"0x8D4CB18B57706F9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e1d7a964-0001-00dc-1d07-fc0687000000] + x-ms-request-id: [8580b2df-0001-0092-7801-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,21 +50,21 @@ interactions: body: null headers: Connection: [keep-alive] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:17 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [db449d2e-67fa-11e7-91de-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:17 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:15:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d0c17158-68f4-11e7-9edc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:34 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerb02e1f27/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [e1d7a977-0001-00dc-2f07-fc0687000000] + x-ms-request-id: [8580b2e9-0001-0092-0201-fdc362000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_match.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_match.yaml index 56a25331..47546bbb 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [db61be9a-67fa-11e7-af65-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d0dec990-68f4-11e7-b5e6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer751d1669?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:17 GMT'] - ETag: ['"0x8D4CA1EBF962062"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:34 GMT'] + ETag: ['"0x8D4CB18B5B1987F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4cce7770-0001-011f-5507-fcc991000000] + x-ms-request-id: [dd8c4b55-0001-00c4-0201-fd2b12000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [db772468-67fa-11e7-84a9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:17 GMT'] + x-ms-client-request-id: [d0f367b0-68f4-11e7-a060-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer751d1669/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:17 GMT'] - ETag: ['"0x8D4CA1EBF7F6D19"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:35 GMT'] + ETag: ['"0x8D4CB18B5AEC313"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4cce777e-0001-011f-6007-fcc991000000] + x-ms-request-id: [dd8c4b67-0001-00c4-1001-fd2b12000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [db7c8be4-67fa-11e7-9392-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d0f8b7ec-68f4-11e7-821b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:34 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer751d1669/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:17 GMT'] - ETag: ['"0x8D4CA1EBF7F6D19"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:35 GMT'] + ETag: ['"0x8D4CB18B5AEC313"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [4cce778c-0001-011f-6d07-fcc991000000] + x-ms-request-id: [dd8c4b73-0001-00c4-1b01-fd2b12000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -79,10 +79,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-Match: ['"0x8D4CA1EBF7F6D19"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [db819c62-67fa-11e7-b5a0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:18 GMT'] + If-Match: ['"0x8D4CB18B5AEC313"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d0fd89d4-68f4-11e7-85a6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:34 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -94,16 +94,16 @@ interactions: Content-Length: ['11'] Content-Range: [bytes 0-10/11] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:17 GMT'] - ETag: ['"0x8D4CA1EBF7F6D19"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:35 GMT'] + ETag: ['"0x8D4CB18B5AEC313"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [XrY7u+Ae7tCTyyK7j1rNww==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [4cce779b-0001-011f-7b07-fcc991000000] + x-ms-request-id: [dd8c4b86-0001-00c4-2c01-fd2b12000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_match_fail.yaml index b47abd17..bb5e2273 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [db9dd2cc-67fa-11e7-98ed-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d118e17a-68f4-11e7-bf51-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainereafe1864?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:18 GMT'] - ETag: ['"0x8D4CA1EC03593EC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:35 GMT'] + ETag: ['"0x8D4CB18B5F2775E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dca5458d-0001-00fe-5407-fc68b1000000] + x-ms-request-id: [b36477a9-0001-006a-6001-fd087f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [dbb399ae-67fa-11e7-9e5e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:18 GMT'] + x-ms-client-request-id: [d12d2acc-68f4-11e7-b3e5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainereafe1864/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:18 GMT'] - ETag: ['"0x8D4CA1EBFBC3310"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:35 GMT'] + ETag: ['"0x8D4CB18B5E8C992"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dca5459f-0001-00fe-6207-fc68b1000000] + x-ms-request-id: [b36477c0-0001-006a-7401-fd087f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,24 +51,24 @@ interactions: headers: Connection: [keep-alive] If-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dbb9e926-67fa-11e7-a8b1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d13348ee-68f4-11e7-8967-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:34 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainereafe1864/blob1 response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:dca545b1-0001-00fe-7107-fc68b1000000\n\ - Time:2017-07-13T18:41:18.9519614Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:b36477cf-0001-006a-0301-fd087f000000\n\ + Time:2017-07-15T00:30:35.9073149Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [dca545b1-0001-00fe-7107-fc68b1000000] + x-ms-request-id: [b36477cf-0001-006a-0301-fd087f000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_modified.yaml index 8e562511..fc7e1d21 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dbdd869c-67fa-11e7-9240-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d14de140-68f4-11e7-ad0e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbad9179d?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:18 GMT'] - ETag: ['"0x8D4CA1EC0200453"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:36 GMT'] + ETag: ['"0x8D4CB18B67320C7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6d749e30-0001-00f0-5c07-fc84ba000000] + x-ms-request-id: [d3d2651a-0001-0114-7901-fdd1e5000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [dbf16cfa-67fa-11e7-8fcb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:18 GMT'] + x-ms-client-request-id: [d162769e-68f4-11e7-9f7c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbad9179d/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:18 GMT'] - ETag: ['"0x8D4CA1EBFF9951F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:36 GMT'] + ETag: ['"0x8D4CB18B61E8982"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6d749e42-0001-00f0-6c07-fc84ba000000] + x-ms-request-id: [d3d2653f-0001-0114-1b01-fdd1e5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,10 +50,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:18 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dbf6e7d8-67fa-11e7-9ed6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:18 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d1690e52-68f4-11e7-b650-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:35 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -65,16 +65,16 @@ interactions: Content-Length: ['11'] Content-Range: [bytes 0-10/11] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:18 GMT'] - ETag: ['"0x8D4CA1EBFF9951F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:36 GMT'] + ETag: ['"0x8D4CB18B61E8982"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [XrY7u+Ae7tCTyyK7j1rNww==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [6d749e55-0001-00f0-7c07-fc84ba000000] + x-ms-request-id: [d3d26559-0001-0114-3301-fdd1e5000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_modified_fail.yaml index 78ba6ef3..decdea94 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dc11257e-67fa-11e7-8134-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d186d612-68f4-11e7-b250-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer36cd1998?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:18 GMT'] - ETag: ['"0x8D4CA1EC03F898C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:35 GMT'] + ETag: ['"0x8D4CB18B623EBCA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f67832e2-0001-001b-0b07-fc7a46000000] + x-ms-request-id: [35cfc78a-0001-00e2-6901-fdb0a6000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [dc25e78c-67fa-11e7-9fd4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:19 GMT'] + x-ms-client-request-id: [d19b52b8-68f4-11e7-b4a3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer36cd1998/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:18 GMT'] - ETag: ['"0x8D4CA1EC02E6A7E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:35 GMT'] + ETag: ['"0x8D4CB18B657091E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f6783307-0001-001b-2707-fc7a46000000] + x-ms-request-id: [35cfc79d-0001-00e2-7901-fdb0a6000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,10 +50,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:19 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dc2dc364-67fa-11e7-adaf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:19 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:45:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d1a1f212-68f4-11e7-8237-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:35 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -62,10 +62,10 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:41:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [f678332b-0001-001b-4707-fc7a46000000] + x-ms-request-id: [35cfc7b4-0001-00e2-0e01-fdb0a6000000] x-ms-version: ['2017-04-17'] status: {code: 304, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_none_match.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_none_match.yaml index e68b9401..e16214b9 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_none_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_none_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dc497a14-67fa-11e7-87d7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d1c02ed0-68f4-11e7-8983-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainereb891878?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:18 GMT'] - ETag: ['"0x8D4CA1EC056A4DE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:35 GMT'] + ETag: ['"0x8D4CB18B6676D6C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [750b3945-0001-0086-4607-fc0006000000] + x-ms-request-id: [ccd3a8d4-0001-0128-7001-fd653e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [dc5de22e-67fa-11e7-94b1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:19 GMT'] + x-ms-client-request-id: [d1d480ba-68f4-11e7-a490-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainereb891878/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:18 GMT'] - ETag: ['"0x8D4CA1EC0662627"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:35 GMT'] + ETag: ['"0x8D4CB18B6904C2D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [750b395c-0001-0086-5a07-fc0006000000] + x-ms-request-id: [ccd3a8ef-0001-0128-0501-fd653e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] If-None-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dc63a380-67fa-11e7-afd9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d1da812c-68f4-11e7-981f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:36 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -65,16 +65,16 @@ interactions: Content-Length: ['11'] Content-Range: [bytes 0-10/11] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:18 GMT'] - ETag: ['"0x8D4CA1EC0662627"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:35 GMT'] + ETag: ['"0x8D4CB18B6904C2D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [XrY7u+Ae7tCTyyK7j1rNww==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [750b3968-0001-0086-6607-fc0006000000] + x-ms-request-id: [ccd3a905-0001-0128-1901-fd653e000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_none_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_none_match_fail.yaml index bf05dc9a..dbe054e0 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_none_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_none_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dc8011be-67fa-11e7-be6c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d1f81ca8-68f4-11e7-ac49-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6bc41a73?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:19 GMT'] - ETag: ['"0x8D4CA1EC09A9FC4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:36 GMT'] + ETag: ['"0x8D4CB18B6FCB4DA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5f89bede-0001-0065-1207-fce589000000] + x-ms-request-id: [d5ad69f5-0001-0042-3a01-fd7fc0000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [dca1699a-67fa-11e7-84aa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:19 GMT'] + x-ms-client-request-id: [d20cc254-68f4-11e7-afb1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6bc41a73/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:19 GMT'] - ETag: ['"0x8D4CA1EC0AA404E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:36 GMT'] + ETag: ['"0x8D4CB18B6C82F63"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5f89bf4a-0001-0065-5c07-fce589000000] + x-ms-request-id: [d5ad6a11-0001-0042-5401-fd7fc0000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dca81290-67fa-11e7-81aa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d2122d18-68f4-11e7-a99c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:36 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer6bc41a73/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:19 GMT'] - ETag: ['"0x8D4CA1EC0AA404E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:36 GMT'] + ETag: ['"0x8D4CB18B6C82F63"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [5f89bf6d-0001-0065-7907-fce589000000] + x-ms-request-id: [d5ad6a25-0001-0042-6501-fd7fc0000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -79,10 +79,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-None-Match: ['"0x8D4CA1EC0AA404E"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dcad231e-67fa-11e7-988d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:19 GMT'] + If-None-Match: ['"0x8D4CB18B6C82F63"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d217cb68-68f4-11e7-b48f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:36 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -91,10 +91,10 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:41:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [5f89bf87-0001-0065-1007-fce589000000] + x-ms-request-id: [d5ad6a3b-0001-0042-7a01-fd7fc0000000] x-ms-version: ['2017-04-17'] status: {code: 304, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_unmodified.yaml index fbdb1d84..290d284d 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dcd96368-67fa-11e7-adab-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d232e0b0-68f4-11e7-9a0e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerec011880?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:20 GMT'] - ETag: ['"0x8D4CA1EC1025221"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:36 GMT'] + ETag: ['"0x8D4CB18B6E70077"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [003193df-0001-00bb-4307-fcb520000000] + x-ms-request-id: [099721f6-0001-00af-3101-fd7644000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [dcef7c98-67fa-11e7-9b46-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:20 GMT'] + x-ms-client-request-id: [d2471cba-68f4-11e7-a379-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerec011880/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:20 GMT'] - ETag: ['"0x8D4CA1EC0F82034"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:36 GMT'] + ETag: ['"0x8D4CB18B702AB34"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [003193f7-0001-00bb-5707-fcb520000000] + x-ms-request-id: [09972204-0001-00af-3d01-fd7644000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,10 +50,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:20 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dcfec0fe-67fa-11e7-9b7a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:20 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d24cd986-68f4-11e7-88fb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:36 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -65,16 +65,16 @@ interactions: Content-Length: ['11'] Content-Range: [bytes 0-10/11] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:20 GMT'] - ETag: ['"0x8D4CA1EC0F82034"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:36 GMT'] + ETag: ['"0x8D4CB18B702AB34"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [XrY7u+Ae7tCTyyK7j1rNww==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [0031941e-0001-00bb-7607-fcb520000000] + x-ms-request-id: [09972211-0001-00af-4901-fd7644000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_unmodified_fail.yaml index 4c2d36fc..9d3d51cb 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dd1eeee2-67fa-11e7-8d14-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d269de8a-68f4-11e7-849b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6c641a7b?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:20 GMT'] - ETag: ['"0x8D4CA1EC1622DC8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:37 GMT'] + ETag: ['"0x8D4CB18B71C5FD2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [52b8e8d4-0001-013a-7607-fc5122000000] + x-ms-request-id: [acd7c550-0001-0055-0401-fdbfa3000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [dd34d658-67fa-11e7-9218-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:20 GMT'] + x-ms-client-request-id: [d27e2f3e-68f4-11e7-b280-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6c641a7b/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:20 GMT'] - ETag: ['"0x8D4CA1EC13D4C01"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:37 GMT'] + ETag: ['"0x8D4CB18B739F209"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [52b8e8e7-0001-013a-0707-fc5122000000] + x-ms-request-id: [acd7c560-0001-0055-1101-fdbfa3000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,25 +50,25 @@ interactions: body: null headers: Connection: [keep-alive] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:20 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dd3a7e3a-67fa-11e7-af42-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:20 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:15:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d284f6c0-68f4-11e7-8afd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:37 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer6c641a7b/blob1 response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:52b8e8f7-0001-013a-1507-fc5122000000\n\ - Time:2017-07-13T18:41:20.9149698Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:acd7c570-0001-0055-1f01-fdbfa3000000\n\ + Time:2017-07-15T00:30:37.8636847Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [52b8e8f7-0001-013a-1507-fc5122000000] + x-ms-request-id: [acd7c570-0001-0055-1f01-fdbfa3000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_match.yaml b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_match.yaml index 9e7f4965..369ae635 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dd576394-67fa-11e7-91d1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d2a0668a-68f4-11e7-8650-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2741b59?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:20 GMT'] - ETag: ['"0x8D4CA1EC1844F7A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:38 GMT'] + ETag: ['"0x8D4CB18B7BFEA18"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [93dcade1-0001-0051-2f07-fc4a21000000] + x-ms-request-id: [a2915eeb-0001-00d7-4801-fd1ef3000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['2048'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [dd757b74-67fa-11e7-8440-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:21 GMT'] + x-ms-client-request-id: [d2c13a86-68f4-11e7-b1f4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2741b59/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:20 GMT'] - ETag: ['"0x8D4CA1EC18E60C7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B78B7C7F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8178930f-0001-00d6-3f07-fc1f0e000000] + x-ms-request-id: [aaef3a33-0001-00c8-6301-fdc5e3000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dd8b77cc-67fa-11e7-bbe5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d2d90d64-68f4-11e7-a929-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:37 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -63,13 +63,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:20 GMT'] - ETag: ['"0x8D4CA1EC193E022"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B794F424"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [81789324-0001-00d6-4e07-fc1f0e000000] + x-ms-request-id: [aaef3a5f-0001-00c8-0b01-fdc5e3000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -78,9 +78,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dd91d89e-67fa-11e7-9b5b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d2df39a8-68f4-11e7-ac2b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:37 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=1024-1535] x-ms-version: ['2017-04-17'] @@ -90,13 +90,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:20 GMT'] - ETag: ['"0x8D4CA1EC19A22BE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B79A9A7C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [8178932e-0001-00d6-5607-fc1f0e000000] + x-ms-request-id: [aaef3a7e-0001-00c8-2701-fdc5e3000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -104,9 +104,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dd976110-67fa-11e7-a0bc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d2e4b100-68f4-11e7-9130-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:37 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainera2741b59/blob1 @@ -116,16 +116,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['2048'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:20 GMT'] - ETag: ['"0x8D4CA1EC19A22BE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B79A9A7C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [81789336-0001-00d6-5e07-fc1f0e000000] + x-ms-request-id: [aaef3a8d-0001-00c8-3501-fdc5e3000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -133,10 +133,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-Match: ['"0x8D4CA1EC19A22BE"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dd9c5454-67fa-11e7-9513-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:21 GMT'] + If-Match: ['"0x8D4CB18B79A9A7C"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d2e9d306-68f4-11e7-bb81-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:37 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainera2741b59/blob1?comp=pagelist @@ -144,14 +144,14 @@ interactions: body: {string: "\uFEFF051110241535"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:20 GMT'] - ETag: ['"0x8D4CA1EC19A22BE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B79A9A7C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-blob-content-length: ['2048'] - x-ms-request-id: [8178933f-0001-00d6-6507-fc1f0e000000] + x-ms-request-id: [aaef3aa5-0001-00c8-4d01-fdc5e3000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_match_fail.yaml index f9d0e1a2..5792fc26 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ddbce174-67fa-11e7-96d9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d308e3d8-68f4-11e7-a5c2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer31141d54?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:21 GMT'] - ETag: ['"0x8D4CA1EC1F61894"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B87FA1FF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bfc966c8-0001-0119-6407-fc3ee9000000] + x-ms-request-id: [d4387180-0001-0136-1401-fdbfd3000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['2048'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [ddd185c0-67fa-11e7-8446-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:21 GMT'] + x-ms-client-request-id: [d31f329e-68f4-11e7-8068-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer31141d54/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:21 GMT'] - ETag: ['"0x8D4CA1EC1EA9B2C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B7E82C9A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [01f3fa45-0001-005e-1407-fca7d7000000] + x-ms-request-id: [0392e1d8-0001-0073-7201-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dde80cfa-67fa-11e7-8216-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d3348728-68f4-11e7-b225-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:38 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -63,13 +63,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:21 GMT'] - ETag: ['"0x8D4CA1EC1F068A0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B7F04469"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [01f3fa5a-0001-005e-2507-fca7d7000000] + x-ms-request-id: [0392e1ee-0001-0073-0301-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -78,9 +78,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ddeea198-67fa-11e7-8299-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d33a718a-68f4-11e7-a306-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:38 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=1024-1535] x-ms-version: ['2017-04-17'] @@ -90,13 +90,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:21 GMT'] - ETag: ['"0x8D4CA1EC1F6AB4D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B7F5C3BB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [01f3fa6a-0001-005e-3307-fca7d7000000] + x-ms-request-id: [0392e1fd-0001-0073-0e01-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -105,23 +105,23 @@ interactions: headers: Connection: [keep-alive] If-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ddf3fb00-67fa-11e7-b48a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d34063ec-68f4-11e7-9978-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:38 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer31141d54/blob1?comp=pagelist response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:01f3fa78-0001-005e-3f07-fca7d7000000\n\ - Time:2017-07-13T18:41:22.1506845Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:0392e20f-0001-0073-1e01-fd2417000000\n\ + Time:2017-07-15T00:30:39.7907687Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [01f3fa78-0001-005e-3f07-fca7d7000000] + x-ms-request-id: [0392e20f-0001-0073-1e01-fd2417000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_modified.yaml index 201a094e..0d030881 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [de1059f8-67fa-11e7-9f2a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d35f38f8-68f4-11e7-9393-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf7001c8d?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:21 GMT'] - ETag: ['"0x8D4CA1EC218E41E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B8111B5C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [00ba2666-0001-00dd-5107-fc077a000000] + x-ms-request-id: [b09c2385-0001-00a5-0f01-fd6fcd000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['2048'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [de24ecba-67fa-11e7-9e57-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:22 GMT'] + x-ms-client-request-id: [d3737a1e-68f4-11e7-ac7d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf7001c8d/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:21 GMT'] - ETag: ['"0x8D4CA1EC23B3AB9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B842E086"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0bf51128-0001-0072-3407-fc25ea000000] + x-ms-request-id: [108f9572-0001-00aa-1f01-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [de389468-67fa-11e7-a58c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d38ce08c-68f4-11e7-a9d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:38 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -63,13 +63,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:21 GMT'] - ETag: ['"0x8D4CA1EC2415693"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B84BBBCA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [0bf51135-0001-0072-3f07-fc25ea000000] + x-ms-request-id: [108f9594-0001-00aa-3e01-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -78,9 +78,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [de3e8e22-67fa-11e7-80a3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d395d674-68f4-11e7-b243-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:38 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=1024-1535] x-ms-version: ['2017-04-17'] @@ -90,13 +90,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:21 GMT'] - ETag: ['"0x8D4CA1EC246D588"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B857CBFB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [0bf51142-0001-0072-4b07-fc25ea000000] + x-ms-request-id: [108f95c6-0001-00aa-6b01-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -104,10 +104,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:22 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [de4602cc-67fa-11e7-a308-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:22 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d3a1dc62-68f4-11e7-8ef6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:38 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerf7001c8d/blob1?comp=pagelist @@ -115,14 +115,14 @@ interactions: body: {string: "\uFEFF051110241535"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:21 GMT'] - ETag: ['"0x8D4CA1EC246D588"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B857CBFB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-blob-content-length: ['2048'] - x-ms-request-id: [0bf51156-0001-0072-5a07-fc25ea000000] + x-ms-request-id: [108f95e3-0001-00aa-0701-fd823b000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_modified_fail.yaml index 934a1fdb..baf0f1ce 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [de6218a6-67fa-11e7-9720-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d3c58c18-68f4-11e7-9fda-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:39 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8ba41e88?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:21 GMT'] - ETag: ['"0x8D4CA1EC27F3AA0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B8C42A0E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [07cceac3-0001-0079-7007-fc3d9e000000] + x-ms-request-id: [6d6f28fc-0001-009f-3e01-fd2c6e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['2048'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [de791ccc-67fa-11e7-a6a5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:23 GMT'] + x-ms-client-request-id: [d3dc01f8-68f4-11e7-b6dd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:39 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8ba41e88/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:22 GMT'] - ETag: ['"0x8D4CA1EC29020C8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B8A55E73"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [04206e9f-0001-004a-7207-fc64b3000000] + x-ms-request-id: [c65e4eb2-0001-00f4-4301-fd7138000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [de8ebfe6-67fa-11e7-9f48-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d3ef6324-68f4-11e7-a2db-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:39 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -63,13 +63,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:22 GMT'] - ETag: ['"0x8D4CA1EC29726EC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B8AADD5D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [04206ece-0001-004a-1e07-fc64b3000000] + x-ms-request-id: [c65e4eb9-0001-00f4-4801-fd7138000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -78,9 +78,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [de9437fa-67fa-11e7-a3b9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d3f5e31e-68f4-11e7-98f6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:39 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=1024-1535] x-ms-version: ['2017-04-17'] @@ -90,13 +90,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:22 GMT'] - ETag: ['"0x8D4CA1EC29C7F13"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B8B0F8FF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [04206ee8-0001-004a-3507-fc64b3000000] + x-ms-request-id: [c65e4ec4-0001-00f4-5001-fd7138000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -104,10 +104,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:23 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [de9a460c-67fa-11e7-86ae-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:23 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:45:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d3fb09e2-68f4-11e7-8c33-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:39 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer8ba41e88/blob1?comp=pagelist @@ -116,10 +116,10 @@ interactions: headers: Content-Length: ['0'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [04206f0b-0001-004a-5707-fc64b3000000] + x-ms-request-id: [c65e4ecf-0001-00f4-5901-fd7138000000] x-ms-version: ['2017-04-17'] status: {code: 304, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_none_match.yaml b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_none_match.yaml index ab57753b..22dd44cd 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_none_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_none_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dfb057e8-67fa-11e7-9f83-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d41bbf1e-68f4-11e7-a167-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:39 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer319f1d68?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] - ETag: ['"0x8D4CA1EC4196669"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:39 GMT'] + ETag: ['"0x8D4CB18B8ABAC75"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bedd7cd3-0001-00f1-1f07-fc8547000000] + x-ms-request-id: [5ccd66fb-0001-004a-5a01-fd64b3000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['2048'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [dff68e4a-67fa-11e7-8cf6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:25 GMT'] + x-ms-client-request-id: [d42fb05a-68f4-11e7-93fb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:39 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer319f1d68/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] - ETag: ['"0x8D4CA1EC4102830"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:40 GMT'] + ETag: ['"0x8D4CB18B8FBCB76"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [acf06ac4-0001-009a-2c07-fcd811000000] + x-ms-request-id: [87124506-0001-00c7-1601-fd2815000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e00d892e-67fa-11e7-be7c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d445ad38-68f4-11e7-998f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:40 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -63,13 +63,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] - ETag: ['"0x8D4CA1EC415CE9A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:40 GMT'] + ETag: ['"0x8D4CB18B9020E34"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [acf06ad9-0001-009a-3f07-fcd811000000] + x-ms-request-id: [87124514-0001-00c7-2201-fd2815000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -78,9 +78,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e0154d08-67fa-11e7-9faf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d44c2fe6-68f4-11e7-98d4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:40 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=1024-1535] x-ms-version: ['2017-04-17'] @@ -90,13 +90,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] - ETag: ['"0x8D4CA1EC41D7128"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:40 GMT'] + ETag: ['"0x8D4CB18B907B48B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [acf06afc-0001-009a-5d07-fcd811000000] + x-ms-request-id: [87124524-0001-00c7-3001-fd2815000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -105,9 +105,9 @@ interactions: headers: Connection: [keep-alive] If-None-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e01aa38c-67fa-11e7-a3ae-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d4522810-68f4-11e7-b53f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:40 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer319f1d68/blob1?comp=pagelist @@ -115,14 +115,14 @@ interactions: body: {string: "\uFEFF051110241535"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] - ETag: ['"0x8D4CA1EC41D7128"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:40 GMT'] + ETag: ['"0x8D4CB18B907B48B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-blob-content-length: ['2048'] - x-ms-request-id: [acf06b13-0001-009a-7207-fcd811000000] + x-ms-request-id: [87124538-0001-00c7-4301-fd2815000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_none_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_none_match_fail.yaml index 5b5f6de2..e353e915 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_none_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_none_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e037ef70-67fa-11e7-a600-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d4711d10-68f4-11e7-ba4e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerca7b1f63?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] - ETag: ['"0x8D4CA1EC46575FA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:41 GMT'] + ETag: ['"0x8D4CB18B93A605B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3e39cc09-0001-012d-5c07-fc9141000000] + x-ms-request-id: [e7a25a8e-0001-0121-1b01-fd7fb0000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['2048'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [e04bb0f0-67fa-11e7-ad5c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:26 GMT'] + x-ms-client-request-id: [d4856c0c-68f4-11e7-9629-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerca7b1f63/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] - ETag: ['"0x8D4CA1EC462C403"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:41 GMT'] + ETag: ['"0x8D4CB18B95063C2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5a6f48fd-0001-00ae-0b07-fc77b9000000] + x-ms-request-id: [57e66c3c-0001-000e-7a01-fdb8df000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e061c7c8-67fa-11e7-a7fa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d49ab3c8-68f4-11e7-99fe-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:40 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -63,13 +63,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] - ETag: ['"0x8D4CA1EC46B7807"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:41 GMT'] + ETag: ['"0x8D4CB18B9563135"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [5a6f4917-0001-00ae-1e07-fc77b9000000] + x-ms-request-id: [57e66c46-0001-000e-0301-fdb8df000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -78,9 +78,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e0696c08-67fa-11e7-a066-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d4a0d23a-68f4-11e7-bb0c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:40 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=1024-1535] x-ms-version: ['2017-04-17'] @@ -90,13 +90,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] - ETag: ['"0x8D4CA1EC47193A9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:41 GMT'] + ETag: ['"0x8D4CB18B95BFEA8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [5a6f492b-0001-00ae-2d07-fc77b9000000] + x-ms-request-id: [57e66c55-0001-000e-1001-fdb8df000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -104,9 +104,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e06e9afa-67fa-11e7-861f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d4a67c30-68f4-11e7-b951-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:40 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerca7b1f63/blob1 @@ -116,16 +116,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['2048'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] - ETag: ['"0x8D4CA1EC47193A9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:41 GMT'] + ETag: ['"0x8D4CB18B95BFEA8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [5a6f4936-0001-00ae-3707-fc77b9000000] + x-ms-request-id: [57e66c65-0001-000e-1f01-fdb8df000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -133,10 +133,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-None-Match: ['"0x8D4CA1EC47193A9"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e073ba6e-67fa-11e7-88a8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:26 GMT'] + If-None-Match: ['"0x8D4CB18B95BFEA8"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d4ab5fb6-68f4-11e7-bd36-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:40 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerca7b1f63/blob1?comp=pagelist @@ -145,10 +145,10 @@ interactions: headers: Content-Length: ['0'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [5a6f493e-0001-00ae-3d07-fc77b9000000] + x-ms-request-id: [57e66c80-0001-000e-3901-fdb8df000000] x-ms-version: ['2017-04-17'] status: {code: 304, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_unmodified.yaml index 348b5e60..47e3e9b8 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e09089e6-67fa-11e7-aa44-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d4c90f28-68f4-11e7-8172-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32171d70?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:26 GMT'] - ETag: ['"0x8D4CA1EC4D5C42E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:41 GMT'] + ETag: ['"0x8D4CB18B9745BE5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f47abf8-0001-00c9-0607-fcc41e000000] + x-ms-request-id: [a13011e0-0001-011c-1f01-fdca96000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['2048'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [e0a632e6-67fa-11e7-a04e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:26 GMT'] + x-ms-client-request-id: [d4eda614-68f4-11e7-a229-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32171d70/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] - ETag: ['"0x8D4CA1EC4C2332E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:42 GMT'] + ETag: ['"0x8D4CB18B9C0EDC8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [122c3b7a-0001-0126-1207-fc8935000000] + x-ms-request-id: [92922bad-0001-001d-2501-fd8d3e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e0c06f94-67fa-11e7-81d7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d50ee176-68f4-11e7-8383-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:41 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -63,13 +63,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] - ETag: ['"0x8D4CA1EC4CA23DD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:42 GMT'] + ETag: ['"0x8D4CB18B9D032BE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [122c3b80-0001-0126-1707-fc8935000000] + x-ms-request-id: [92922bca-0001-001d-3b01-fd8d3e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -78,9 +78,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e0c7a48a-67fa-11e7-8fb3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d51a65e6-68f4-11e7-90e4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:41 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=1024-1535] x-ms-version: ['2017-04-17'] @@ -90,13 +90,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] - ETag: ['"0x8D4CA1EC4D0B4BC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:42 GMT'] + ETag: ['"0x8D4CB18B9D78719"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [122c3b88-0001-0126-1e07-fc8935000000] + x-ms-request-id: [92922be9-0001-001d-5301-fd8d3e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -104,10 +104,10 @@ interactions: body: null headers: Connection: [keep-alive] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:26 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e0ce68cc-67fa-11e7-a295-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:26 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:41 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d5234eae-68f4-11e7-aa2c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:41 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer32171d70/blob1?comp=pagelist @@ -115,14 +115,14 @@ interactions: body: {string: "\uFEFF051110241535"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:25 GMT'] - ETag: ['"0x8D4CA1EC4D0B4BC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:42 GMT'] + ETag: ['"0x8D4CB18B9D78719"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-blob-content-length: ['2048'] - x-ms-request-id: [122c3b8f-0001-0126-2507-fc8935000000] + x-ms-request-id: [92922bf7-0001-001d-6001-fd8d3e000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_unmodified_fail.yaml index fcbe38e2..e382374e 100644 --- a/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_get_page_ranges_iter_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e0ec5618-67fa-11e7-8cf5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d54383f4-68f4-11e7-9de6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainercb1b1f6b?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:26 GMT'] - ETag: ['"0x8D4CA1EC512A259"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:42 GMT'] + ETag: ['"0x8D4CB18BA47C51E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7c2ae97f-0001-003d-5907-fce1f2000000] + x-ms-request-id: [77469091-0001-0103-7f01-fd1186000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['2048'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [e1010914-67fa-11e7-978f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:27 GMT'] + x-ms-client-request-id: [d55c60c2-68f4-11e7-899a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainercb1b1f6b/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:26 GMT'] - ETag: ['"0x8D4CA1EC51851F1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:42 GMT'] + ETag: ['"0x8D4CB18BA26791A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b24a8ded-0001-0036-5a07-fcf986000000] + x-ms-request-id: [106254cc-0001-0040-0401-fd7d3a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e115a368-67fa-11e7-9e6f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d570acf8-68f4-11e7-9d88-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:42 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -63,13 +63,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:26 GMT'] - ETag: ['"0x8D4CA1EC51E94AA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:42 GMT'] + ETag: ['"0x8D4CB18BA2C467C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [b24a8e04-0001-0036-6e07-fcf986000000] + x-ms-request-id: [106254dd-0001-0040-1101-fd7d3a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -78,9 +78,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e11bed1a-67fa-11e7-b51e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d5766cd8-68f4-11e7-aa30-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:42 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=1024-1535] x-ms-version: ['2017-04-17'] @@ -90,13 +90,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:26 GMT'] - ETag: ['"0x8D4CA1EC523ECD1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:42 GMT'] + ETag: ['"0x8D4CB18BA31C5BC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [b24a8e19-0001-0036-7f07-fcf986000000] + x-ms-request-id: [106254f3-0001-0040-2301-fd7d3a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -104,24 +104,24 @@ interactions: body: null headers: Connection: [keep-alive] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:27 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e1213cca-67fa-11e7-84e6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:27 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:15:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d57bf4c8-68f4-11e7-90d4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:42 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainercb1b1f6b/blob1?comp=pagelist response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:b24a8e29-0001-0036-0f07-fcf986000000\n\ - Time:2017-07-13T18:41:26.7995454Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:10625503-0001-0040-3301-fd7d3a000000\n\ + Time:2017-07-15T00:30:43.7593771Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [b24a8e29-0001-0036-0f07-fcf986000000] + x-ms-request-id: [10625503-0001-0040-3301-fd7d3a000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_match.yaml b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_match.yaml index 745eadd6..266d04c9 100644 --- a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e1408974-67fa-11e7-af99-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d5a290f6-68f4-11e7-ae88-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2b21733?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:27 GMT'] - ETag: ['"0x8D4CA1EC5AA09A8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:43 GMT'] + ETag: ['"0x8D4CB18BACC296A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [61ea8339-0001-00a1-8007-fc9a4f000000] + x-ms-request-id: [11ab420b-0001-0125-3a01-fd8a32000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e155e134-67fa-11e7-a76e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:27 GMT'] + x-ms-client-request-id: [d5b6e574-68f4-11e7-aa10-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera2b21733/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:27 GMT'] - ETag: ['"0x8D4CA1EC55E412D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] + ETag: ['"0x8D4CB18BA7A9C0E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [61ea8359-0001-00a1-1a07-fc9a4f000000] + x-ms-request-id: [11ab422e-0001-0125-5801-fd8a32000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e15c7f7e-67fa-11e7-b3f0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d5c548e4-68f4-11e7-87bc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:42 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainera2b21733/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:27 GMT'] - ETag: ['"0x8D4CA1EC55E412D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] + ETag: ['"0x8D4CB18BA7A9C0E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [61ea8371-0001-00a1-3107-fc9a4f000000] + x-ms-request-id: [11ab4242-0001-0125-6a01-fd8a32000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -80,10 +80,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Match: ['"0x8D4CA1EC55E412D"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e1620066-67fa-11e7-bc97-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:27 GMT'] + If-Match: ['"0x8D4CB18BA7A9C0E"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d5cab158-68f4-11e7-bb9c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:42 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-proposed-lease-id: [00000000-1111-2222-3333-444444444444] @@ -93,13 +93,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:27 GMT'] - ETag: ['"0x8D4CA1EC55E412D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] + ETag: ['"0x8D4CB18BA7A9C0E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-id: [00000000-1111-2222-3333-444444444444] - x-ms-request-id: [61ea837f-0001-00a1-3e07-fc9a4f000000] + x-ms-request-id: [11ab424b-0001-0125-7101-fd8a32000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -107,9 +107,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e1680952-67fa-11e7-95d1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d5d0e280-68f4-11e7-99ba-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:42 GMT'] x-ms-lease-action: [break] x-ms-version: ['2017-04-17'] method: PUT @@ -117,13 +117,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:27 GMT'] - ETag: ['"0x8D4CA1EC55E412D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] + ETag: ['"0x8D4CB18BA7A9C0E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-time: ['0'] - x-ms-request-id: [61ea8390-0001-00a1-4e07-fc9a4f000000] + x-ms-request-id: [11ab425a-0001-0125-7f01-fd8a32000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_match_fail.yaml index 0c0bc395..83c1421b 100644 --- a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e18a377a-67fa-11e7-ad19-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:28 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d5ef15c0-68f4-11e7-b585-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1c94192e?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:27 GMT'] - ETag: ['"0x8D4CA1EC5AFFC52"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:43 GMT'] + ETag: ['"0x8D4CB18BAB2E187"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ebacdf79-0001-00e4-2e07-fc47de000000] + x-ms-request-id: [fb9e9c93-0001-00b7-2401-fd5bd1000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e19e7118-67fa-11e7-8b78-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:28 GMT'] + x-ms-client-request-id: [d6055fd8-68f4-11e7-ac67-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1c94192e/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:27 GMT'] - ETag: ['"0x8D4CA1EC5A6A1D9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:43 GMT'] + ETag: ['"0x8D4CB18BAC0D9D0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ebacdfa1-0001-00e4-5107-fc47de000000] + x-ms-request-id: [fb9e9cba-0001-00b7-4801-fd5bd1000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +52,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] If-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e1a4afc6-67fa-11e7-b4e6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:28 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d60b84a8-68f4-11e7-9806-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:43 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -62,14 +62,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainer1c94192e/blob1?comp=lease response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:ebacdfc0-0001-00e4-6f07-fc47de000000\n\ - Time:2017-07-13T18:41:28.1387740Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:fb9e9ccd-0001-00b7-5b01-fd5bd1000000\n\ + Time:2017-07-15T00:30:43.9112282Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [ebacdfc0-0001-00e4-6f07-fc47de000000] + x-ms-request-id: [fb9e9ccd-0001-00b7-5b01-fd5bd1000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_modified.yaml index ff21b622..fba79c8b 100644 --- a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e1c17924-67fa-11e7-b485-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:28 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d62a548c-68f4-11e7-944e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainereacc1867?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:27 GMT'] - ETag: ['"0x8D4CA1EC5D8B311"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:43 GMT'] + ETag: ['"0x8D4CB18BAE88D67"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b257303a-0001-005f-1f07-fca62a000000] + x-ms-request-id: [c237a938-0001-0049-1f01-fd67b4000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e1d4e574-67fa-11e7-8027-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:28 GMT'] + x-ms-client-request-id: [d6440062-68f4-11e7-8e0a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainereacc1867/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:28 GMT'] - ETag: ['"0x8D4CA1EC5DCFDE6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:43 GMT'] + ETag: ['"0x8D4CB18BB00116A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b2573056-0001-005f-3607-fca62a000000] + x-ms-request-id: [c237a950-0001-0049-3201-fd67b4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:28 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e1dd4be2-67fa-11e7-8ffb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:28 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d64a75fa-68f4-11e7-8133-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:43 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-proposed-lease-id: [00000000-1111-2222-3333-444444444444] @@ -64,13 +64,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:28 GMT'] - ETag: ['"0x8D4CA1EC5DCFDE6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:43 GMT'] + ETag: ['"0x8D4CB18BB00116A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-id: [00000000-1111-2222-3333-444444444444] - x-ms-request-id: [b2573070-0001-005f-4b07-fca62a000000] + x-ms-request-id: [c237a959-0001-0049-3801-fd67b4000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -78,9 +78,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e1e2c0f4-67fa-11e7-95b1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:28 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d6508436-68f4-11e7-882d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:43 GMT'] x-ms-lease-action: [break] x-ms-version: ['2017-04-17'] method: PUT @@ -88,13 +88,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:28 GMT'] - ETag: ['"0x8D4CA1EC5DCFDE6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:43 GMT'] + ETag: ['"0x8D4CB18BB00116A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-time: ['0'] - x-ms-request-id: [b257307d-0001-005f-5407-fca62a000000] + x-ms-request-id: [c237a961-0001-0049-3f01-fd67b4000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_modified_fail.yaml index 683ce798..99ccb1ec 100644 --- a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e1fe6eb0-67fa-11e7-a520-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:28 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d674cd50-68f4-11e7-ac36-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6ab21a62?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:28 GMT'] - ETag: ['"0x8D4CA1EC666BB72"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:29 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] + ETag: ['"0x8D4CB18BB37A80C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0357cbe2-0001-00b5-0e07-fc592b000000] + x-ms-request-id: [a677fc57-0001-00e4-0401-fd47de000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e215063e-67fa-11e7-927d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:29 GMT'] + x-ms-client-request-id: [d6887be8-68f4-11e7-b801-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6ab21a62/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:28 GMT'] - ETag: ['"0x8D4CA1EC61D6DE9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] + ETag: ['"0x8D4CB18BB4404CC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0357cc04-0001-00b5-2b07-fc592b000000] + x-ms-request-id: [a677fc6a-0001-00e4-1501-fd47de000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:29 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e21ac0ec-67fa-11e7-82f5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:29 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:45:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d68e2ed0-68f4-11e7-8a6c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:43 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -62,14 +62,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainer6ab21a62/blob1?comp=lease response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:0357cc20-0001-00b5-4507-fc592b000000\n\ - Time:2017-07-13T18:41:29.3324185Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:a677fc7a-0001-00e4-2401-fd47de000000\n\ + Time:2017-07-15T00:30:44.7483635Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [0357cc20-0001-00b5-4507-fc592b000000] + x-ms-request-id: [a677fc7a-0001-00e4-2401-fd47de000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_none_match.yaml b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_none_match.yaml index ac462dc5..924d5a80 100644 --- a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_none_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_none_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e240bcb6-67fa-11e7-81f4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d6a9316c-68f4-11e7-8d53-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1d1f1942?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:28 GMT'] - ETag: ['"0x8D4CA1EC652446F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:29 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] + ETag: ['"0x8D4CB18BBBC565D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cf79159c-0001-001c-2307-fc8cc3000000] + x-ms-request-id: [7649841c-0001-0102-6501-fd107b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e256899c-67fa-11e7-95ba-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:29 GMT'] + x-ms-client-request-id: [d6c405d2-68f4-11e7-8389-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1d1f1942/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:28 GMT'] - ETag: ['"0x8D4CA1EC65F3DB2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:29 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] + ETag: ['"0x8D4CB18BB802E90"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cf7915b4-0001-001c-3607-fc8cc3000000] + x-ms-request-id: [7649843d-0001-0102-7d01-fd107b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +52,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] If-None-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e25c8a40-67fa-11e7-a09f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d6caa5e2-68f4-11e7-bab9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:44 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-proposed-lease-id: [00000000-1111-2222-3333-444444444444] @@ -64,13 +64,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:28 GMT'] - ETag: ['"0x8D4CA1EC65F3DB2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:29 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] + ETag: ['"0x8D4CB18BB802E90"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-id: [00000000-1111-2222-3333-444444444444] - x-ms-request-id: [cf7915ca-0001-001c-4707-fc8cc3000000] + x-ms-request-id: [7649844b-0001-0102-0701-fd107b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -78,9 +78,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e2625a38-67fa-11e7-a142-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d6d1c546-68f4-11e7-8750-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:44 GMT'] x-ms-lease-action: [break] x-ms-version: ['2017-04-17'] method: PUT @@ -88,13 +88,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:28 GMT'] - ETag: ['"0x8D4CA1EC65F3DB2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:29 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] + ETag: ['"0x8D4CB18BB802E90"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-time: ['0'] - x-ms-request-id: [cf7915d0-0001-001c-4d07-fc8cc3000000] + x-ms-request-id: [76498460-0001-0102-1b01-fd107b000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_none_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_none_match_fail.yaml index 0553fc52..f1b47b16 100644 --- a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_none_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_none_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e283b994-67fa-11e7-a333-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d6ee4f5e-68f4-11e7-b859-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera13d1b3d?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:28 GMT'] - ETag: ['"0x8D4CA1EC6968F12"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:29 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] + ETag: ['"0x8D4CB18BBB6A8CA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cd1f9024-0001-0073-1d07-fc2417000000] + x-ms-request-id: [38ec35ab-0001-0080-6101-fdf77e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e2985d86-67fa-11e7-b0e0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:29 GMT'] + x-ms-client-request-id: [d702d9a6-68f4-11e7-9285-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera13d1b3d/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:28 GMT'] - ETag: ['"0x8D4CA1EC6A15BAE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:29 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] + ETag: ['"0x8D4CB18BBBE5483"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cd1f903f-0001-0073-3207-fc2417000000] + x-ms-request-id: [38ec35bd-0001-0080-7101-fdf77e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e29ed134-67fa-11e7-b413-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d7089986-68f4-11e7-aa11-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:44 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainera13d1b3d/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:28 GMT'] - ETag: ['"0x8D4CA1EC6A15BAE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:29 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] + ETag: ['"0x8D4CB18BBBE5483"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [cd1f904d-0001-0073-3f07-fc2417000000] + x-ms-request-id: [38ec35c8-0001-0080-7b01-fdf77e000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -80,10 +80,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-None-Match: ['"0x8D4CA1EC6A15BAE"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e2a3f9ac-67fa-11e7-9135-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:29 GMT'] + If-None-Match: ['"0x8D4CB18BBBE5483"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d70db754-68f4-11e7-9153-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:44 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -91,14 +91,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainera13d1b3d/blob1?comp=lease response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:cd1f9059-0001-0073-4907-fc2417000000\n\ - Time:2017-07-13T18:41:29.6798805Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:38ec35df-0001-0080-0f01-fdf77e000000\n\ + Time:2017-07-15T00:30:45.6167146Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [cd1f9059-0001-0073-4907-fc2417000000] + x-ms-request-id: [38ec35df-0001-0080-0f01-fdf77e000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_unmodified.yaml index 3f449f41..b2848ee7 100644 --- a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e2bf2286-67fa-11e7-902d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:30 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d72b51a6-68f4-11e7-ac5f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1d97194a?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:29 GMT'] - ETag: ['"0x8D4CA1EC6D70CE9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:29 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:45 GMT'] + ETag: ['"0x8D4CB18BBDFF7A1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b18221bc-0001-002a-4807-fc2191000000] + x-ms-request-id: [0ab03f22-0001-004e-3e01-fd9131000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e2d8da50-67fa-11e7-9d43-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:30 GMT'] + x-ms-client-request-id: [d7453e90-68f4-11e7-a62f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1d97194a/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:29 GMT'] - ETag: ['"0x8D4CA1EC6E1083D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:45 GMT'] + ETag: ['"0x8D4CB18BC010F2F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b18221dc-0001-002a-6307-fc2191000000] + x-ms-request-id: [0ab03f35-0001-004e-4f01-fd9131000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:30 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e2df3422-67fa-11e7-ac9c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:30 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d74b3322-68f4-11e7-a191-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:45 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-proposed-lease-id: [00000000-1111-2222-3333-444444444444] @@ -64,13 +64,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:29 GMT'] - ETag: ['"0x8D4CA1EC6E1083D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:45 GMT'] + ETag: ['"0x8D4CB18BC010F2F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-id: [00000000-1111-2222-3333-444444444444] - x-ms-request-id: [b18221f8-0001-002a-7e07-fc2191000000] + x-ms-request-id: [0ab03f49-0001-004e-6201-fd9131000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -78,9 +78,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e2eb0608-67fa-11e7-bb00-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:30 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d7509600-68f4-11e7-93d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:45 GMT'] x-ms-lease-action: [break] x-ms-version: ['2017-04-17'] method: PUT @@ -88,13 +88,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:29 GMT'] - ETag: ['"0x8D4CA1EC6E1083D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:45 GMT'] + ETag: ['"0x8D4CB18BC010F2F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-time: ['0'] - x-ms-request-id: [b1822224-0001-002a-2707-fc2191000000] + x-ms-request-id: [0ab03f65-0001-004e-7c01-fd9131000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_unmodified_fail.yaml index 2e71ffa3..087b10b3 100644 --- a/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e30a961c-67fa-11e7-aebf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:30 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d76f441a-68f4-11e7-9929-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera1dd1b45?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:30 GMT'] - ETag: ['"0x8D4CA1EC739E41F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:46 GMT'] + ETag: ['"0x8D4CB18BC34D5C9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f8b604e9-0001-0120-3607-fc7e4d000000] + x-ms-request-id: [51b5555b-0001-00bb-5501-fdb520000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e3209c34-67fa-11e7-a1da-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:30 GMT'] + x-ms-client-request-id: [d7938e88-68f4-11e7-b5c1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera1dd1b45/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:30 GMT'] - ETag: ['"0x8D4CA1EC7291AB7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:46 GMT'] + ETag: ['"0x8D4CB18BC4F3DAA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f8b604f8-0001-0120-4207-fc7e4d000000] + x-ms-request-id: [51b55597-0001-00bb-0601-fdb520000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:30 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e32667d4-67fa-11e7-9b35-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:30 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:15:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d799404c-68f4-11e7-a14e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:45 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -62,14 +62,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainera1dd1b45/blob1?comp=lease response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:f8b60507-0001-0120-5107-fc7e4d000000\n\ - Time:2017-07-13T18:41:30.7152657Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:51b555ae-0001-00bb-1c01-fdb520000000\n\ + Time:2017-07-15T00:30:46.4876508Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [f8b60507-0001-0120-5107-fc7e4d000000] + x-ms-request-id: [51b555ae-0001-00bb-1c01-fdb520000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_modified.yaml index c0d23c64..e20d4463 100644 --- a/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e3411d18-67fa-11e7-80a2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d7b46d62-68f4-11e7-9aad-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer50c01dd4?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:30 GMT'] - ETag: ['"0x8D4CA1EC747EBAE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:46 GMT'] + ETag: ['"0x8D4CB18BC90BA42"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e547cb8e-0001-004b-6107-fc654e000000] + x-ms-request-id: [b4be6243-0001-00fe-0f01-fd68b1000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:31 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e355fdb4-67fa-11e7-a1c4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:31 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d7c9758c-68f4-11e7-85d6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:45 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -38,13 +38,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:30 GMT'] - ETag: ['"0x8D4CA1EC747EBAE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:46 GMT'] + ETag: ['"0x8D4CB18BC90BA42"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [fab00644-c75c-4fcf-a67b-edc0d6df8e84] - x-ms-request-id: [e547cb9f-0001-004b-6a07-fc654e000000] + x-ms-lease-id: [5b76f1a4-4918-4efb-92cc-e16426839daa] + x-ms-request-id: [b4be6258-0001-00fe-2001-fd68b1000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -52,9 +52,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e35ba29e-67fa-11e7-8ea2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d7cf53d2-68f4-11e7-97d9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:46 GMT'] x-ms-lease-action: [break] x-ms-version: ['2017-04-17'] method: PUT @@ -62,13 +62,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:30 GMT'] - ETag: ['"0x8D4CA1EC747EBAE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:46 GMT'] + ETag: ['"0x8D4CB18BC90BA42"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-time: ['0'] - x-ms-request-id: [e547cba3-0001-004b-6e07-fc654e000000] + x-ms-request-id: [b4be6267-0001-00fe-2d01-fd68b1000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_modified_fail.yaml index b5b4eef9..b4d9d623 100644 --- a/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e3779398-67fa-11e7-8903-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d7f37fc8-68f4-11e7-9cc7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerebb81fcf?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:31 GMT'] - ETag: ['"0x8D4CA1EC7FD14F1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:47 GMT'] + ETag: ['"0x8D4CB18BCAD429D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b791872f-0001-00ca-5507-fcc719000000] + x-ms-request-id: [705efde7-0001-007b-1c01-fd3f64000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:31 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e38b90be-67fa-11e7-8ee8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:31 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:45:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d80b3834-68f4-11e7-bdac-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:46 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -37,14 +37,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainerebb81fcf?restype=container&comp=lease response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:b791874a-0001-00ca-6e07-fcc719000000\n\ - Time:2017-07-13T18:41:31.9544409Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:705efe0c-0001-007b-3a01-fd3f64000000\n\ + Time:2017-07-15T00:30:47.1848032Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [b791874a-0001-00ca-6e07-fcc719000000] + x-ms-request-id: [705efe0c-0001-007b-3a01-fd3f64000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_unmodified.yaml index 057b599a..a5989c38 100644 --- a/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e3a65ffa-67fa-11e7-8309-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d825d218-68f4-11e7-a23b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8e561eb7?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:30 GMT'] - ETag: ['"0x8D4CA1EC7A29BF4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:47 GMT'] + ETag: ['"0x8D4CB18BD5919EB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dfa2cfe9-0001-0044-7307-fc88b8000000] + x-ms-request-id: [0f17494b-0001-00e8-4701-fda92f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:31 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e3bbcf4a-67fa-11e7-81cc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:31 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d846368c-68f4-11e7-9e3b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:46 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -38,13 +38,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:31 GMT'] - ETag: ['"0x8D4CA1EC7A29BF4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:48 GMT'] + ETag: ['"0x8D4CB18BD5919EB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [167e3a5e-116c-4f1b-94f5-a34b87d8a9e3] - x-ms-request-id: [dfa2cffb-0001-0044-8007-fc88b8000000] + x-ms-lease-id: [a971a0c5-c404-483f-aa61-7128434992e7] + x-ms-request-id: [0f174968-0001-00e8-5d01-fda92f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -52,9 +52,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e3c1c398-67fa-11e7-86ef-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d84f6da6-68f4-11e7-aa0d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:46 GMT'] x-ms-lease-action: [break] x-ms-version: ['2017-04-17'] method: PUT @@ -62,13 +62,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:31 GMT'] - ETag: ['"0x8D4CA1EC7A29BF4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:48 GMT'] + ETag: ['"0x8D4CB18BD5919EB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-time: ['0'] - x-ms-request-id: [dfa2d011-0001-0044-1507-fc88b8000000] + x-ms-request-id: [0f174980-0001-00e8-7401-fda92f000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_unmodified_fail.yaml index 8b6d89bd..29c845f6 100644 --- a/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_lease_container_acquire_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e3fa5f76-67fa-11e7-9cee-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d87f0946-68f4-11e7-96d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer2dcc20b2?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:31 GMT'] - ETag: ['"0x8D4CA1EC81BF307"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:47 GMT'] + ETag: ['"0x8D4CB18BDA493C1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f183773f-0001-00d7-7d07-fc1ef3000000] + x-ms-request-id: [6e559683-0001-0029-0401-fd2296000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:32 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e40fbf62-67fa-11e7-ace5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:32 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:15:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d89f5118-68f4-11e7-bfde-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:47 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -37,14 +37,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainer2dcc20b2?restype=container&comp=lease response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:f1837757-0001-00d7-0d07-fc1ef3000000\n\ - Time:2017-07-13T18:41:32.1607380Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:6e5596a6-0001-0029-1f01-fd2296000000\n\ + Time:2017-07-15T00:30:48.8596601Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [f1837757-0001-00d7-0d07-fc1ef3000000] + x-ms-request-id: [6e5596a6-0001-0029-1f01-fd2296000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_match.yaml b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_match.yaml index 00af3389..fce8dd27 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e42ae074-67fa-11e7-b970-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d8ba379e-68f4-11e7-861d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer77331682?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:31 GMT'] - ETag: ['"0x8D4CA1EC84652E7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:47 GMT'] + ETag: ['"0x8D4CB18BD9DAFDE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fe108c0b-0001-0106-1207-fce5f9000000] + x-ms-request-id: [e9fcde43-0001-006e-2801-fdfdfd000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e4417eba-67fa-11e7-9b84-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:32 GMT'] + x-ms-client-request-id: [d8ced708-68f4-11e7-af7a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer77331682/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:31 GMT'] - ETag: ['"0x8D4CA1EC84A2824"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:47 GMT'] + ETag: ['"0x8D4CB18BD8AB752"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fe108c32-0001-0106-3407-fce5f9000000] + x-ms-request-id: [e9fcde56-0001-006e-3901-fdfdfd000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e4489240-67fa-11e7-98b2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d8d4dd42-68f4-11e7-9897-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:47 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer77331682/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:31 GMT'] - ETag: ['"0x8D4CA1EC84A2824"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:47 GMT'] + ETag: ['"0x8D4CB18BD8AB752"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [fe108c51-0001-0106-5007-fce5f9000000] + x-ms-request-id: [e9fcde65-0001-006e-4701-fdfdfd000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -80,11 +80,11 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - If-Match: ['"0x8D4CA1EC84A2824"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + If-Match: ['"0x8D4CB18BD8AB752"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e44dd278-67fa-11e7-a47b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:32 GMT'] + x-ms-client-request-id: [d8da865c-68f4-11e7-89a4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer77331682/blob1 @@ -92,12 +92,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:31 GMT'] - ETag: ['"0x8D4CA1EC8568685"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:47 GMT'] + ETag: ['"0x8D4CB18BD9603F5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fe108c68-0001-0106-6307-fce5f9000000] + x-ms-request-id: [e9fcde79-0001-006e-5801-fdfdfd000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_match_fail.yaml index f07bb345..ef318826 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e46ad738-67fa-11e7-9b9f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d8fcf566-68f4-11e7-8e1c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainered91187d?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:32 GMT'] - ETag: ['"0x8D4CA1EC8B978ED"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:47 GMT'] + ETag: ['"0x8D4CB18BD9E8C12"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8a0283a1-0001-0066-8007-fce68e000000] + x-ms-request-id: [2b73f7a4-0001-0050-5301-fd4bdc000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e47ed17a-67fa-11e7-aa51-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:33 GMT'] + x-ms-client-request-id: [d910f368-68f4-11e7-bc2e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainered91187d/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:32 GMT'] - ETag: ['"0x8D4CA1EC8871515"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:47 GMT'] + ETag: ['"0x8D4CB18BDCED1BA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8a0283b4-0001-0066-1007-fce68e000000] + x-ms-request-id: [2b73f7ce-0001-0050-7701-fd4bdc000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,23 +52,23 @@ interactions: Connection: [keep-alive] Content-Length: ['11'] If-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e48497fe-67fa-11e7-a797-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:33 GMT'] + x-ms-client-request-id: [d9199be4-68f4-11e7-85a0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainered91187d/blob1 response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:8a0283c8-0001-0066-2107-fce68e000000\n\ - Time:2017-07-13T18:41:33.2321107Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:2b73f80b-0001-0050-2e01-fd4bdc000000\n\ + Time:2017-07-15T00:30:48.7991263Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [8a0283c8-0001-0066-2107-fce68e000000] + x-ms-request-id: [2b73f80b-0001-0050-2e01-fd4bdc000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_modified.yaml index 93e7ad7b..583660d9 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e4a284c6-67fa-11e7-8341-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d9376958-68f4-11e7-b6f8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbd3a17b6?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:32 GMT'] - ETag: ['"0x8D4CA1EC8E9A82F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:48 GMT'] + ETag: ['"0x8D4CB18BDFDE570"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9187ecc9-0001-010c-0907-fcfc70000000] + x-ms-request-id: [ca8ebbba-0001-0081-0501-fdf683000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e4b7ba08-67fa-11e7-b6d7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:33 GMT'] + x-ms-client-request-id: [d94db064-68f4-11e7-bc7f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbd3a17b6/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:32 GMT'] - ETag: ['"0x8D4CA1EC8C0A601"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:48 GMT'] + ETag: ['"0x8D4CB18BE099BA9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9187ecd2-0001-010c-0e07-fcfc70000000] + x-ms-request-id: [ca8ebbdb-0001-0081-2401-fdf683000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,11 +51,11 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:33 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e4be5926-67fa-11e7-a21b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:33 GMT'] + x-ms-client-request-id: [d953f80c-68f4-11e7-b9b8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbd3a17b6/blob1 @@ -63,12 +63,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:32 GMT'] - ETag: ['"0x8D4CA1EC8C70FCE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:48 GMT'] + ETag: ['"0x8D4CB18BE0F691C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9187ecdf-0001-010c-1a07-fcfc70000000] + x-ms-request-id: [ca8ebbfd-0001-0081-4401-fdf683000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_modified_fail.yaml index a9f9cd35..dd768ea5 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e4db1d0c-67fa-11e7-9174-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d970757a-68f4-11e7-b9ca-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer39ab19b1?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:33 GMT'] - ETag: ['"0x8D4CA1EC92455DB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:48 GMT'] + ETag: ['"0x8D4CB18BE1BF35A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a75e7f75-0001-00c3-3c07-fcdd97000000] + x-ms-request-id: [c92ee348-0001-0012-0b01-fd60c8000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e4f24de4-67fa-11e7-a69c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:33 GMT'] + x-ms-client-request-id: [d9868a7e-68f4-11e7-bed0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer39ab19b1/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:33 GMT'] - ETag: ['"0x8D4CA1EC8FB4894"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:48 GMT'] + ETag: ['"0x8D4CB18BE429086"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a75e7f8d-0001-00c3-5007-fcdd97000000] + x-ms-request-id: [c92ee359-0001-0012-1801-fd60c8000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,24 +51,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:33 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + If-Modified-Since: ['Sat, 15 Jul 2017 00:45:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e4f852ca-67fa-11e7-bddf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:33 GMT'] + x-ms-client-request-id: [d98e5eca-68f4-11e7-b951-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer39ab19b1/blob1 response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:a75e7f9a-0001-00c3-5c07-fcdd97000000\n\ - Time:2017-07-13T18:41:33.9374507Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:c92ee37c-0001-0012-3701-fd60c8000000\n\ + Time:2017-07-15T00:30:49.6429857Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [a75e7f9a-0001-00c3-5c07-fcdd97000000] + x-ms-request-id: [c92ee37c-0001-0012-3701-fd60c8000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_none_match.yaml b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_none_match.yaml index 5f6e3659..c0c67823 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_none_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_none_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e514b906-67fa-11e7-a6d3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d9ad7cec-68f4-11e7-8a1c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:49 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineree1c1891?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:33 GMT'] - ETag: ['"0x8D4CA1EC93853AC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:49 GMT'] + ETag: ['"0x8D4CB18BE6F9E24"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ead1b456-0001-0052-0607-fc4926000000] + x-ms-request-id: [51b55c7a-0001-00bb-3f01-fdb520000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e52a5126-67fa-11e7-9480-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:34 GMT'] + x-ms-client-request-id: [d9c22426-68f4-11e7-9e28-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:49 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineree1c1891/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:33 GMT'] - ETag: ['"0x8D4CA1EC93527B7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:50 GMT'] + ETag: ['"0x8D4CB18BE7E6C1C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ead1b463-0001-0052-0f07-fc4926000000] + x-ms-request-id: [51b55c99-0001-00bb-5b01-fdb520000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,10 +52,10 @@ interactions: Connection: [keep-alive] Content-Length: ['11'] If-None-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e5329a18-67fa-11e7-9e31-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:34 GMT'] + x-ms-client-request-id: [d9c8e540-68f4-11e7-b457-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:49 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineree1c1891/blob1 @@ -63,12 +63,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:33 GMT'] - ETag: ['"0x8D4CA1EC93B917B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:50 GMT'] + ETag: ['"0x8D4CB18BE8460A7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ead1b47e-0001-0052-2607-fc4926000000] + x-ms-request-id: [51b55cbd-0001-00bb-7c01-fdb520000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_none_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_none_match_fail.yaml index 3cae5477..9068df81 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_none_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_none_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e54f36c6-67fa-11e7-b8c6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [d9e73ebe-68f4-11e7-ad32-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:49 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6ed41a8c?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:34 GMT'] - ETag: ['"0x8D4CA1EC98046FD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:48 GMT'] + ETag: ['"0x8D4CB18BE071523"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f3939786-0001-00a9-0207-fc813c000000] + x-ms-request-id: [4542e9f7-0001-004d-1a01-fd9236000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e567a936-67fa-11e7-9781-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:34 GMT'] + x-ms-client-request-id: [d9faaaa8-68f4-11e7-afe2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:49 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6ed41a8c/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:34 GMT'] - ETag: ['"0x8D4CA1EC971031B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:48 GMT'] + ETag: ['"0x8D4CB18BEB6283B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f393979b-0001-00a9-1307-fc813c000000] + x-ms-request-id: [4542ea03-0001-004d-2301-fd9236000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e5705362-67fa-11e7-9107-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [da006c22-68f4-11e7-bf78-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:49 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer6ed41a8c/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:34 GMT'] - ETag: ['"0x8D4CA1EC971031B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:48 GMT'] + ETag: ['"0x8D4CB18BEB6283B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f39397ac-0001-00a9-2207-fc813c000000] + x-ms-request-id: [4542ea19-0001-004d-3901-fd9236000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -80,24 +80,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - If-None-Match: ['"0x8D4CA1EC971031B"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + If-None-Match: ['"0x8D4CB18BEB6283B"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e5761ff4-67fa-11e7-b9de-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:34 GMT'] + x-ms-client-request-id: [da058cde-68f4-11e7-94fd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:49 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6ed41a8c/blob1 response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:f39397bb-0001-00a9-3107-fc813c000000\n\ - Time:2017-07-13T18:41:34.6100511Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:4542ea22-0001-004d-4201-fd9236000000\n\ + Time:2017-07-15T00:30:49.4982134Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [f39397bb-0001-00a9-3107-fc813c000000] + x-ms-request-id: [4542ea22-0001-004d-4201-fd9236000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_unmodified.yaml index b6c65ef1..ce5ed1cb 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e5a4bc74-67fa-11e7-93d1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [da2a0578-68f4-11e7-8daa-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:49 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineree941899?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:34 GMT'] - ETag: ['"0x8D4CA1EC9C4A7F8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:50 GMT'] + ETag: ['"0x8D4CB18BED76643"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [32022c43-0001-009b-1607-fcd9ec000000] + x-ms-request-id: [c48021a0-0001-002e-4f01-fdd413000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e5b8f430-67fa-11e7-b47a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:35 GMT'] + x-ms-client-request-id: [da3f2264-68f4-11e7-9f27-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineree941899/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:34 GMT'] - ETag: ['"0x8D4CA1EC9C1545D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:50 GMT'] + ETag: ['"0x8D4CB18BEFADF1D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [32022c56-0001-009b-2707-fcd9ec000000] + x-ms-request-id: [c48021b8-0001-002e-6201-fdd413000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,11 +51,11 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:35 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e5bef95c-67fa-11e7-9755-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:35 GMT'] + x-ms-client-request-id: [da452ae2-68f4-11e7-89e8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineree941899/blob1 @@ -63,12 +63,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:34 GMT'] - ETag: ['"0x8D4CA1EC9C8CFC2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:50 GMT'] + ETag: ['"0x8D4CB18BF0C95A1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [32022c62-0001-009b-3207-fcd9ec000000] + x-ms-request-id: [c48021eb-0001-002e-0e01-fdd413000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_unmodified_fail.yaml index 9f0b349f..be675b98 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e5db7028-67fa-11e7-b3c1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [da72c8da-68f4-11e7-b2c4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6f741a94?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:34 GMT'] - ETag: ['"0x8D4CA1EC9E501EB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:51 GMT'] + ETag: ['"0x8D4CB18BF2F0614"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fe70f5cf-0001-00de-0f07-fc047d000000] + x-ms-request-id: [465c08b1-0001-004b-2b01-fd654e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e5f0e642-67fa-11e7-843c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:35 GMT'] + x-ms-client-request-id: [da900c10-68f4-11e7-ac2b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6f741a94/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:34 GMT'] - ETag: ['"0x8D4CA1EC9F9FABF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:51 GMT'] + ETag: ['"0x8D4CB18BF4BA61F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fe70f5da-0001-00de-1707-fc047d000000] + x-ms-request-id: [465c08c7-0001-004b-3b01-fd654e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,24 +51,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:35 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:15:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e5f90f8c-67fa-11e7-955d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:35 GMT'] + x-ms-client-request-id: [da95ce86-68f4-11e7-8029-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6f741a94/blob1 response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:fe70f5f6-0001-00de-2e07-fc047d000000\n\ - Time:2017-07-13T18:41:35.2071498Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:465c08cc-0001-004b-4001-fd654e000000\n\ + Time:2017-07-15T00:30:51.4607171Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [fe70f5f6-0001-00de-2e07-fc047d000000] + x-ms-request-id: [465c08cc-0001-004b-4001-fd654e000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_match.yaml b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_match.yaml index d9500678..befbdc9e 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_match.yaml @@ -4,46 +4,45 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e6145618-67fa-11e7-a472-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dab049f8-68f4-11e7-bfa1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer81b1909?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:35 GMT'] - ETag: ['"0x8D4CA1ECA61DA30"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:51 GMT'] + ETag: ['"0x8D4CB18BF515132"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ed4b78b9-0001-00d1-6707-fce98b000000] + x-ms-request-id: [6ce58b7f-0001-0018-7c01-fd7941000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: - body: ' - - ' + body: null headers: Connection: [keep-alive] - Content-Length: ['52'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e62d1ee6-67fa-11e7-b7ff-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:35 GMT'] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [BlockBlob] + x-ms-client-request-id: [dac47fe8-68f4-11e7-b0ba-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainer81b1909/blob1?comp=blocklist + uri: https://storagename.blob.core.windows.net/utcontainer81b1909/blob1 response: body: {string: ''} headers: - Content-MD5: [NgbQHgw94OQ3P8fSkY5Pxg==] - Date: ['Thu, 13 Jul 2017 18:41:35 GMT'] - ETag: ['"0x8D4CA1ECA3895C2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:35 GMT'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Date: ['Sat, 15 Jul 2017 00:30:51 GMT'] + ETag: ['"0x8D4CB18BF80063E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ed4b78c9-0001-00d1-7307-fce98b000000] + x-ms-request-id: [6ce58baa-0001-0018-2501-fd7941000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e63beb42-67fa-11e7-a79c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [daca42a4-68f4-11e7-b7fd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:51 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer81b1909/blob1?comp=block&blockid=MQ%3D%3D @@ -62,10 +61,10 @@ interactions: body: {string: ''} headers: Content-MD5: [4fr/s+YU5sL7p0KWliOGtw==] - Date: ['Thu, 13 Jul 2017 18:41:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ed4b78e1-0001-00d1-0b07-fce98b000000] + x-ms-request-id: [6ce58bd4-0001-0018-4f01-fd7941000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -74,9 +73,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e641db68-67fa-11e7-8a5f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dad2cd66-68f4-11e7-ab55-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:51 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer81b1909/blob1?comp=block&blockid=Mg%3D%3D @@ -84,10 +83,10 @@ interactions: body: {string: ''} headers: Content-MD5: [K7Il8LqaWJMHV6ho7VfZow==] - Date: ['Thu, 13 Jul 2017 18:41:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ed4b78f0-0001-00d1-1907-fce98b000000] + x-ms-request-id: [6ce58c14-0001-0018-0b01-fd7941000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -96,9 +95,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e647c76e-67fa-11e7-86ce-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dad87286-68f4-11e7-b12a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:51 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer81b1909/blob1?comp=block&blockid=Mw%3D%3D @@ -106,10 +105,10 @@ interactions: body: {string: ''} headers: Content-MD5: [3vuZ5pqfH24G8VAGsfFmrg==] - Date: ['Thu, 13 Jul 2017 18:41:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ed4b78fa-0001-00d1-2207-fce98b000000] + x-ms-request-id: [6ce58c3e-0001-0018-3401-fd7941000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -117,9 +116,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e64dad14-67fa-11e7-96c8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dadeb518-68f4-11e7-ae31-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:51 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer81b1909/blob1 @@ -128,16 +127,17 @@ interactions: headers: Accept-Ranges: [bytes] Content-Length: ['0'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] - ETag: ['"0x8D4CA1ECA3895C2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:51 GMT'] + ETag: ['"0x8D4CB18BF80063E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [ed4b7909-0001-00d1-2f07-fce98b000000] + x-ms-request-id: [6ce58c66-0001-0018-5901-fd7941000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -148,10 +148,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['125'] - If-Match: ['"0x8D4CA1ECA3895C2"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e6532262-67fa-11e7-94a0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + If-Match: ['"0x8D4CB18BF80063E"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dae44924-68f4-11e7-9ad4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:51 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer81b1909/blob1?comp=blocklist @@ -159,12 +159,12 @@ interactions: body: {string: ''} headers: Content-MD5: [GD5pABqdSyI51XhMKrkBRA==] - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] - ETag: ['"0x8D4CA1ECA5BDB75"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:51 GMT'] + ETag: ['"0x8D4CB18BFA101DA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ed4b7918-0001-00d1-3a07-fce98b000000] + x-ms-request-id: [6ce58c88-0001-0018-7901-fd7941000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -172,9 +172,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e65e8f46-67fa-11e7-8606-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [daf28c14-68f4-11e7-b5e4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:51 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -186,15 +186,15 @@ interactions: Content-Length: ['9'] Content-Range: [bytes 0-8/9] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] - ETag: ['"0x8D4CA1ECA5BDB75"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:51 GMT'] + ETag: ['"0x8D4CB18BFA101DA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [ed4b7936-0001-00d1-5207-fce98b000000] + x-ms-request-id: [6ce58cdf-0001-0018-4c01-fd7941000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_match_fail.yaml index 8dd79b7d..c35d6541 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_match_fail.yaml @@ -4,46 +4,45 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e67e55e8-67fa-11e7-9ec6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [db1ff8a2-68f4-11e7-a9dc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:51 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8b1c1b04?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] - ETag: ['"0x8D4CA1ECA862A3C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:52 GMT'] + ETag: ['"0x8D4CB18BFE4A86A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3fa0fc57-0001-00ff-4e07-fc694c000000] + x-ms-request-id: [c4fb9c23-0001-00c1-3801-fddf6d000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: - body: ' - - ' + body: null headers: Connection: [keep-alive] - Content-Length: ['52'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e6929f8c-67fa-11e7-a6cd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [BlockBlob] + x-ms-client-request-id: [db3519a8-68f4-11e7-b3f2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:51 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainer8b1c1b04/blob1?comp=blocklist + uri: https://storagename.blob.core.windows.net/utcontainer8b1c1b04/blob1 response: body: {string: ''} headers: - Content-MD5: [NgbQHgw94OQ3P8fSkY5Pxg==] - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] - ETag: ['"0x8D4CA1ECA9B39D6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:36 GMT'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Date: ['Sat, 15 Jul 2017 00:30:52 GMT'] + ETag: ['"0x8D4CB18BFF12C8C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3fa0fc6c-0001-00ff-5f07-fc694c000000] + x-ms-request-id: [c4fb9c43-0001-00c1-5501-fddf6d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e698966c-67fa-11e7-87a8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [db3b62a4-68f4-11e7-bbd4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:51 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8b1c1b04/blob1?comp=block&blockid=MQ%3D%3D @@ -62,10 +61,10 @@ interactions: body: {string: ''} headers: Content-MD5: [4fr/s+YU5sL7p0KWliOGtw==] - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3fa0fc80-0001-00ff-7207-fc694c000000] + x-ms-request-id: [c4fb9c65-0001-00c1-7501-fddf6d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -74,9 +73,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e69e30d8-67fa-11e7-98a0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [db40ff98-68f4-11e7-a164-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:51 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8b1c1b04/blob1?comp=block&blockid=Mg%3D%3D @@ -84,10 +83,10 @@ interactions: body: {string: ''} headers: Content-MD5: [K7Il8LqaWJMHV6ho7VfZow==] - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3fa0fc8e-0001-00ff-8007-fc694c000000] + x-ms-request-id: [c4fb9c7a-0001-00c1-0701-fddf6d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -96,9 +95,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e6a3d7c0-67fa-11e7-9dbd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [db4c459c-68f4-11e7-95ac-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:51 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8b1c1b04/blob1?comp=block&blockid=Mw%3D%3D @@ -106,10 +105,10 @@ interactions: body: {string: ''} headers: Content-MD5: [3vuZ5pqfH24G8VAGsfFmrg==] - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3fa0fc9a-0001-00ff-0c07-fc694c000000] + x-ms-request-id: [c4fb9c9b-0001-00c1-2401-fddf6d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -121,22 +120,22 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] If-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e6a9d878-67fa-11e7-9d46-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [db51ada2-68f4-11e7-b4f3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:51 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8b1c1b04/blob1?comp=blocklist response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:3fa0fcaa-0001-00ff-1a07-fc694c000000\n\ - Time:2017-07-13T18:41:36.3663824Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:c4fb9cb0-0001-00c1-3301-fddf6d000000\n\ + Time:2017-07-15T00:30:52.7481351Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [3fa0fcaa-0001-00ff-1a07-fc694c000000] + x-ms-request-id: [c4fb9cb0-0001-00c1-3301-fddf6d000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_modified.yaml index ff4bf4da..0aeccc3e 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_modified.yaml @@ -4,46 +4,45 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e6d21478-67fa-11e7-899d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [db781348-68f4-11e7-92fd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer55b71a3d?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] - ETag: ['"0x8D4CA1ECAE97305"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:52 GMT'] + ETag: ['"0x8D4CB18C035B624"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:53 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [068d0e85-0001-00f2-4c07-fc8640000000] + x-ms-request-id: [b68fca8c-0001-00a3-3401-fd98b5000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: - body: ' - - ' + body: null headers: Connection: [keep-alive] - Content-Length: ['52'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e6eb0bd8-67fa-11e7-be0b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [BlockBlob] + x-ms-client-request-id: [db8bb3a8-68f4-11e7-80e4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainer55b71a3d/blob1?comp=blocklist + uri: https://storagename.blob.core.windows.net/utcontainer55b71a3d/blob1 response: body: {string: ''} headers: - Content-MD5: [NgbQHgw94OQ3P8fSkY5Pxg==] - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] - ETag: ['"0x8D4CA1ECAF37BE4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:36 GMT'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Date: ['Sat, 15 Jul 2017 00:30:52 GMT'] + ETag: ['"0x8D4CB18C04799FF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:53 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [068d0ea3-0001-00f2-6707-fc8640000000] + x-ms-request-id: [b68fca9c-0001-00a3-4201-fd98b5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e6f15b62-67fa-11e7-b6dc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [db91a966-68f4-11e7-ab27-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer55b71a3d/blob1?comp=block&blockid=MQ%3D%3D @@ -62,10 +61,10 @@ interactions: body: {string: ''} headers: Content-MD5: [4fr/s+YU5sL7p0KWliOGtw==] - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [068d0eb5-0001-00f2-7707-fc8640000000] + x-ms-request-id: [b68fcaa6-0001-00a3-4a01-fd98b5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -74,9 +73,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e6f99e80-67fa-11e7-ae8e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [db97e8d0-68f4-11e7-bbeb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer55b71a3d/blob1?comp=block&blockid=Mg%3D%3D @@ -84,10 +83,10 @@ interactions: body: {string: ''} headers: Content-MD5: [K7Il8LqaWJMHV6ho7VfZow==] - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [068d0ec9-0001-00f2-0907-fc8640000000] + x-ms-request-id: [b68fcab8-0001-00a3-5b01-fd98b5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -96,9 +95,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e701045e-67fa-11e7-936d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [db9ec380-68f4-11e7-b822-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer55b71a3d/blob1?comp=block&blockid=Mw%3D%3D @@ -106,10 +105,10 @@ interactions: body: {string: ''} headers: Content-MD5: [3vuZ5pqfH24G8VAGsfFmrg==] - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [068d0ee2-0001-00f2-1e07-fc8640000000] + x-ms-request-id: [b68fcac7-0001-00a3-6701-fd98b5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -120,10 +119,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['125'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:37 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e706be3a-67fa-11e7-a30d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dba4271c-68f4-11e7-9247-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer55b71a3d/blob1?comp=blocklist @@ -131,12 +130,12 @@ interactions: body: {string: ''} headers: Content-MD5: [GD5pABqdSyI51XhMKrkBRA==] - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] - ETag: ['"0x8D4CA1ECB0F1F2B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:52 GMT'] + ETag: ['"0x8D4CB18C05FBA46"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:53 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [068d0ef6-0001-00f2-3207-fc8640000000] + x-ms-request-id: [b68fcad1-0001-00a3-6f01-fd98b5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -144,9 +143,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e70cba42-67fa-11e7-8656-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dbaa25b8-68f4-11e7-b2af-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:52 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -158,15 +157,15 @@ interactions: Content-Length: ['9'] Content-Range: [bytes 0-8/9] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] - ETag: ['"0x8D4CA1ECB0F1F2B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:52 GMT'] + ETag: ['"0x8D4CB18C05FBA46"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:53 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [068d0f0b-0001-00f2-4207-fc8640000000] + x-ms-request-id: [b68fcae2-0001-00a3-8001-fd98b5000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_modified_fail.yaml index 0fb0f3b7..43eac6bb 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_modified_fail.yaml @@ -4,46 +4,45 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e72c3298-67fa-11e7-b5cb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dbcb9ba8-68f4-11e7-b99d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdebc1c38?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:36 GMT'] - ETag: ['"0x8D4CA1ECB6FF467"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:53 GMT'] + ETag: ['"0x8D4CB18C08B7E02"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:53 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0bfc490e-0001-0081-3607-fcf683000000] + x-ms-request-id: [25405bde-0001-00d9-2f01-fdf2f8000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: - body: ' - - ' + body: null headers: Connection: [keep-alive] - Content-Length: ['52'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e742e498-67fa-11e7-a7a0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [BlockBlob] + x-ms-client-request-id: [dbdfa6ca-68f4-11e7-ab58-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainerdebc1c38/blob1?comp=blocklist + uri: https://storagename.blob.core.windows.net/utcontainerdebc1c38/blob1 response: body: {string: ''} headers: - Content-MD5: [NgbQHgw94OQ3P8fSkY5Pxg==] - Date: ['Thu, 13 Jul 2017 18:41:37 GMT'] - ETag: ['"0x8D4CA1ECB4B6FBB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Date: ['Sat, 15 Jul 2017 00:30:53 GMT'] + ETag: ['"0x8D4CB18C09AF97F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:53 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0bfc4922-0001-0081-4707-fcf683000000] + x-ms-request-id: [25405bee-0001-00d9-3c01-fdf2f8000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e748f962-67fa-11e7-8b0c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dbe8032e-68f4-11e7-8672-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdebc1c38/blob1?comp=block&blockid=MQ%3D%3D @@ -62,10 +61,10 @@ interactions: body: {string: ''} headers: Content-MD5: [4fr/s+YU5sL7p0KWliOGtw==] - Date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:53 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0bfc492f-0001-0081-5207-fcf683000000] + x-ms-request-id: [25405bfe-0001-00d9-4a01-fdf2f8000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -74,9 +73,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e74f1068-67fa-11e7-a735-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dbeda662-68f4-11e7-aaf0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdebc1c38/blob1?comp=block&blockid=Mg%3D%3D @@ -84,10 +83,10 @@ interactions: body: {string: ''} headers: Content-MD5: [K7Il8LqaWJMHV6ho7VfZow==] - Date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:53 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0bfc493d-0001-0081-5f07-fcf683000000] + x-ms-request-id: [25405c10-0001-00d9-5801-fdf2f8000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -96,9 +95,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e755a8f6-67fa-11e7-8d5f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dbf37ff6-68f4-11e7-91ae-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdebc1c38/blob1?comp=block&blockid=Mw%3D%3D @@ -106,10 +105,10 @@ interactions: body: {string: ''} headers: Content-MD5: [3vuZ5pqfH24G8VAGsfFmrg==] - Date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:53 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0bfc4955-0001-0081-7407-fcf683000000] + x-ms-request-id: [25405c1f-0001-00d9-6301-fdf2f8000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -120,23 +119,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['125'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:37 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e75bd098-67fa-11e7-82a4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:45:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dbfc7fb6-68f4-11e7-a94f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:53 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdebc1c38/blob1?comp=blocklist response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:0bfc4960-0001-0081-7f07-fcf683000000\n\ - Time:2017-07-13T18:41:37.9125599Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:25405c3e-0001-00d9-7d01-fdf2f8000000\n\ + Time:2017-07-15T00:30:53.8375037Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:53 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [0bfc4960-0001-0081-7f07-fcf683000000] + x-ms-request-id: [25405c3e-0001-00d9-7d01-fdf2f8000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_none_match.yaml b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_none_match.yaml index 884a65df..fda8ad9f 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_none_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_none_match.yaml @@ -4,46 +4,45 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e777e07e-67fa-11e7-8f2d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dc197922-68f4-11e7-bcb8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:53 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8ba71b18?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:37 GMT'] - ETag: ['"0x8D4CA1ECB87DC73"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:53 GMT'] + ETag: ['"0x8D4CB18C0C699A7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:53 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d01169d5-0001-0113-3907-fc2760000000] + x-ms-request-id: [c4802657-0001-002e-6301-fdd413000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: - body: ' - - ' + body: null headers: Connection: [keep-alive] - Content-Length: ['52'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e78c0324-67fa-11e7-8621-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [BlockBlob] + x-ms-client-request-id: [dc2ed9c0-68f4-11e7-bf3b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:53 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainer8ba71b18/blob1?comp=blocklist + uri: https://storagename.blob.core.windows.net/utcontainer8ba71b18/blob1 response: body: {string: ''} headers: - Content-MD5: [NgbQHgw94OQ3P8fSkY5Pxg==] - Date: ['Thu, 13 Jul 2017 18:41:37 GMT'] - ETag: ['"0x8D4CA1ECB9928D3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Date: ['Sat, 15 Jul 2017 00:30:53 GMT'] + ETag: ['"0x8D4CB18C0F13FC5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:54 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d01169f7-0001-0113-5807-fc2760000000] + x-ms-request-id: [c4802677-0001-002e-7e01-fdd413000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e796c2b4-67fa-11e7-b330-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dc3dd042-68f4-11e7-9a87-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:53 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8ba71b18/blob1?comp=block&blockid=MQ%3D%3D @@ -62,10 +61,10 @@ interactions: body: {string: ''} headers: Content-MD5: [4fr/s+YU5sL7p0KWliOGtw==] - Date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:53 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d0116a14-0001-0113-7307-fc2760000000] + x-ms-request-id: [c4802680-0001-002e-0601-fdd413000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -74,9 +73,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e79d4530-67fa-11e7-93fb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dc46042e-68f4-11e7-abb6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:53 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8ba71b18/blob1?comp=block&blockid=Mg%3D%3D @@ -84,10 +83,10 @@ interactions: body: {string: ''} headers: Content-MD5: [K7Il8LqaWJMHV6ho7VfZow==] - Date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:53 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d0116a29-0001-0113-0707-fc2760000000] + x-ms-request-id: [c4802690-0001-002e-1501-fdd413000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -96,9 +95,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e7a29be8-67fa-11e7-b445-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dc5030b6-68f4-11e7-ada4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:53 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8ba71b18/blob1?comp=block&blockid=Mw%3D%3D @@ -106,10 +105,10 @@ interactions: body: {string: ''} headers: Content-MD5: [3vuZ5pqfH24G8VAGsfFmrg==] - Date: ['Thu, 13 Jul 2017 18:41:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:54 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d0116a32-0001-0113-1007-fc2760000000] + x-ms-request-id: [c48026ab-0001-002e-2c01-fdd413000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -121,9 +120,9 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] If-None-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e7a803f8-67fa-11e7-b96d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dc5ce392-68f4-11e7-be3b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:53 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8ba71b18/blob1?comp=blocklist @@ -131,12 +130,12 @@ interactions: body: {string: ''} headers: Content-MD5: [GD5pABqdSyI51XhMKrkBRA==] - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] - ETag: ['"0x8D4CA1ECBB1E53E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:54 GMT'] + ETag: ['"0x8D4CB18C118A531"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:54 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d0116a40-0001-0113-1a07-fc2760000000] + x-ms-request-id: [c48026bd-0001-002e-3c01-fdd413000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -144,9 +143,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e7b05c62-67fa-11e7-bd84-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dc644286-68f4-11e7-871d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:53 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -158,15 +157,15 @@ interactions: Content-Length: ['9'] Content-Range: [bytes 0-8/9] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] - ETag: ['"0x8D4CA1ECBB1E53E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:54 GMT'] + ETag: ['"0x8D4CB18C118A531"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:54 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [d0116a5a-0001-0113-3007-fc2760000000] + x-ms-request-id: [c48026d3-0001-002e-4d01-fdd413000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_none_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_none_match_fail.yaml index 81d99c90..4d751a3a 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_none_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_none_match_fail.yaml @@ -4,46 +4,45 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e7ceb03e-67fa-11e7-b439-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dc914e02-68f4-11e7-9c07-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:53 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19021d13?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] - ETag: ['"0x8D4CA1ECC1EFF53"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:54 GMT'] + ETag: ['"0x8D4CB18C1D45191"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ee609f9c-0001-012e-6707-fc9246000000] + x-ms-request-id: [4f3c2285-0001-009a-1f01-fdd811000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: - body: ' - - ' + body: null headers: Connection: [keep-alive] - Content-Length: ['52'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e7e4be4c-67fa-11e7-a79a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [BlockBlob] + x-ms-client-request-id: [dca55776-68f4-11e7-a38a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainer19021d13/blob1?comp=blocklist + uri: https://storagename.blob.core.windows.net/utcontainer19021d13/blob1 response: body: {string: ''} headers: - Content-MD5: [NgbQHgw94OQ3P8fSkY5Pxg==] - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] - ETag: ['"0x8D4CA1ECBECFD0C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:38 GMT'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Date: ['Sat, 15 Jul 2017 00:30:54 GMT'] + ETag: ['"0x8D4CB18C1610639"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ee609fa5-0001-012e-6d07-fc9246000000] + x-ms-request-id: [4f3c228f-0001-009a-2701-fdd811000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e7ead7c8-67fa-11e7-a434-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dcab1f26-68f4-11e7-95df-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19021d13/blob1?comp=block&blockid=MQ%3D%3D @@ -62,10 +61,10 @@ interactions: body: {string: ''} headers: Content-MD5: [4fr/s+YU5sL7p0KWliOGtw==] - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:54 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ee609faa-0001-012e-7207-fc9246000000] + x-ms-request-id: [4f3c22a0-0001-009a-3501-fdd811000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -74,9 +73,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e7f0bb28-67fa-11e7-86d6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dcb1c182-68f4-11e7-8ea9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19021d13/blob1?comp=block&blockid=Mg%3D%3D @@ -84,10 +83,10 @@ interactions: body: {string: ''} headers: Content-MD5: [K7Il8LqaWJMHV6ho7VfZow==] - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:54 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ee609fb2-0001-012e-7a07-fc9246000000] + x-ms-request-id: [4f3c22b0-0001-009a-4201-fdd811000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -96,9 +95,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e7f65788-67fa-11e7-8b06-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dcb87586-68f4-11e7-a399-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19021d13/blob1?comp=block&blockid=Mw%3D%3D @@ -106,10 +105,10 @@ interactions: body: {string: ''} headers: Content-MD5: [3vuZ5pqfH24G8VAGsfFmrg==] - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:54 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ee609fb6-0001-012e-7e07-fc9246000000] + x-ms-request-id: [4f3c22bf-0001-009a-5001-fdd811000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -117,9 +116,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e800cea2-67fa-11e7-83e6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dcc15a5c-68f4-11e7-9dcd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:54 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer19021d13/blob1 @@ -128,16 +127,17 @@ interactions: headers: Accept-Ranges: [bytes] Content-Length: ['0'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] - ETag: ['"0x8D4CA1ECBECFD0C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] + ETag: ['"0x8D4CB18C1610639"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [ee609fc8-0001-012e-0f07-fc9246000000] + x-ms-request-id: [4f3c22d0-0001-009a-6001-fdd811000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -148,23 +148,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['125'] - If-None-Match: ['"0x8D4CA1ECBECFD0C"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e805bff4-67fa-11e7-a3d7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + If-None-Match: ['"0x8D4CB18C1610639"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dcc64b66-68f4-11e7-9781-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19021d13/blob1?comp=blocklist response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:ee609fcb-0001-012e-1207-fc9246000000\n\ - Time:2017-07-13T18:41:39.1197675Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:4f3c22d9-0001-009a-6801-fdd811000000\n\ + Time:2017-07-15T00:30:56.0205139Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [ee609fcb-0001-012e-1207-fc9246000000] + x-ms-request-id: [4f3c22d9-0001-009a-6801-fdd811000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_unmodified.yaml index ff20bf46..71aefc5a 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_unmodified.yaml @@ -4,46 +4,45 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e823a206-67fa-11e7-82b4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dce317b4-68f4-11e7-ba39-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8c1f1b20?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] - ETag: ['"0x8D4CA1ECC6D1DA9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] + ETag: ['"0x8D4CB18C19725C0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [791b1b28-0001-0121-4e07-fc7fb0000000] + x-ms-request-id: [f4a58df6-0001-002b-5e01-fd206c000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: - body: ' - - ' + body: null headers: Connection: [keep-alive] - Content-Length: ['52'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e8388400-67fa-11e7-8018-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [BlockBlob] + x-ms-client-request-id: [dcf9978c-68f4-11e7-8924-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainer8c1f1b20/blob1?comp=blocklist + uri: https://storagename.blob.core.windows.net/utcontainer8c1f1b20/blob1 response: body: {string: ''} headers: - Content-MD5: [NgbQHgw94OQ3P8fSkY5Pxg==] - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] - ETag: ['"0x8D4CA1ECC411F92"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:39 GMT'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] + ETag: ['"0x8D4CB18C1BC0855"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [791b1b34-0001-0121-5607-fc7fb0000000] + x-ms-request-id: [f4a58e07-0001-002b-6c01-fd206c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e83ecaa4-67fa-11e7-b5c7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dd07aa02-68f4-11e7-9136-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8c1f1b20/blob1?comp=block&blockid=MQ%3D%3D @@ -62,10 +61,10 @@ interactions: body: {string: ''} headers: Content-MD5: [4fr/s+YU5sL7p0KWliOGtw==] - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [791b1b40-0001-0121-6107-fc7fb0000000] + x-ms-request-id: [f4a58e2b-0001-002b-0901-fd206c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -74,9 +73,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e84512a6-67fa-11e7-baf0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dd0d91ec-68f4-11e7-8250-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8c1f1b20/blob1?comp=block&blockid=Mg%3D%3D @@ -84,10 +83,10 @@ interactions: body: {string: ''} headers: Content-MD5: [K7Il8LqaWJMHV6ho7VfZow==] - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [791b1b4a-0001-0121-6907-fc7fb0000000] + x-ms-request-id: [f4a58e3b-0001-002b-1601-fd206c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -96,9 +95,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e84c6966-67fa-11e7-a1c4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dd13dce6-68f4-11e7-ac9a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8c1f1b20/blob1?comp=block&blockid=Mw%3D%3D @@ -106,10 +105,10 @@ interactions: body: {string: ''} headers: Content-MD5: [3vuZ5pqfH24G8VAGsfFmrg==] - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [791b1b56-0001-0121-7307-fc7fb0000000] + x-ms-request-id: [f4a58e4b-0001-002b-2401-fd206c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -120,10 +119,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['125'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:39 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e8521eba-67fa-11e7-8930-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dd19c78c-68f4-11e7-8b69-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8c1f1b20/blob1?comp=blocklist @@ -131,12 +130,12 @@ interactions: body: {string: ''} headers: Content-MD5: [GD5pABqdSyI51XhMKrkBRA==] - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] - ETag: ['"0x8D4CA1ECC5AC6AE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] + ETag: ['"0x8D4CB18C1D64BF6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [791b1b63-0001-0121-7e07-fc7fb0000000] + x-ms-request-id: [f4a58e5d-0001-002b-3501-fd206c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -144,9 +143,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e8584f9c-67fa-11e7-a672-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dd21d3e6-68f4-11e7-aa4e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:54 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -158,15 +157,15 @@ interactions: Content-Length: ['9'] Content-Range: [bytes 0-8/9] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:38 GMT'] - ETag: ['"0x8D4CA1ECC5AC6AE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] + ETag: ['"0x8D4CB18C1D64BF6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [791b1b6d-0001-0121-0607-fc7fb0000000] + x-ms-request-id: [f4a58e70-0001-002b-4801-fd206c000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_unmodified_fail.yaml index 91897dd1..2a829234 100644 --- a/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_unmodified_fail.yaml @@ -4,46 +4,45 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e8768b2e-67fa-11e7-abf0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dd44f4ac-68f4-11e7-95dc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19a21d1b?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:39 GMT'] - ETag: ['"0x8D4CA1ECD130AD6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] + ETag: ['"0x8D4CB18C2037B0B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:56 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a86b4818-0001-013c-5407-fca65a000000] + x-ms-request-id: [e3577eec-0001-00bf-2501-fd40a2000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: - body: ' - - ' + body: null headers: Connection: [keep-alive] - Content-Length: ['52'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e88a75f8-67fa-11e7-bfb5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [BlockBlob] + x-ms-client-request-id: [dd5a5928-68f4-11e7-b3fb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainer19a21d1b/blob1?comp=blocklist + uri: https://storagename.blob.core.windows.net/utcontainer19a21d1b/blob1 response: body: {string: ''} headers: - Content-MD5: [NgbQHgw94OQ3P8fSkY5Pxg==] - Date: ['Thu, 13 Jul 2017 18:41:39 GMT'] - ETag: ['"0x8D4CA1ECC92F7D4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:39 GMT'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] + ETag: ['"0x8D4CB18C2166E17"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:56 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a86b482f-0001-013c-6907-fca65a000000] + x-ms-request-id: [e3577ef3-0001-00bf-2a01-fd40a2000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e8904500-67fa-11e7-b985-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dd6298a4-68f4-11e7-9545-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19a21d1b/blob1?comp=block&blockid=MQ%3D%3D @@ -62,10 +61,10 @@ interactions: body: {string: ''} headers: Content-MD5: [4fr/s+YU5sL7p0KWliOGtw==] - Date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a86b484b-0001-013c-0507-fca65a000000] + x-ms-request-id: [e3577ef7-0001-00bf-2d01-fd40a2000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -74,9 +73,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e895f338-67fa-11e7-918d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dd685bae-68f4-11e7-8dcb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19a21d1b/blob1?comp=block&blockid=Mg%3D%3D @@ -84,10 +83,10 @@ interactions: body: {string: ''} headers: Content-MD5: [K7Il8LqaWJMHV6ho7VfZow==] - Date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a86b4865-0001-013c-1f07-fca65a000000] + x-ms-request-id: [e3577efc-0001-00bf-3201-fd40a2000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -96,9 +95,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e89bcfb0-67fa-11e7-9b4a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:40 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dd6e8466-68f4-11e7-ba35-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19a21d1b/blob1?comp=block&blockid=Mw%3D%3D @@ -106,10 +105,10 @@ interactions: body: {string: ''} headers: Content-MD5: [3vuZ5pqfH24G8VAGsfFmrg==] - Date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a86b487d-0001-013c-3507-fca65a000000] + x-ms-request-id: [e3577f04-0001-00bf-3701-fd40a2000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -120,23 +119,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['125'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:40 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e8a14e68-67fa-11e7-89a3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:40 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:15:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dd7cf14a-68f4-11e7-aa34-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19a21d1b/blob1?comp=blocklist response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:a86b48a6-0001-013c-5b07-fca65a000000\n\ - Time:2017-07-13T18:41:40.6410665Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:e3577f0d-0001-00bf-3d01-fd40a2000000\n\ + Time:2017-07-15T00:30:56.3436138Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [a86b48a6-0001-013c-5b07-fca65a000000] + x-ms-request-id: [e3577f0d-0001-00bf-3d01-fd40a2000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_match.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_match.yaml index df324aa6..0f8a4d13 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e8c15852-67fa-11e7-b063-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:40 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dda12c0c-68f4-11e7-962f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer51cf1a15?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:39 GMT'] - ETag: ['"0x8D4CA1ECCE121D1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:03 GMT'] + ETag: ['"0x8D4CB18C6E2A634"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1d364d05-0001-00b6-0607-fc5a2c000000] + x-ms-request-id: [c6287829-0001-00a0-4201-fd9bb2000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e8d4f8f8-67fa-11e7-9114-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:40 GMT'] + x-ms-client-request-id: [ddb952ca-68f4-11e7-ad50-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer51cf1a15/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:39 GMT'] - ETag: ['"0x8D4CA1ECCDD0682"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:03 GMT'] + ETag: ['"0x8D4CB18C2767A31"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:56 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1d364d15-0001-00b6-1307-fc5a2c000000] + x-ms-request-id: [c628784f-0001-00a0-6201-fd9bb2000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e8dad264-67fa-11e7-bc2f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:40 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ddc3633a-68f4-11e7-99d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:55 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer51cf1a15/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:39 GMT'] - ETag: ['"0x8D4CA1ECCDD0682"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:03 GMT'] + ETag: ['"0x8D4CB18C2767A31"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:56 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [1d364d2a-0001-00b6-2607-fc5a2c000000] + x-ms-request-id: [c628786a-0001-00a0-7a01-fd9bb2000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -80,10 +80,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Match: ['"0x8D4CA1ECCDD0682"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e8e3beb0-67fa-11e7-8e7a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:40 GMT'] + If-Match: ['"0x8D4CB18C2767A31"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ddc84014-68f4-11e7-b589-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:56 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -92,12 +92,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:39 GMT'] - ETag: ['"0x8D4CA1ECCEBD642"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:03 GMT'] + ETag: ['"0x8D4CB18C28374E9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:56 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1d364d37-0001-00b6-3207-fc5a2c000000] + x-ms-request-id: [c628787c-0001-00a0-0901-fd9bb2000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -105,24 +105,24 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e8e9196e-67fa-11e7-a89c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:40 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ddcd5450-68f4-11e7-9492-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:56 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer51cf1a15/blob1?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:39 GMT'] - ETag: ['"0x8D4CA1ECCEBD642"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:03 GMT'] + ETag: ['"0x8D4CB18C28374E9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:56 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [1d364d49-0001-00b6-4307-fc5a2c000000] + x-ms-request-id: [c6287889-0001-00a0-1601-fd9bb2000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_match_fail.yaml index 094d922b..d8f58f14 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e904c0cc-67fa-11e7-b07a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:40 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ddea7ab4-68f4-11e7-9a2b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:56 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerda0c1c10?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:39 GMT'] - ETag: ['"0x8D4CA1ECD451A27"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:57 GMT'] + ETag: ['"0x8D4CB18C2AF0F2D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:57 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [abd29efa-0001-0031-2d07-fc0f03000000] + x-ms-request-id: [92da6b94-0001-0058-0601-fd50af000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e918de62-67fa-11e7-9f64-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:40 GMT'] + x-ms-client-request-id: [de04a8b0-68f4-11e7-9ee0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:56 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerda0c1c10/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:39 GMT'] - ETag: ['"0x8D4CA1ECD2147BC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:57 GMT'] + ETag: ['"0x8D4CB18C2C06222"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:57 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [abd29f11-0001-0031-3f07-fc0f03000000] + x-ms-request-id: [92da6bba-0001-0058-2501-fd50af000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +52,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] If-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e9206202-67fa-11e7-87aa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:40 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [de0aa38c-68f4-11e7-989a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:56 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -62,14 +62,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainerda0c1c10/blob1?comp=metadata response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:abd29f27-0001-0031-5207-fc0f03000000\n\ - Time:2017-07-13T18:41:40.8700801Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:92da6bc6-0001-0058-3101-fd50af000000\n\ + Time:2017-07-15T00:30:57.3069553Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:57 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [abd29f27-0001-0031-5207-fc0f03000000] + x-ms-request-id: [92da6bc6-0001-0058-3101-fd50af000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_modified.yaml index 06e89b92..02d607da 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e93ca49e-67fa-11e7-bce7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:41 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [de2732f4-68f4-11e7-ab78-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:56 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera28f1b49?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:40 GMT'] - ETag: ['"0x8D4CA1ECD779EC6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] + ETag: ['"0x8D4CB18C1F94EA2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:56 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4c76a22c-0001-0010-6207-fc6232000000] + x-ms-request-id: [48065029-0001-0089-6f01-fdedf0000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e95172f4-67fa-11e7-b5a3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:41 GMT'] + x-ms-client-request-id: [de3d0386-68f4-11e7-9509-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:56 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera28f1b49/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:40 GMT'] - ETag: ['"0x8D4CA1ECD599FF5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] + ETag: ['"0x8D4CB18C2F8BA9D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:57 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4c76a24c-0001-0010-7d07-fc6232000000] + x-ms-request-id: [48065043-0001-0089-0501-fdedf0000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:41 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e9573cf0-67fa-11e7-8c17-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:41 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:15:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [de45f074-68f4-11e7-937b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:56 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -63,12 +63,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:40 GMT'] - ETag: ['"0x8D4CA1ECD5FBB8F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] + ETag: ['"0x8D4CB18C303B926"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:57 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4c76a265-0001-0010-1507-fc6232000000] + x-ms-request-id: [48065062-0001-0089-2001-fdedf0000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -76,24 +76,24 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e95cf246-67fa-11e7-93f3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:41 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [de4da830-68f4-11e7-a6f8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:56 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainera28f1b49/blob1?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:40 GMT'] - ETag: ['"0x8D4CA1ECD5FBB8F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:55 GMT'] + ETag: ['"0x8D4CB18C303B926"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:57 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [4c76a281-0001-0010-3007-fc6232000000] + x-ms-request-id: [4806507a-0001-0089-3701-fdedf0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_modified_fail.yaml index db88f3bb..a9450082 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e979bef6-67fa-11e7-91f1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:41 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [de71e39e-68f4-11e7-a9ab-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:57 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer30df1d44?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:40 GMT'] - ETag: ['"0x8D4CA1ECD8FDC35"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:58 GMT'] + ETag: ['"0x8D4CB18C38614BE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:58 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f763abf-0001-00a3-4807-fc98b5000000] + x-ms-request-id: [56ad1d71-0001-0041-4d01-fd7cc7000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e98f098c-67fa-11e7-aa01-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:41 GMT'] + x-ms-client-request-id: [de86c14c-68f4-11e7-b35e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:57 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer30df1d44/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:40 GMT'] - ETag: ['"0x8D4CA1ECD9CA888"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:58 GMT'] + ETag: ['"0x8D4CB18C3475E62"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:58 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f763adf-0001-00a3-6107-fc98b5000000] + x-ms-request-id: [56ad1d88-0001-0041-6101-fd7cc7000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:41 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e99aa468-67fa-11e7-a8e9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:41 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:45:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [de92c168-68f4-11e7-9eb2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:57 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -62,14 +62,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainer30df1d44/blob1?comp=metadata response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:4f763aed-0001-00a3-6c07-fc98b5000000\n\ - Time:2017-07-13T18:41:41.3870400Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:56ad1d98-0001-0041-6f01-fd7cc7000000\n\ + Time:2017-07-15T00:30:58.7271292Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:58 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [4f763aed-0001-00a3-6c07-fc98b5000000] + x-ms-request-id: [56ad1d98-0001-0041-6f01-fd7cc7000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_none_match.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_none_match.yaml index 1fb4c587..17d60342 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_none_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_none_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e9b65a98-67fa-11e7-aa93-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:41 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [deadba9a-68f4-11e7-85fc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:57 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerda971c24?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:40 GMT'] - ETag: ['"0x8D4CA1ECDBD0FB4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:59 GMT'] + ETag: ['"0x8D4CB18C3F52967"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:59 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [be300184-0001-010d-0c07-fcfd8d000000] + x-ms-request-id: [1962ffc4-0001-013a-6701-fd5122000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e9ca20f8-67fa-11e7-885a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:41 GMT'] + x-ms-client-request-id: [dec1b9be-68f4-11e7-81e5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:57 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerda971c24/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:40 GMT'] - ETag: ['"0x8D4CA1ECDD2682C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:59 GMT'] + ETag: ['"0x8D4CB18C37D1E5F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:58 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [be30018d-0001-010d-1207-fcfd8d000000] + x-ms-request-id: [1962ffdc-0001-013a-7d01-fd5122000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +52,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] If-None-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e9cfc350-67fa-11e7-bfd7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dec81518-68f4-11e7-b433-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:57 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -63,12 +63,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:40 GMT'] - ETag: ['"0x8D4CA1ECDD80E80"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:59 GMT'] + ETag: ['"0x8D4CB18C3838827"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:58 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [be300194-0001-010d-1907-fcfd8d000000] + x-ms-request-id: [1962fff0-0001-013a-1101-fd5122000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -76,24 +76,24 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e9d57070-67fa-11e7-9f9a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [decde234-68f4-11e7-b696-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:57 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerda971c24/blob1?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:40 GMT'] - ETag: ['"0x8D4CA1ECDD80E80"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:59 GMT'] + ETag: ['"0x8D4CB18C3838827"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:58 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [be3001a3-0001-010d-2707-fcfd8d000000] + x-ms-request-id: [1963000f-0001-013a-3001-fd5122000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_none_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_none_match_fail.yaml index 81d32f6a..35d67a17 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_none_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_none_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e9f124be-67fa-11e7-8499-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dee8fdb4-68f4-11e7-81b7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:57 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6d2e1e1f?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:41 GMT'] - ETag: ['"0x8D4CA1ECE0AA276"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:57 GMT'] + ETag: ['"0x8D4CB18C3A789DD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:58 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f6035ec0-0001-0114-0b07-fcd1e5000000] + x-ms-request-id: [b68fd226-0001-00a3-6701-fd98b5000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ea0a70fe-67fa-11e7-a887-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:42 GMT'] + x-ms-client-request-id: [defd461e-68f4-11e7-b4ea-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6d2e1e1f/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:41 GMT'] - ETag: ['"0x8D4CA1ECE12D82E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:57 GMT'] + ETag: ['"0x8D4CB18C3B8D2D5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:58 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f6035ee2-0001-0114-2507-fcd1e5000000] + x-ms-request-id: [b68fd231-0001-00a3-7101-fd98b5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ea10c04c-67fa-11e7-a2cb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [df03473a-68f4-11e7-b7db-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:58 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer6d2e1e1f/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:41 GMT'] - ETag: ['"0x8D4CA1ECE12D82E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:58 GMT'] + ETag: ['"0x8D4CB18C3B8D2D5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:58 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f6035ef6-0001-0114-3507-fcd1e5000000] + x-ms-request-id: [b68fd247-0001-00a3-8001-fd98b5000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -80,10 +80,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-None-Match: ['"0x8D4CA1ECE12D82E"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ea15c1c0-67fa-11e7-a535-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:42 GMT'] + If-None-Match: ['"0x8D4CB18C3B8D2D5"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [df08b9ae-68f4-11e7-ae4c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:58 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -91,14 +91,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainer6d2e1e1f/blob1?comp=metadata response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:f6035f09-0001-0114-4607-fcd1e5000000\n\ - Time:2017-07-13T18:41:42.1826418Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:b68fd255-0001-00a3-0a01-fd98b5000000\n\ + Time:2017-07-15T00:30:58.9433949Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:58 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [f6035f09-0001-0114-4607-fcd1e5000000] + x-ms-request-id: [b68fd255-0001-00a3-0a01-fd98b5000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_unmodified.yaml index e98e1bb2..22498c87 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ea311c2c-67fa-11e7-960d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [df23eb34-68f4-11e7-acab-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdb0f1c2c?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:41 GMT'] - ETag: ['"0x8D4CA1ECE35A497"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:58 GMT'] + ETag: ['"0x8D4CB18C3D3B5C2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:59 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7e3294e8-0001-011b-7107-fc3c13000000] + x-ms-request-id: [1dbb94ed-0001-0123-0601-fd7d4a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ea450ec6-67fa-11e7-91db-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:42 GMT'] + x-ms-client-request-id: [df388422-68f4-11e7-8d4e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdb0f1c2c/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:41 GMT'] - ETag: ['"0x8D4CA1ECE4D2CA3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:58 GMT'] + ETag: ['"0x8D4CB18C3F43926"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:59 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7e3294f4-0001-011b-7907-fc3c13000000] + x-ms-request-id: [1dbb94fd-0001-0123-1101-fd7d4a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:42 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ea4a8838-67fa-11e7-803b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:42 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:45:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [df3f331c-68f4-11e7-a04a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:58 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -63,12 +63,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:41 GMT'] - ETag: ['"0x8D4CA1ECE52D2E3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:58 GMT'] + ETag: ['"0x8D4CB18C3FAF125"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:59 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7e3294fb-0001-011b-7f07-fc3c13000000] + x-ms-request-id: [1dbb9519-0001-0123-2701-fd7d4a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -76,24 +76,24 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ea50303a-67fa-11e7-b3cb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [df44ba12-68f4-11e7-b905-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:58 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerdb0f1c2c/blob1?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:41 GMT'] - ETag: ['"0x8D4CA1ECE52D2E3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:58 GMT'] + ETag: ['"0x8D4CB18C3FAF125"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:59 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [7e329505-0001-011b-0807-fc3c13000000] + x-ms-request-id: [1dbb9527-0001-0123-3401-fd7d4a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_unmodified_fail.yaml index 2a8b4b31..20ef797c 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_metadata_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ea74bde2-67fa-11e7-ad56-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [df5fb2ae-68f4-11e7-ad10-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6dce1e27?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:42 GMT'] - ETag: ['"0x8D4CA1ECEAD23EE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:00 GMT'] + ETag: ['"0x8D4CB18C465E2A4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:00 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [22d5e749-0001-0059-1d07-fc5152000000] + x-ms-request-id: [86ea0136-0001-0000-3301-fd54d4000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ea8f3106-67fa-11e7-813b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:43 GMT'] + x-ms-client-request-id: [df828838-68f4-11e7-b92c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6dce1e27/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:42 GMT'] - ETag: ['"0x8D4CA1ECE978966"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:00 GMT'] + ETag: ['"0x8D4CB18C43DD2E3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:59 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [22d5e770-0001-0059-3b07-fc5152000000] + x-ms-request-id: [86ea0183-0001-0000-7901-fd54d4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:43 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ea94e64c-67fa-11e7-b705-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:43 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:15:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [df88321a-68f4-11e7-885f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:58 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -62,14 +62,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainer6dce1e27/blob1?comp=metadata response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:22d5e78c-0001-0059-5507-fc5152000000\n\ - Time:2017-07-13T18:41:43.2526452Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:86ea019f-0001-0000-1001-fd54d4000000\n\ + Time:2017-07-15T00:31:00.2418678Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:00 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [22d5e78c-0001-0059-5507-fc5152000000] + x-ms-request-id: [86ea019f-0001-0000-1001-fd54d4000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_match.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_match.yaml index 8d10ae6e..52a1237c 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [eab1beb8-67fa-11e7-b31a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dfaa2bfe-68f4-11e7-8a79-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8bbb1b21?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:42 GMT'] - ETag: ['"0x8D4CA1ECE9AD195"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:59 GMT'] + ETag: ['"0x8D4CB18C4219F89"'] + Last-Modified: ['Sat, 15 Jul 2017 00:30:59 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d43f53f6-0001-0038-2c07-fc158d000000] + x-ms-request-id: [60a84a84-0001-0120-3e01-fd7e4d000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [eac65102-67fa-11e7-a6b2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:43 GMT'] + x-ms-client-request-id: [dfc46c80-68f4-11e7-8820-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8bbb1b21/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:42 GMT'] - ETag: ['"0x8D4CA1ECECF454B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:59 GMT'] + ETag: ['"0x8D4CB18C47FCA1B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:00 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d43f5410-0001-0038-4307-fc158d000000] + x-ms-request-id: [60a84aa6-0001-0120-5d01-fd7e4d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [eacca886-67fa-11e7-bdb1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dfcb8182-68f4-11e7-84f4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:59 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer8bbb1b21/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:42 GMT'] - ETag: ['"0x8D4CA1ECECF454B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:59 GMT'] + ETag: ['"0x8D4CB18C47FCA1B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:00 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [d43f5423-0001-0038-5607-fc158d000000] + x-ms-request-id: [60a84ac3-0001-0120-7801-fd7e4d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -80,33 +80,33 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Match: ['"0x8D4CA1ECECF454B"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + If-Match: ['"0x8D4CB18C47FCA1B"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-disposition: [inline] x-ms-blob-content-language: [spanish] - x-ms-client-request-id: [ead255a6-67fa-11e7-a34e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:43 GMT'] + x-ms-client-request-id: [dfd0be18-68f4-11e7-ac0d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8bbb1b21/blob1?comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:42 GMT'] - ETag: ['"0x8D4CA1ECEDA6AD9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:59 GMT'] + ETag: ['"0x8D4CB18C48C015F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:00 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d43f5434-0001-0038-6607-fc158d000000] + x-ms-request-id: [60a84adb-0001-0120-1001-fd7e4d000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ead7d1d4-67fa-11e7-91c9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dfd61158-68f4-11e7-80aa-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:59 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer8bbb1b21/blob1 @@ -117,15 +117,15 @@ interactions: Content-Disposition: [inline] Content-Language: [spanish] Content-Length: ['11'] - Date: ['Thu, 13 Jul 2017 18:41:42 GMT'] - ETag: ['"0x8D4CA1ECEDA6AD9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:59 GMT'] + ETag: ['"0x8D4CB18C48C015F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:00 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [d43f5444-0001-0038-7407-fc158d000000] + x-ms-request-id: [60a84b00-0001-0120-3001-fd7e4d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_match_fail.yaml index f582c90f..841fe8d8 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [eaf68d68-67fa-11e7-a362-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [dff2dae8-68f4-11e7-b96b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19431d1c?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:43 GMT'] - ETag: ['"0x8D4CA1ECEF92AE4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:00 GMT'] + ETag: ['"0x8D4CB18C46F0E95"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:00 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3e935574-0001-002b-3a07-fc206c000000] + x-ms-request-id: [4b0d197a-0001-00c5-5c01-fd2aef000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [eb0ad3d8-67fa-11e7-8507-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:44 GMT'] + x-ms-client-request-id: [e006d5a2-68f4-11e7-8fbf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19431d1c/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:43 GMT'] - ETag: ['"0x8D4CA1ECF149851"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:00 GMT'] + ETag: ['"0x8D4CB18C4C32124"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:00 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3e935580-0001-002b-4307-fc206c000000] + x-ms-request-id: [4b0d199b-0001-00c5-7a01-fd2aef000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,24 +52,24 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] If-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-disposition: [inline] x-ms-blob-content-language: [spanish] - x-ms-client-request-id: [eb1a2446-67fa-11e7-bff0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:44 GMT'] + x-ms-client-request-id: [e00e0a18-68f4-11e7-8091-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:30:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19431d1c/blob1?comp=properties response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:3e93559d-0001-002b-5f07-fc206c000000\n\ - Time:2017-07-13T18:41:43.7799266Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:4b0d19bf-0001-00c5-1d01-fd2aef000000\n\ + Time:2017-07-15T00:31:00.2229369Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:00 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [3e93559d-0001-002b-5f07-fc206c000000] + x-ms-request-id: [4b0d19bf-0001-00c5-1d01-fd2aef000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_modified.yaml index e529b0c5..84570219 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [eb374dee-67fa-11e7-8886-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e028a90c-68f4-11e7-a67d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdf9f1c55?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:43 GMT'] - ETag: ['"0x8D4CA1ECF77197D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:59 GMT'] + ETag: ['"0x8D4CB18C4D077AF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:00 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1aae8765-0001-006d-4107-fcfefa000000] + x-ms-request-id: [54edcdd6-0001-0069-2901-fd0b78000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [eb4bb91e-67fa-11e7-968e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:44 GMT'] + x-ms-client-request-id: [e04527c6-68f4-11e7-9941-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdf9f1c55/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:43 GMT'] - ETag: ['"0x8D4CA1ECF541D9A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:59 GMT'] + ETag: ['"0x8D4CB18C5012000"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:01 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1aae878f-0001-006d-6507-fcfefa000000] + x-ms-request-id: [54edcdf8-0001-0069-4301-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,33 +51,33 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:44 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + If-Modified-Since: ['Sat, 15 Jul 2017 00:16:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-disposition: [inline] x-ms-blob-content-language: [spanish] - x-ms-client-request-id: [eb51bef4-67fa-11e7-ad59-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:44 GMT'] + x-ms-client-request-id: [e04b6078-68f4-11e7-93b0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdf9f1c55/blob1?comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:43 GMT'] - ETag: ['"0x8D4CA1ECF5A3930"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:59 GMT'] + ETag: ['"0x8D4CB18C506ED73"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:01 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1aae87b2-0001-006d-0807-fcfefa000000] + x-ms-request-id: [54edce0d-0001-0069-5501-fd0b78000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [eb57675a-67fa-11e7-aaef-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e0510334-68f4-11e7-91f0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:00 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerdf9f1c55/blob1 @@ -88,15 +88,15 @@ interactions: Content-Disposition: [inline] Content-Language: [spanish] Content-Length: ['11'] - Date: ['Thu, 13 Jul 2017 18:41:43 GMT'] - ETag: ['"0x8D4CA1ECF5A3930"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:30:59 GMT'] + ETag: ['"0x8D4CB18C506ED73"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:01 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [1aae87d9-0001-006d-2807-fcfefa000000] + x-ms-request-id: [54edce1a-0001-0069-6001-fd0b78000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_modified_fail.yaml index 81fc13cf..0c47d4eb 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [eb72a948-67fa-11e7-afcb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e0703128-68f4-11e7-b348-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer732b1e50?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:43 GMT'] - ETag: ['"0x8D4CA1ECF86F54C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:01 GMT'] + ETag: ['"0x8D4CB18C54B9B36"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:01 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3247dfaa-0001-0088-4b07-fcec0d000000] + x-ms-request-id: [b4be74b5-0001-00fe-4501-fd68b1000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [eb88b06c-67fa-11e7-bbeb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:44 GMT'] + x-ms-client-request-id: [e083909c-68f4-11e7-8408-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer732b1e50/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:43 GMT'] - ETag: ['"0x8D4CA1ECF9131C4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:01 GMT'] + ETag: ['"0x8D4CB18C53F6D0E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:01 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3247dfc9-0001-0088-6307-fcec0d000000] + x-ms-request-id: [b4be74c0-0001-00fe-4e01-fd68b1000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,25 +51,25 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:44 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + If-Modified-Since: ['Sat, 15 Jul 2017 00:46:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-disposition: [inline] x-ms-blob-content-language: [spanish] - x-ms-client-request-id: [eb8f4012-67fa-11e7-bb52-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:44 GMT'] + x-ms-client-request-id: [e0898402-68f4-11e7-a9d8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer732b1e50/blob1?comp=properties response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:3247dfde-0001-0088-7707-fcec0d000000\n\ - Time:2017-07-13T18:41:44.6781354Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:b4be74d0-0001-00fe-5d01-fd68b1000000\n\ + Time:2017-07-15T00:31:01.6583238Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:01 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [3247dfde-0001-0088-7707-fcec0d000000] + x-ms-request-id: [b4be74d0-0001-00fe-5d01-fd68b1000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_none_match.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_none_match.yaml index 211e4cb4..a7f6a2d2 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_none_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_none_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ebaf6892-67fa-11e7-975f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e0a52c0c-68f4-11e7-ae38-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19ce1d30?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:44 GMT'] - ETag: ['"0x8D4CA1ECFBCB66A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:00 GMT'] + ETag: ['"0x8D4CB18C4E127C5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:00 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8cdd016e-0001-007b-2607-fc3f64000000] + x-ms-request-id: [5df883b2-0001-012e-3d01-fd9246000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ebc48d46-67fa-11e7-8b6e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:45 GMT'] + x-ms-client-request-id: [e0b92734-68f4-11e7-ae29-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19ce1d30/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:44 GMT'] - ETag: ['"0x8D4CA1ECFCCE5D1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:00 GMT'] + ETag: ['"0x8D4CB18C574B7B9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:01 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8cdd0187-0001-007b-3b07-fc3f64000000] + x-ms-request-id: [5df883c5-0001-012e-4e01-fd9246000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,32 +52,32 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] If-None-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-disposition: [inline] x-ms-blob-content-language: [spanish] - x-ms-client-request-id: [ebca5efe-67fa-11e7-aa23-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:45 GMT'] + x-ms-client-request-id: [e0bf3052-68f4-11e7-b152-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:01 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer19ce1d30/blob1?comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:44 GMT'] - ETag: ['"0x8D4CA1ECFD2B334"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:00 GMT'] + ETag: ['"0x8D4CB18C57AAC47"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:01 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8cdd01a5-0001-007b-5507-fc3f64000000] + x-ms-request-id: [5df883d4-0001-012e-5d01-fd9246000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ebd07f6e-67fa-11e7-9eb7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e0c4d44c-68f4-11e7-b44d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:01 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer19ce1d30/blob1 @@ -88,15 +88,15 @@ interactions: Content-Disposition: [inline] Content-Language: [spanish] Content-Length: ['11'] - Date: ['Thu, 13 Jul 2017 18:41:44 GMT'] - ETag: ['"0x8D4CA1ECFD2B334"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:00 GMT'] + ETag: ['"0x8D4CB18C57AAC47"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:01 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [8cdd01c6-0001-007b-7507-fc3f64000000] + x-ms-request-id: [5df883e1-0001-012e-6801-fd9246000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_none_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_none_match_fail.yaml index 2b44f0d0..4e7981cd 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_none_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_none_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ebf78780-67fa-11e7-a0a3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e0e940e8-68f4-11e7-a6c1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:01 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb1921f2b?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:45 GMT'] - ETag: ['"0x8D4CA1ED04BE7DC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:01 GMT'] + ETag: ['"0x8D4CB18C5C992DB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:02 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b959c26c-0001-00e6-3b07-fc4524000000] + x-ms-request-id: [7491b318-0001-006f-6e01-fdfc00000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ec0ca336-67fa-11e7-8207-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:45 GMT'] + x-ms-client-request-id: [e0fd4a54-68f4-11e7-9bdf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:01 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb1921f2b/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:45 GMT'] - ETag: ['"0x8D4CA1ED0151F62"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:01 GMT'] + ETag: ['"0x8D4CB18C5B94777"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:02 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b959c279-0001-00e6-4507-fc4524000000] + x-ms-request-id: [7491b32f-0001-006f-0101-fdfc00000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ec12ac90-67fa-11e7-b784-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e1038c0c-68f4-11e7-88e8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:01 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerb1921f2b/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:45 GMT'] - ETag: ['"0x8D4CA1ED0151F62"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:01 GMT'] + ETag: ['"0x8D4CB18C5B94777"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:02 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [b959c284-0001-00e6-5007-fc4524000000] + x-ms-request-id: [7491b356-0001-006f-2201-fdfc00000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -80,25 +80,25 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-None-Match: ['"0x8D4CA1ED0151F62"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + If-None-Match: ['"0x8D4CB18C5B94777"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-disposition: [inline] x-ms-blob-content-language: [spanish] - x-ms-client-request-id: [ec17facc-67fa-11e7-82f5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:45 GMT'] + x-ms-client-request-id: [e10b0982-68f4-11e7-8f9e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:01 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb1921f2b/blob1?comp=properties response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:b959c28f-0001-00e6-5907-fc4524000000\n\ - Time:2017-07-13T18:41:45.9678433Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:7491b375-0001-006f-3f01-fdfc00000000\n\ + Time:2017-07-15T00:31:02.5359034Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:02 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [b959c28f-0001-00e6-5907-fc4524000000] + x-ms-request-id: [7491b375-0001-006f-3f01-fdfc00000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_unmodified.yaml index e5263cfd..e2635267 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ec341aa6-67fa-11e7-8a6f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e1290228-68f4-11e7-86b1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:01 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1a461d38?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:44 GMT'] - ETag: ['"0x8D4CA1ED03BE8E2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:02 GMT'] + ETag: ['"0x8D4CB18C5DE3DAA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:02 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6184c7b3-0001-004c-6a07-fc93cb000000] + x-ms-request-id: [d106e861-0001-008b-3101-fdef0a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ec553b50-67fa-11e7-80f2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:46 GMT'] + x-ms-client-request-id: [e13daa74-68f4-11e7-8e60-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:01 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1a461d38/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:45 GMT'] - ETag: ['"0x8D4CA1ED05D800F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:02 GMT'] + ETag: ['"0x8D4CB18C5F9699D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:02 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6184c7e1-0001-004c-1007-fc93cb000000] + x-ms-request-id: [d106e88b-0001-008b-5401-fdef0a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,33 +51,33 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:46 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:46:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-disposition: [inline] x-ms-blob-content-language: [spanish] - x-ms-client-request-id: [ec5b5c4c-67fa-11e7-a644-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:46 GMT'] + x-ms-client-request-id: [e143f06c-68f4-11e7-b336-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:01 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1a461d38/blob1?comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:45 GMT'] - ETag: ['"0x8D4CA1ED063C2D5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:02 GMT'] + ETag: ['"0x8D4CB18C5FF5E23"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:02 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6184c7f6-0001-004c-2307-fc93cb000000] + x-ms-request-id: [d106e8aa-0001-008b-7301-fdef0a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ec61e594-67fa-11e7-986c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e1498518-68f4-11e7-bb16-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:01 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer1a461d38/blob1 @@ -88,15 +88,15 @@ interactions: Content-Disposition: [inline] Content-Language: [spanish] Content-Length: ['11'] - Date: ['Thu, 13 Jul 2017 18:41:45 GMT'] - ETag: ['"0x8D4CA1ED063C2D5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:02 GMT'] + ETag: ['"0x8D4CB18C5FF5E23"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:02 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [6184c807-0001-004c-3407-fc93cb000000] + x-ms-request-id: [d106e8df-0001-008b-2401-fdef0a000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_unmodified_fail.yaml index eeb17d41..8c0e3d49 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_blob_properties_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ec7efada-67fa-11e7-a751-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e16497e8-68f4-11e7-b98d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:02 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb2321f33?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:46 GMT'] - ETag: ['"0x8D4CA1ED098D2D6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:02 GMT'] + ETag: ['"0x8D4CB18C62788F0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:03 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e47bb3de-0001-00f3-0907-fc87bd000000] + x-ms-request-id: [a6781b75-0001-00e4-7701-fd47de000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ec92556c-67fa-11e7-89cd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:46 GMT'] + x-ms-client-request-id: [e179316e-68f4-11e7-b0d9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:02 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb2321f33/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:46 GMT'] - ETag: ['"0x8D4CA1ED09B0960"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:02 GMT'] + ETag: ['"0x8D4CB18C634A8D6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:03 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e47bb3f2-0001-00f3-1907-fc87bd000000] + x-ms-request-id: [a6781b86-0001-00e4-0501-fd47de000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,25 +51,25 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:46 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:16:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-disposition: [inline] x-ms-blob-content-language: [spanish] - x-ms-client-request-id: [ec984774-67fa-11e7-b110-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:46 GMT'] + x-ms-client-request-id: [e17eefb4-68f4-11e7-9f98-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:02 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb2321f33/blob1?comp=properties response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:e47bb401-0001-00f3-2807-fc87bd000000\n\ - Time:2017-07-13T18:41:46.4359144Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:a6781b9b-0001-00e4-1601-fd47de000000\n\ + Time:2017-07-15T00:31:03.1036514Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:02 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [e47bb401-0001-00f3-2807-fc87bd000000] + x-ms-request-id: [a6781b9b-0001-00e4-1601-fd47de000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_modified.yaml index f5b8fbde..5a816ab8 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ecb45358-67fa-11e7-825d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e19a0d46-68f4-11e7-8c9d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:02 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera4ad1b5c?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:46 GMT'] - ETag: ['"0x8D4CA1ED0E11971"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:03 GMT'] + ETag: ['"0x8D4CB18C6D210F8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [de345db6-0001-000a-1d07-fc4d5d000000] + x-ms-request-id: [38e5604e-0001-009c-1c01-fd2f69000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,31 +26,31 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:47 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ecc89746-67fa-11e7-8142-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:47 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:16:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e1ae9234-68f4-11e7-a5d3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:02 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera4ad1b5c?restype=container&comp=acl response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:46 GMT'] - ETag: ['"0x8D4CA1ED0E11972"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:03 GMT'] + ETag: ['"0x8D4CB18C6D210F9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [de345dbd-0001-000a-2207-fc4d5d000000] + x-ms-request-id: [38e56056-0001-009c-2201-fd2f69000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ecce3230-67fa-11e7-9b99-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e1b43476-68f4-11e7-9a94-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:02 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainera4ad1b5c?restype=container&comp=acl @@ -59,13 +59,13 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:46 GMT'] - ETag: ['"0x8D4CA1ED0E11972"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:03 GMT'] + ETag: ['"0x8D4CB18C6D210F9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [de345dc7-0001-000a-2b07-fc4d5d000000] + x-ms-request-id: [38e56060-0001-009c-2901-fd2f69000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_modified_fail.yaml index 36e308dc..d6f04449 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [eceb62ba-67fa-11e7-bb21-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e1cf824c-68f4-11e7-ba52-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:02 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer335c1d57?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:46 GMT'] - ETag: ['"0x8D4CA1ED1209A07"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:03 GMT'] + ETag: ['"0x8D4CB18C67FBB0E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:03 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [de618c09-0001-009c-0a07-fc2f69000000] + x-ms-request-id: [b440cb00-0001-010d-1201-fdfd8d000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:47 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ed033124-67fa-11e7-aede-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:47 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:46:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e1e9a610-68f4-11e7-84d8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:02 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer335c1d57?restype=container&comp=acl response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:de618c2f-0001-009c-2d07-fc2f69000000\n\ - Time:2017-07-13T18:41:47.2887208Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:b440cb1e-0001-010d-2a01-fdfd8d000000\n\ + Time:2017-07-15T00:31:03.6426232Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:03 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [de618c2f-0001-009c-2d07-fc2f69000000] + x-ms-request-id: [b440cb1e-0001-010d-2a01-fdfd8d000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_unmodified.yaml index d0bf0391..2f2533e8 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ed1ec57e-67fa-11e7-8c09-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e20348fe-68f4-11e7-b027-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdd531c3f?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:46 GMT'] - ETag: ['"0x8D4CA1ED14B23BF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:03 GMT'] + ETag: ['"0x8D4CB18C6B9C4D5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:03 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1d01d7d0-0001-00cb-6807-fcc6e4000000] + x-ms-request-id: [0eb6a282-0001-003a-3f01-fd1777000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,31 +26,31 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:47 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ed35c58a-67fa-11e7-80af-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:47 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:46:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e21b2a78-68f4-11e7-9fb6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdd531c3f?restype=container&comp=acl response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:47 GMT'] - ETag: ['"0x8D4CA1ED14B23C0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:03 GMT'] + ETag: ['"0x8D4CB18C6BB729B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:03 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1d01d7e6-0001-00cb-7a07-fcc6e4000000] + x-ms-request-id: [0eb6a29a-0001-003a-5001-fd1777000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ed3add7a-67fa-11e7-96d0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e220ddba-68f4-11e7-9e8f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:03 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerdd531c3f?restype=container&comp=acl @@ -59,13 +59,13 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:47 GMT'] - ETag: ['"0x8D4CA1ED14B23C0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:04 GMT'] + ETag: ['"0x8D4CB18C6BB729B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:03 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [1d01d7fc-0001-00cb-0f07-fcc6e4000000] + x-ms-request-id: [0eb6a2a7-0001-003a-5c01-fd1777000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_unmodified_fail.yaml index 4a2d74a3..427400b3 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_container_acl_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ed55a618-67fa-11e7-819e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e23c9d0c-68f4-11e7-a902-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer70711e3a?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:47 GMT'] - ETag: ['"0x8D4CA1ED1C7EF38"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:03 GMT'] + ETag: ['"0x8D4CB18C6EF5B86"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [61d71f85-0001-0136-1b07-fcbfd3000000] + x-ms-request-id: [113a0869-0001-0006-6e01-fda3ac000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:48 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ed731e26-67fa-11e7-ad85-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:48 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:16:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e2515936-68f4-11e7-90f9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer70711e3a?restype=container&comp=acl response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:61d71fa7-0001-0136-3807-fcbfd3000000\n\ - Time:2017-07-13T18:41:48.4393938Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:113a087d-0001-0006-7f01-fda3ac000000\n\ + Time:2017-07-15T00:31:04.3931935Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:03 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [61d71fa7-0001-0136-3807-fcbfd3000000] + x-ms-request-id: [113a087d-0001-0006-7f01-fda3ac000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_set_container_metadata_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_set_container_metadata_with_if_modified.yaml index c5deda10..fc1c50ac 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_container_metadata_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_container_metadata_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ed8e3792-67fa-11e7-afdc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e26f2be6-68f4-11e7-a66c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer349b1d6d?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:47 GMT'] - ETag: ['"0x8D4CA1ED1B0002D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:04 GMT'] + ETag: ['"0x8D4CB18C78C1C26"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7db6765d-0001-0075-6807-fcd36f000000] + x-ms-request-id: [03931234-0001-0073-6201-fd2417000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:48 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [eda2c858-67fa-11e7-aca1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:48 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:16:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e2848cb6-68f4-11e7-b5db-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:03 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['43'] x-ms-version: ['2017-04-17'] @@ -38,36 +38,36 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:47 GMT'] - ETag: ['"0x8D4CA1ED1B0002E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:04 GMT'] + ETag: ['"0x8D4CB18C78C1C27"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7db6766f-0001-0075-7707-fcd36f000000] + x-ms-request-id: [03931246-0001-0073-7001-fd2417000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [eda8722e-67fa-11e7-8b71-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e28a4110-68f4-11e7-8681-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:04 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer349b1d6d?restype=container&comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:47 GMT'] - ETag: ['"0x8D4CA1ED1B0002E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:04 GMT'] + ETag: ['"0x8D4CB18C78C1C27"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-hello: [world] x-ms-meta-number: ['43'] - x-ms-request-id: [7db67689-0001-0075-0c07-fcd36f000000] + x-ms-request-id: [0393125f-0001-0073-0201-fd2417000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_set_container_metadata_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_set_container_metadata_with_if_modified_fail.yaml index b048420d..f650bb5c 100644 --- a/tests/recordings/test_blob_access_conditions.test_set_container_metadata_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_set_container_metadata_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [edc331ae-67fa-11e7-a90e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e2a7005c-68f4-11e7-8a2b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:04 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainercd901f68?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:47 GMT'] - ETag: ['"0x8D4CA1ED1C826CA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:04 GMT'] + ETag: ['"0x8D4CB18C768FB4B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [70789674-0001-0003-5907-fc57d3000000] + x-ms-request-id: [fb9ec9da-0001-00b7-3201-fd5bd1000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:48 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [edd853a4-67fa-11e7-84b9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:48 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:46:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e2bb553e-68f4-11e7-bb79-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:04 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['43'] x-ms-version: ['2017-04-17'] @@ -37,14 +37,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainercd901f68?restype=container&comp=metadata response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:7078969e-0001-0003-7e07-fc57d3000000\n\ - Time:2017-07-13T18:41:48.4117971Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:fb9ec9f1-0001-00b7-4601-fd5bd1000000\n\ + Time:2017-07-15T00:31:05.1742577Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [7078969e-0001-0003-7e07-fc57d3000000] + x-ms-request-id: [fb9ec9f1-0001-00b7-4601-fd5bd1000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_match.yaml b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_match.yaml index 7fa151e6..8174363a 100644 --- a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [edf6873e-67fa-11e7-8435-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e2d77de2-68f4-11e7-898d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:04 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainereeee1899?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:48 GMT'] - ETag: ['"0x8D4CA1ED214066E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:05 GMT'] + ETag: ['"0x8D4CB18C7A1D664"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [072d2ec6-0001-0096-3907-fc36e0000000] + x-ms-request-id: [21b78588-0001-0098-2001-fddaeb000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ee0a4768-67fa-11e7-a0ce-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:49 GMT'] + x-ms-client-request-id: [e2ee40fa-68f4-11e7-8dcd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:04 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainereeee1899/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:48 GMT'] - ETag: ['"0x8D4CA1ED2125CA3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:05 GMT'] + ETag: ['"0x8D4CB18C7ADABFA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [072d2ee0-0001-0096-4f07-fc36e0000000] + x-ms-request-id: [21b785a5-0001-0098-3601-fddaeb000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ee0fa99e-67fa-11e7-8306-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e2f80538-68f4-11e7-ae8a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:04 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainereeee1899/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:48 GMT'] - ETag: ['"0x8D4CA1ED2125CA3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:05 GMT'] + ETag: ['"0x8D4CB18C7ADABFA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [072d2ef2-0001-0096-6107-fc36e0000000] + x-ms-request-id: [21b785bd-0001-0098-4d01-fddaeb000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -80,23 +80,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Match: ['"0x8D4CA1ED2125CA3"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ee14dfd8-67fa-11e7-b9fd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:49 GMT'] + If-Match: ['"0x8D4CB18C7ADABFA"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e2fe52d0-68f4-11e7-a41f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:04 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainereeee1899/blob1?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:48 GMT'] - ETag: ['"0x8D4CA1ED2125CA3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:05 GMT'] + ETag: ['"0x8D4CB18C7ADABFA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [072d2efe-0001-0096-6c07-fc36e0000000] - x-ms-snapshot: ['2017-07-13T18:41:48.9051422Z'] + x-ms-request-id: [21b785d2-0001-0098-5e01-fddaeb000000] + x-ms-snapshot: ['2017-07-15T00:31:05.6794666Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_match_fail.yaml index ae253c2a..86890488 100644 --- a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ee39dade-67fa-11e7-9c33-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e32905de-68f4-11e7-9e20-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6fce1a94?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:48 GMT'] - ETag: ['"0x8D4CA1ED282FB32"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:05 GMT'] + ETag: ['"0x8D4CB18C794EA3E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [95f2ad9f-0001-005a-5f07-fc5255000000] + x-ms-request-id: [5e8ac06a-0001-0118-0601-fd3f14000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ee4d941e-67fa-11e7-b269-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:49 GMT'] + x-ms-client-request-id: [e33d71b8-68f4-11e7-81e3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6fce1a94/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:48 GMT'] - ETag: ['"0x8D4CA1ED256289C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:05 GMT'] + ETag: ['"0x8D4CB18C7F8F3BB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [95f2adad-0001-005a-6a07-fc5255000000] + x-ms-request-id: [5e8ac091-0001-0118-2501-fd3f14000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,22 +52,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] If-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ee534106-67fa-11e7-9e17-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e34377f4-68f4-11e7-95f6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6fce1a94/blob1?comp=snapshot response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:95f2adb7-0001-005a-7307-fc5255000000\n\ - Time:2017-07-13T18:41:49.6462067Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:5e8ac0b6-0001-0118-4401-fd3f14000000\n\ + Time:2017-07-15T00:31:05.4972017Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [95f2adb7-0001-005a-7307-fc5255000000] + x-ms-request-id: [5e8ac0b6-0001-0118-4401-fd3f14000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_modified.yaml index 583ec217..1ce3c701 100644 --- a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ee6f8ec2-67fa-11e7-867d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e35ebc74-68f4-11e7-9d19-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer3b4919cd?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:49 GMT'] - ETag: ['"0x8D4CA1ED2B563EC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:05 GMT'] + ETag: ['"0x8D4CB18C8245872"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [410dc0d8-0001-00c5-1007-fc2aef000000] + x-ms-request-id: [ca8ee42d-0001-0081-5101-fdf683000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ee854f6e-67fa-11e7-9d6b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:49 GMT'] + x-ms-client-request-id: [e3730e22-68f4-11e7-8bbc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer3b4919cd/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:49 GMT'] - ETag: ['"0x8D4CA1ED28D964A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:05 GMT'] + ETag: ['"0x8D4CB18C8393CF4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [410dc0e8-0001-00c5-1d07-fc2aef000000] + x-ms-request-id: [ca8ee453-0001-0081-7101-fdf683000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,23 +51,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:49 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ee8b9358-67fa-11e7-97ee-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:49 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:16:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e383791a-68f4-11e7-a6a5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer3b4919cd/blob1?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:49 GMT'] - ETag: ['"0x8D4CA1ED28D964A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:05 GMT'] + ETag: ['"0x8D4CB18C8393CF4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [410dc0f4-0001-00c5-2607-fc2aef000000] - x-ms-snapshot: ['2017-07-13T18:41:49.6816891Z'] + x-ms-request-id: [ca8ee47c-0001-0081-1301-fdf683000000] + x-ms-snapshot: ['2017-07-15T00:31:06.5300815Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_modified_fail.yaml index f664ac99..29e3b52b 100644 --- a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [eea79706-67fa-11e7-a7e9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e3a0b01e-68f4-11e7-a335-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerc21e1bc8?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:49 GMT'] - ETag: ['"0x8D4CA1ED2C97BD1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:05 GMT'] + ETag: ['"0x8D4CB18C85EE997"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d2caa958-0001-0090-0607-fcc198000000] + x-ms-request-id: [21b9e594-0001-0026-4901-fdcf60000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [eebcb61e-67fa-11e7-b26e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:50 GMT'] + x-ms-client-request-id: [e3b4432e-68f4-11e7-8663-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerc21e1bc8/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:49 GMT'] - ETag: ['"0x8D4CA1ED2C52B14"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:05 GMT'] + ETag: ['"0x8D4CB18C86F9945"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d2caa964-0001-0090-0e07-fcc198000000] + x-ms-request-id: [21b9e5b4-0001-0026-6501-fdcf60000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,23 +51,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:50 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [eec2c45c-67fa-11e7-8c51-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:50 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:46:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e3b9ad3a-68f4-11e7-b1f9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerc21e1bc8/blob1?comp=snapshot response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:d2caa969-0001-0090-1307-fcc198000000\n\ - Time:2017-07-13T18:41:50.1122589Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:21b9e5cb-0001-0026-7c01-fdcf60000000\n\ + Time:2017-07-15T00:31:06.8130101Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [d2caa969-0001-0090-1307-fcc198000000] + x-ms-request-id: [21b9e5cb-0001-0026-7c01-fdcf60000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_none_match.yaml b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_none_match.yaml index 4fc41336..75597337 100644 --- a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_none_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_none_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [eeddb866-67fa-11e7-ae38-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e3d709b8-68f4-11e7-99d4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:06 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer70591aa8?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:49 GMT'] - ETag: ['"0x8D4CA1ED2DB696C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:06 GMT'] + ETag: ['"0x8D4CB18C8B6EF1E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d44dd1dc-0001-001e-4007-fc8e39000000] + x-ms-request-id: [c26e922b-0001-0056-4b01-fdbca4000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [eef53c98-67fa-11e7-818a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:50 GMT'] + x-ms-client-request-id: [e3eb9efa-68f4-11e7-859b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:06 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer70591aa8/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:49 GMT'] - ETag: ['"0x8D4CA1ED2FDAA5F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:06 GMT'] + ETag: ['"0x8D4CB18C8A7F1D6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d44dd1ed-0001-001e-4c07-fc8e39000000] + x-ms-request-id: [c26e9245-0001-0056-6301-fdbca4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,22 +52,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] If-None-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [eefb07e2-67fa-11e7-b80e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e3f23f46-68f4-11e7-af27-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:06 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer70591aa8/blob1?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:49 GMT'] - ETag: ['"0x8D4CA1ED2FDAA5F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:06 GMT'] + ETag: ['"0x8D4CB18C8A7F1D6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d44dd1f9-0001-001e-5607-fc8e39000000] - x-ms-snapshot: ['2017-07-13T18:41:50.4122036Z'] + x-ms-request-id: [c26e9264-0001-0056-7d01-fdbca4000000] + x-ms-snapshot: ['2017-07-15T00:31:07.2576079Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_none_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_none_match_fail.yaml index 89de85af..e7e662a6 100644 --- a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_none_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_none_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ef171c14-67fa-11e7-99ff-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e40c9934-68f4-11e7-8d93-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:06 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerfb751ca3?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:50 GMT'] - ETag: ['"0x8D4CA1ED3692A8C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:06 GMT'] + ETag: ['"0x8D4CB18C8CBEF18"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f5e7b8d7-0001-0115-0a07-fcd018000000] + x-ms-request-id: [c04bcf13-0001-0036-1a01-fdf986000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ef2b1750-67fa-11e7-84f2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:51 GMT'] + x-ms-client-request-id: [e4224fcc-68f4-11e7-9a2b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:06 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerfb751ca3/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:50 GMT'] - ETag: ['"0x8D4CA1ED3336A2A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:06 GMT'] + ETag: ['"0x8D4CB18C8DD638B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f5e7b8f7-0001-0115-2407-fcd018000000] + x-ms-request-id: [c04bcf2f-0001-0036-3001-fdf986000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ef312606-67fa-11e7-bfaf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e4280d4a-68f4-11e7-b9fd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:06 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerfb751ca3/blob1 @@ -63,15 +63,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:50 GMT'] - ETag: ['"0x8D4CA1ED3336A2A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:06 GMT'] + ETag: ['"0x8D4CB18C8DD638B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f5e7b919-0001-0115-4307-fcd018000000] + x-ms-request-id: [c04bcf41-0001-0036-4101-fdf986000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -80,23 +80,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-None-Match: ['"0x8D4CA1ED3336A2A"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ef365d7a-67fa-11e7-88f5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:51 GMT'] + If-None-Match: ['"0x8D4CB18C8DD638B"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e42d26cc-68f4-11e7-b6c8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:06 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerfb751ca3/blob1?comp=snapshot response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:f5e7b933-0001-0115-5d07-fcd018000000\n\ - Time:2017-07-13T18:41:51.1937733Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:c04bcf5d-0001-0036-5b01-fdf986000000\n\ + Time:2017-07-15T00:31:07.5795302Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [f5e7b933-0001-0115-5d07-fcd018000000] + x-ms-request-id: [c04bcf5d-0001-0036-5b01-fdf986000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_unmodified.yaml index 575ed571..9156a650 100644 --- a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ef5900c0-67fa-11e7-be42-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e449f252-68f4-11e7-a916-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:06 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer70d11ab0?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:50 GMT'] - ETag: ['"0x8D4CA1ED3719E65"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:06 GMT'] + ETag: ['"0x8D4CB18C9075D36"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5df04d6d-0001-0004-1907-fca156000000] + x-ms-request-id: [328cafeb-0001-0107-0301-fde404000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ef85b798-67fa-11e7-953d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:51 GMT'] + x-ms-client-request-id: [e45ed898-68f4-11e7-992e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:07 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer70d11ab0/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:50 GMT'] - ETag: ['"0x8D4CA1ED38DF689"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:06 GMT'] + ETag: ['"0x8D4CB18C91A77DB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5df04d9d-0001-0004-4107-fca156000000] + x-ms-request-id: [328cb00a-0001-0107-1a01-fde404000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,23 +51,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:51 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ef8b613a-67fa-11e7-8a74-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:51 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:46:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e464911e-68f4-11e7-ae87-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:07 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer70d11ab0/blob1?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:51 GMT'] - ETag: ['"0x8D4CA1ED38DF689"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:06 GMT'] + ETag: ['"0x8D4CB18C91A77DB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5df04da4-0001-0004-4707-fca156000000] - x-ms-snapshot: ['2017-07-13T18:41:51.3628735Z'] + x-ms-request-id: [328cb016-0001-0107-2601-fde404000000] + x-ms-snapshot: ['2017-07-15T00:31:08.0221611Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_unmodified_fail.yaml index e16f2c70..1376899a 100644 --- a/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [efac3fe2-67fa-11e7-86db-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e484058c-68f4-11e7-b719-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:07 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerfc151cab?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:51 GMT'] - ETag: ['"0x8D4CA1ED3B27CB5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:07 GMT'] + ETag: ['"0x8D4CB18C93C1B17"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:08 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [eb18f2eb-0001-006e-0207-fcfdfd000000] + x-ms-request-id: [07a1702f-0001-00d4-1b01-fd1df4000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [efbfc350-67fa-11e7-aa49-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:51 GMT'] + x-ms-client-request-id: [e49c31ca-68f4-11e7-b2e0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:07 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerfc151cab/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:41:51 GMT'] - ETag: ['"0x8D4CA1ED3C84AD7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:07 GMT'] + ETag: ['"0x8D4CB18C9589DCE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:08 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [eb18f2f3-0001-006e-0807-fcfdfd000000] + x-ms-request-id: [07a17053-0001-00d4-3801-fd1df4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,23 +51,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:52 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [efc5c728-67fa-11e7-94fa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:52 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:16:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e4a4360c-68f4-11e7-9e94-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:07 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerfc151cab/blob1?comp=snapshot response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:eb18f302-0001-006e-1307-fcfdfd000000\n\ - Time:2017-07-13T18:41:51.6402656Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:07a17067-0001-00d4-4b01-fd1df4000000\n\ + Time:2017-07-15T00:31:08.2896422Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [eb18f302-0001-006e-1307-fcfdfd000000] + x-ms-request-id: [07a17067-0001-00d4-4b01-fd1df4000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_match.yaml b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_match.yaml index b75569bb..98e1c3a6 100644 --- a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [efe1c69e-67fa-11e7-9e5c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e4c22c7a-68f4-11e7-8dad-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:07 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbbe117aa?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:51 GMT'] - ETag: ['"0x8D4CA1ED406EBBC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:08 GMT'] + ETag: ['"0x8D4CB18C9AECB6A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:08 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1a4098ae-0001-00b1-6407-fcaca9000000] + x-ms-request-id: [45f7e429-0001-0014-1901-fd97b0000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [eff55646-67fa-11e7-ab53-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:52 GMT'] + x-ms-client-request-id: [e4d8e7d2-68f4-11e7-a6b1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:07 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbbe117aa/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:51 GMT'] - ETag: ['"0x8D4CA1ED40CB346"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:08 GMT'] + ETag: ['"0x8D4CB18C9A2FB04"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:08 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e58326f6-0001-010f-2807-fcff77000000] + x-ms-request-id: [d6331f3f-0001-0108-6101-fd09f2000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f009f7ae-67fa-11e7-9465-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e4ed361a-68f4-11e7-8058-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:08 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerbbe117aa/blob1 @@ -62,16 +62,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:51 GMT'] - ETag: ['"0x8D4CA1ED40CB346"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:08 GMT'] + ETag: ['"0x8D4CB18C9A2FB04"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:08 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [1a4098da-0001-00b1-0707-fcaca9000000] + x-ms-request-id: [45f7e479-0001-0014-6101-fd97b0000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -80,10 +80,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - If-Match: ['"0x8D4CA1ED40CB346"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f00f64fa-67fa-11e7-9005-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:52 GMT'] + If-Match: ['"0x8D4CB18C9A2FB04"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e4f29542-68f4-11e7-94fa-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:08 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -93,13 +93,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:51 GMT'] - ETag: ['"0x8D4CA1ED417FFD6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:08 GMT'] + ETag: ['"0x8D4CB18C9ADD276"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:08 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [e5832704-0001-010f-3407-fcff77000000] + x-ms-request-id: [d6331f77-0001-0108-1301-fd09f2000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_match_fail.yaml index 17fc82be..abb217f1 100644 --- a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f02cc068-67fa-11e7-bebe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e510820a-68f4-11e7-87fd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:08 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer381619a5?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:51 GMT'] - ETag: ['"0x8D4CA1ED42925EE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:08 GMT'] + ETag: ['"0x8D4CB18C9DCC88A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:09 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6109eb7f-0001-009d-6d07-fc2e94000000] + x-ms-request-id: [7534fc1f-0001-0021-5a01-fd39e5000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [f0444118-67fa-11e7-b0f6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:52 GMT'] + x-ms-client-request-id: [e52652a6-68f4-11e7-ae07-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:08 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer381619a5/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:51 GMT'] - ETag: ['"0x8D4CA1ED45C1A02"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:09 GMT'] + ETag: ['"0x8D4CB18C9F76C3C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:09 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [173ba48f-0001-00e7-2307-fc44d9000000] + x-ms-request-id: [f79ebdf3-0001-009d-2701-fd2e94000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +52,9 @@ interactions: Connection: [keep-alive] Content-Length: ['512'] If-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f059be1a-67fa-11e7-808b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e5416eb0-68f4-11e7-8e1d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:08 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -62,14 +62,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainer381619a5/blob1?comp=page response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:173ba49d-0001-00e7-2f07-fc44d9000000\n\ - Time:2017-07-13T18:41:52.6514435Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:f79ebe26-0001-009d-5101-fd2e94000000\n\ + Time:2017-07-15T00:31:09.5943686Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:09 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [173ba49d-0001-00e7-2f07-fc44d9000000] + x-ms-request-id: [f79ebe26-0001-009d-5101-fd2e94000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_modified.yaml b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_modified.yaml index fb7bf4bb..5ef222d6 100644 --- a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_modified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_modified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f0753e4c-67fa-11e7-aaf1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e55c35b0-68f4-11e7-9254-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:08 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer56f18de?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:51 GMT'] - ETag: ['"0x8D4CA1ED44BE2EA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:09 GMT'] + ETag: ['"0x8D4CB18CA484256"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:09 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [193d9ef1-0001-00d9-3907-fcf2f8000000] + x-ms-request-id: [a86a4f06-0001-00f6-7101-fd73c2000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [f08ba862-67fa-11e7-b41b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:53 GMT'] + x-ms-client-request-id: [e56fc90c-68f4-11e7-acdc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:08 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer56f18de/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:52 GMT'] - ETag: ['"0x8D4CA1ED4A31ADF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:09 GMT'] + ETag: ['"0x8D4CB18CA3B388B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:09 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9498899a-0001-001f-4b07-fc8fc4000000] + x-ms-request-id: [bdb7a719-0001-0096-1301-fd36e0000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:26:53 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f0a09d4c-67fa-11e7-b253-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:53 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:16:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e5856976-68f4-11e7-8dd0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:09 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -64,13 +64,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:52 GMT'] - ETag: ['"0x8D4CA1ED4A90F62"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:10 GMT'] + ETag: ['"0x8D4CB18CA41A256"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:09 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [949889aa-0001-001f-5907-fc8fc4000000] + x-ms-request-id: [bdb7a727-0001-0096-2001-fd36e0000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_modified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_modified_fail.yaml index af767d4d..cd1efc51 100644 --- a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_modified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_modified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f0bd7324-67fa-11e7-a19d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e5a3725e-68f4-11e7-b381-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:09 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer87991ad9?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:53 GMT'] - ETag: ['"0x8D4CA1ED49E894B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:09 GMT'] + ETag: ['"0x8D4CB18CA867380"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:10 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [069fb00a-0001-00ed-3407-fc5d50000000] + x-ms-request-id: [27ff48cc-0001-003b-3701-fd168a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [f0dbc4e6-67fa-11e7-a6bb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:53 GMT'] + x-ms-client-request-id: [e5c1c006-68f4-11e7-b3f7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:09 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer87991ad9/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:53 GMT'] - ETag: ['"0x8D4CA1ED4F25A99"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:10 GMT'] + ETag: ['"0x8D4CB18CA8B8A4B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:10 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1a6e1d2c-0001-006f-2c07-fcfc00000000] + x-ms-request-id: [0ef36cc7-0001-0067-3901-fde773000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - If-Modified-Since: ['Thu, 13 Jul 2017 18:56:53 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f0efae28-67fa-11e7-ba37-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:53 GMT'] + If-Modified-Since: ['Sat, 15 Jul 2017 00:46:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e5d60eda-68f4-11e7-8325-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:09 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -62,14 +62,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainer87991ad9/blob1?comp=page response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:1a6e1d3e-0001-006f-3907-fcfc00000000\n\ - Time:2017-07-13T18:41:53.9827782Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:0ef36cd0-0001-0067-4001-fde773000000\n\ + Time:2017-07-15T00:31:10.2125563Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:10 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [1a6e1d3e-0001-006f-3907-fcfc00000000] + x-ms-request-id: [0ef36cd0-0001-0067-4001-fde773000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_none_match.yaml b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_none_match.yaml index e9c05eac..d4bb108e 100644 --- a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_none_match.yaml +++ b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_none_match.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f10d6046-67fa-11e7-9cf7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e640bde8-68f4-11e7-a6ae-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:10 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer38a119b9?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:53 GMT'] - ETag: ['"0x8D4CA1ED52E3169"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:11 GMT'] + ETag: ['"0x8D4CB18CB87D457"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:12 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dad8f105-0001-0101-1007-fc137c000000] + x-ms-request-id: [81a1d07b-0001-0097-4101-fd371d000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [f122f708-67fa-11e7-b34e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:54 GMT'] + x-ms-client-request-id: [e668795a-68f4-11e7-abae-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:10 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer38a119b9/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:53 GMT'] - ETag: ['"0x8D4CA1ED53A1EE5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:10 GMT'] + ETag: ['"0x8D4CB18CB3333F9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:11 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5ebf9da0-0001-00fb-1307-fc9cce000000] + x-ms-request-id: [03655953-0001-0113-4e01-fd2760000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +52,9 @@ interactions: Connection: [keep-alive] Content-Length: ['512'] If-None-Match: ['0x111111111111111'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f1378718-67fa-11e7-9617-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e67d60d8-68f4-11e7-a863-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:10 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -64,13 +64,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:54 GMT'] - ETag: ['"0x8D4CA1ED53FEC66"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:10 GMT'] + ETag: ['"0x8D4CB18CB39016C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:11 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [5ebf9db6-0001-00fb-2807-fc9cce000000] + x-ms-request-id: [03655966-0001-0113-5f01-fd2760000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_none_match_fail.yaml b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_none_match_fail.yaml index 05d7be68..33a44079 100644 --- a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_none_match_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_none_match_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f154c454-67fa-11e7-a8e7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e699c6f4-68f4-11e7-972d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:10 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbf121bb4?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:54 GMT'] - ETag: ['"0x8D4CA1ED5AC6844"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:10 GMT'] + ETag: ['"0x8D4CB18CB5C2610"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:11 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b30a32-0001-0026-5b07-fccf60000000] + x-ms-request-id: [a2da4edd-0001-005d-1401-fda4d0000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [f16b8a06-67fa-11e7-80e1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:54 GMT'] + x-ms-client-request-id: [e6b2069c-68f4-11e7-9425-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:10 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbf121bb4/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:54 GMT'] - ETag: ['"0x8D4CA1ED581E335"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:11 GMT'] + ETag: ['"0x8D4CB18CB7B6DE5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:11 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8b6d14a5-0001-000b-0d07-fc4ca0000000] + x-ms-request-id: [96269b4c-0001-0039-0e01-fd1470000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f1835dc8-67fa-11e7-beaf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e6c5a1ac-68f4-11e7-b530-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:11 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerbf121bb4/blob1 @@ -62,16 +62,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:54 GMT'] - ETag: ['"0x8D4CA1ED581E335"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:11 GMT'] + ETag: ['"0x8D4CB18CB7B6DE5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:11 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [8b6d14ce-0001-000b-3007-fc4ca0000000] + x-ms-request-id: [96269b5e-0001-0039-1c01-fd1470000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -80,10 +80,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - If-None-Match: ['"0x8D4CA1ED581E335"'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f189dbe4-67fa-11e7-9090-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:54 GMT'] + If-None-Match: ['"0x8D4CB18CB7B6DE5"'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e6ca6610-68f4-11e7-9b6d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:11 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -91,14 +91,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainerbf121bb4/blob1?comp=page response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:8b6d14e3-0001-000b-4307-fc4ca0000000\n\ - Time:2017-07-13T18:41:54.6176501Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:96269b72-0001-0039-2b01-fd1470000000\n\ + Time:2017-07-15T00:31:12.2903155Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:11 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [8b6d14e3-0001-000b-4307-fc4ca0000000] + x-ms-request-id: [96269b72-0001-0039-2b01-fd1470000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_unmodified.yaml b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_unmodified.yaml index 1545e3b3..dfb0bd29 100644 --- a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_unmodified.yaml +++ b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_unmodified.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f1b1014c-67fa-11e7-8d4b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e6e7540a-68f4-11e7-922a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:11 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer391919c1?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:53 GMT'] - ETag: ['"0x8D4CA1ED4B55200"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:11 GMT'] + ETag: ['"0x8D4CB18CB526F2B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:11 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1ad764cc-0001-004e-1507-fc9131000000] + x-ms-request-id: [1a9915d4-0001-00cd-5b01-fd319c000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [f1c74e28-67fa-11e7-9254-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:55 GMT'] + x-ms-client-request-id: [e6fdf980-68f4-11e7-9e57-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:11 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer391919c1/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:55 GMT'] - ETag: ['"0x8D4CA1ED5DF0820"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:11 GMT'] + ETag: ['"0x8D4CB18CBC75208"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:12 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4c7af9e8-0001-005b-6b07-fc53a8000000] + x-ms-request-id: [1ab732aa-0001-0082-0801-fdf584000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:56:55 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f1dc9a46-67fa-11e7-8b0c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:55 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:46:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e7121a8c-68f4-11e7-9ba9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:11 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -64,13 +64,13 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:41:55 GMT'] - ETag: ['"0x8D4CA1ED5E54ACD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:11 GMT'] + ETag: ['"0x8D4CB18CBCD94BD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:12 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [4c7af9fe-0001-005b-7c07-fc53a8000000] + x-ms-request-id: [1ab732b7-0001-0082-1301-fdf584000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_unmodified_fail.yaml b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_unmodified_fail.yaml index 39e371e1..a9a7eb40 100644 --- a/tests/recordings/test_blob_access_conditions.test_update_page_with_if_unmodified_fail.yaml +++ b/tests/recordings/test_blob_access_conditions.test_update_page_with_if_unmodified_fail.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f1f8eb38-67fa-11e7-a80c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e72e4748-68f4-11e7-ad03-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:11 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbfb21bbc?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:54 GMT'] - ETag: ['"0x8D4CA1ED6224BEB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:11 GMT'] + ETag: ['"0x8D4CB18CBE24C9F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:12 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fb3da252-0001-00ee-0407-fc5e57000000] + x-ms-request-id: [9dbe628f-0001-00b2-1101-fdafae000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [f211bbd8-67fa-11e7-8994-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:55 GMT'] + x-ms-client-request-id: [e74342ec-68f4-11e7-a517-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:11 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbfb21bbc/blob1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:55 GMT'] - ETag: ['"0x8D4CA1ED628EFAF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:13 GMT'] + ETag: ['"0x8D4CB18CC0D419C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:12 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [45531163-0001-0137-4b07-fcbe2e000000] + x-ms-request-id: [673e5ccf-0001-012f-2001-fd93bb000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - If-Unmodified-Since: ['Thu, 13 Jul 2017 18:26:56 GMT'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f2265cf8-67fa-11e7-af12-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:56 GMT'] + If-Unmodified-Since: ['Sat, 15 Jul 2017 00:16:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e757a282-68f4-11e7-b0fd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:12 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -62,14 +62,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainerbfb21bbc/blob1?comp=page response: body: {string: "\uFEFFConditionNotMetThe\ - \ condition specified using HTTP conditional header(s) is not met.\nRequestId:4553116a-0001-0137-5107-fcbe2e000000\n\ - Time:2017-07-13T18:41:55.9873025Z"} + \ condition specified using HTTP conditional header(s) is not met.\nRequestId:673e5ce5-0001-012f-3501-fd93bb000000\n\ + Time:2017-07-15T00:31:13.3571003Z"} headers: Content-Length: ['252'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:41:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:13 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [4553116a-0001-0137-5107-fcbe2e000000] + x-ms-request-id: [673e5ce5-0001-012f-3501-fd93bb000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The condition specified using HTTP conditional header(s) is not met.} diff --git a/tests/recordings/test_blob_encryption.test_create_block_blob_from_star.yaml b/tests/recordings/test_blob_encryption.test_create_block_blob_from_star.yaml index 9c50c282..d1d0aa37 100644 --- a/tests/recordings/test_blob_encryption.test_create_block_blob_from_star.yaml +++ b/tests/recordings/test_blob_encryption.test_create_block_blob_from_star.yaml @@ -1,32 +1,32 @@ interactions: - request: body: !!binary | - /9Kcb2DaY/6gGBCLf5QstQ== + oaK4OhYzF0dkMLI7E0Yc7g== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f2690e2c-67fa-11e7-9752-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:56 GMT'] + x-ms-client-request-id: [e7a26134-68f4-11e7-9340-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:12 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "cjA2IAkeOGiMk+0+kTs8DmxNoaYyGbmhkK5k6frle+3OmLbgvt/tFw==", "Algorithm": + "0OqENvVQl2BD3It+YbNE2vxHMALNXYSlmElxDwFKYW0+tIti6LF0IQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "EEZJNC18ysskOonXuCFo5Q==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "k/Xo0TPQ6psnu2KbDV+5mw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer4c2115be/encryption_block_blob4c2115be response: body: {string: ''} headers: - Content-MD5: [exPkBWNzZEGQMnhx7JGEjA==] - Date: ['Thu, 13 Jul 2017 18:41:55 GMT'] - ETag: ['"0x8D4CA1ED6806E4A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:56 GMT'] + Content-MD5: [QQREBctADDzI2uMtVHntkQ==] + Date: ['Sat, 15 Jul 2017 00:31:14 GMT'] + ETag: ['"0x8D4CB18CC6C3C0F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:13 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3a6aea0e-0001-0123-7d07-fc7d4a000000] + x-ms-request-id: [fdaecbd6-0001-00c3-0301-fddd97000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -34,9 +34,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f27dea5e-67fa-11e7-a813-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e7b972a8-68f4-11e7-8983-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:12 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -44,50 +44,50 @@ interactions: response: body: string: !!binary | - /9Kcb2DaY/6gGBCLf5QstQ== + oaK4OhYzF0dkMLI7E0Yc7g== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:55 GMT'] - ETag: ['"0x8D4CA1ED6806E4A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:14 GMT'] + ETag: ['"0x8D4CB18CC6C3C0F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:13 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [exPkBWNzZEGQMnhx7JGEjA==] + x-ms-blob-content-md5: [QQREBctADDzI2uMtVHntkQ==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "cjA2IAkeOGiMk+0+kTs8DmxNoaYyGbmhkK5k6frle+3OmLbgvt/tFw==", "Algorithm": + "0OqENvVQl2BD3It+YbNE2vxHMALNXYSlmElxDwFKYW0+tIti6LF0IQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "EEZJNC18ysskOonXuCFo5Q==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [3a6aea18-0001-0123-0607-fc7d4a000000] + "AES_CBC_256"}, "ContentEncryptionIV": "k/Xo0TPQ6psnu2KbDV+5mw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [fdaecc00-0001-00c3-2a01-fddd97000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} - request: body: !!binary | - bFsuvG5T+LjTdiN+ni8Iig== + v/CmuMTDTwCtX6SIXUmW5A== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f28f65e8-67fa-11e7-8380-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e7bf0d1e-68f4-11e7-ae22-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:12 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer4c2115be/encryption_block_blob4c2115be?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [d0WotoedbaCnYrkHn9Q7Lg==] - Date: ['Thu, 13 Jul 2017 18:41:55 GMT'] + Content-MD5: [ZGiwPpFsu8/g8idtGk4eEw==] + Date: ['Sat, 15 Jul 2017 00:31:14 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3a6aea3c-0001-0123-2007-fc7d4a000000] + x-ms-request-id: [fdaecc18-0001-00c3-3d01-fddd97000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -98,14 +98,14 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['143'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f2952228-67fa-11e7-a35a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e7c47268-68f4-11e7-bfaa-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:12 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "OB6g1G6BxQmGMUnEabJ9eAGSHcODQNvwNxylN5lpowwiLyb8NJitiw==", "Algorithm": + "IQUGv77zxTKLCpWka6G1ck6l5udin94uyMyDmbG5jkPPsRX7rraQdA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "M0m2qgyr+fGayfRnMBdGug==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "mCFyJoVh6p1yKLEzHyZHOA==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer4c2115be/encryption_block_blob4c2115be?comp=blocklist @@ -113,12 +113,12 @@ interactions: body: {string: ''} headers: Content-MD5: [NaM5seDiwWLqNLUuGnY4Fg==] - Date: ['Thu, 13 Jul 2017 18:41:55 GMT'] - ETag: ['"0x8D4CA1ED69DE6AE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:14 GMT'] + ETag: ['"0x8D4CB18CC7FC7B2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:13 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3a6aea47-0001-0123-2b07-fc7d4a000000] + x-ms-request-id: [fdaecc2a-0001-00c3-4e01-fddd97000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -126,9 +126,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f29bacf6-67fa-11e7-90a3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e7c9d38c-68f4-11e7-aa6e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:12 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -136,57 +136,57 @@ interactions: response: body: string: !!binary | - bFsuvG5T+LjTdiN+ni8Iig== + v/CmuMTDTwCtX6SIXUmW5A== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:55 GMT'] - ETag: ['"0x8D4CA1ED69DE6AE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:14 GMT'] + ETag: ['"0x8D4CB18CC7FC7B2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:13 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "OB6g1G6BxQmGMUnEabJ9eAGSHcODQNvwNxylN5lpowwiLyb8NJitiw==", "Algorithm": + "IQUGv77zxTKLCpWka6G1ck6l5udin94uyMyDmbG5jkPPsRX7rraQdA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "M0m2qgyr+fGayfRnMBdGug==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [3a6aea4f-0001-0123-3307-fc7d4a000000] + "AES_CBC_256"}, "ContentEncryptionIV": "mCFyJoVh6p1yKLEzHyZHOA==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [fdaecc3c-0001-00c3-5f01-fddd97000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} - request: body: !!binary | - e5tMtoOEkO4xRlSxfmmv9g== + AdtJM0oXA1eRI7aTuYUloA== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f2a16f9c-67fa-11e7-bf4d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:56 GMT'] + x-ms-client-request-id: [e7d18958-68f4-11e7-9ec1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:12 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "IkpK6mH7ifAabQCbMMkpNq+bxqJyDgCXykKxPYzL4qhO8jPKpTMIKg==", "Algorithm": + "TT2qcrbyhzVdCiQjZZSOMNVllYK1zG0RiJ8GDoUbkEqnUuEeF85cAg==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "UFajiR+gWeQ/u/MrWjM2Rw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "NIrHYLrBvbc2Ljyz3YS2PQ==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer4c2115be/encryption_block_blob4c2115be response: body: {string: ''} headers: - Content-MD5: [eZ92ILRV5S6rNPbAp7Wbfw==] - Date: ['Thu, 13 Jul 2017 18:41:55 GMT'] - ETag: ['"0x8D4CA1ED6A9CFB0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:56 GMT'] + Content-MD5: [zo/Ch2nHKBIEDkG1ge69pw==] + Date: ['Sat, 15 Jul 2017 00:31:14 GMT'] + ETag: ['"0x8D4CB18CC8D1094"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:13 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3a6aea5f-0001-0123-4107-fc7d4a000000] + x-ms-request-id: [fdaecc54-0001-00c3-7401-fddd97000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -194,9 +194,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f2a74d7a-67fa-11e7-868e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e7d8421e-68f4-11e7-89c7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:12 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -204,58 +204,58 @@ interactions: response: body: string: !!binary | - e5tMtoOEkO4xRlSxfmmv9g== + AdtJM0oXA1eRI7aTuYUloA== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:55 GMT'] - ETag: ['"0x8D4CA1ED6A9CFB0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:14 GMT'] + ETag: ['"0x8D4CB18CC8D1094"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:13 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [eZ92ILRV5S6rNPbAp7Wbfw==] + x-ms-blob-content-md5: [zo/Ch2nHKBIEDkG1ge69pw==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "IkpK6mH7ifAabQCbMMkpNq+bxqJyDgCXykKxPYzL4qhO8jPKpTMIKg==", "Algorithm": + "TT2qcrbyhzVdCiQjZZSOMNVllYK1zG0RiJ8GDoUbkEqnUuEeF85cAg==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "UFajiR+gWeQ/u/MrWjM2Rw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [3a6aea6a-0001-0123-4907-fc7d4a000000] + "AES_CBC_256"}, "ContentEncryptionIV": "NIrHYLrBvbc2Ljyz3YS2PQ==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [fdaecc6a-0001-00c3-0901-fddd97000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} - request: body: !!binary | - Qta4MGrwG3L+nbRz8dwAfg== + maThgj3M9dSIasuxF7nnlg== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f2ad0106-67fa-11e7-b454-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:56 GMT'] + x-ms-client-request-id: [e7dde91e-68f4-11e7-b151-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:12 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "nMBTK6RlsiqBrj02srUBxocBvQj2DxqXDc8lguo4sXQGVsT6TUkJOA==", "Algorithm": + "uXFriTHIg80gH2Ai4A/LbbQwPT39FSYkKcQyzZcV+pdwyVQwAWkZgQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "QouksHiM8AagE5b1t8Z9IA==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "DEKu/NwPhYjttmpPRXbCvw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer4c2115be/encryption_block_blob4c2115be response: body: {string: ''} headers: - Content-MD5: [g7h1WKH9sVs2hf7nC/KpzA==] - Date: ['Thu, 13 Jul 2017 18:41:55 GMT'] - ETag: ['"0x8D4CA1ED6B56A87"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:56 GMT'] + Content-MD5: [8t+EdrGHMhqIktzgERnnLQ==] + Date: ['Sat, 15 Jul 2017 00:31:14 GMT'] + ETag: ['"0x8D4CB18CC996EEE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:13 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3a6aea73-0001-0123-5107-fc7d4a000000] + x-ms-request-id: [fdaecc81-0001-00c3-2001-fddd97000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -263,9 +263,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f2b2c710-67fa-11e7-990f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e7e3dd24-68f4-11e7-b363-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:12 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -273,27 +273,27 @@ interactions: response: body: string: !!binary | - Qta4MGrwG3L+nbRz8dwAfg== + maThgj3M9dSIasuxF7nnlg== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:55 GMT'] - ETag: ['"0x8D4CA1ED6B56A87"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:14 GMT'] + ETag: ['"0x8D4CB18CC996EEE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:13 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [g7h1WKH9sVs2hf7nC/KpzA==] + x-ms-blob-content-md5: [8t+EdrGHMhqIktzgERnnLQ==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "nMBTK6RlsiqBrj02srUBxocBvQj2DxqXDc8lguo4sXQGVsT6TUkJOA==", "Algorithm": + "uXFriTHIg80gH2Ai4A/LbbQwPT39FSYkKcQyzZcV+pdwyVQwAWkZgQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "QouksHiM8AagE5b1t8Z9IA==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [3a6aea78-0001-0123-5607-fc7d4a000000] + "AES_CBC_256"}, "ContentEncryptionIV": "DEKu/NwPhYjttmpPRXbCvw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [fdaecc90-0001-00c3-2d01-fddd97000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_create_page_blob_from_star.yaml b/tests/recordings/test_blob_encryption.test_create_page_blob_from_star.yaml index 1a142df3..d38460f1 100644 --- a/tests/recordings/test_blob_encryption.test_create_page_blob_from_star.yaml +++ b/tests/recordings/test_blob_encryption.test_create_page_blob_from_star.yaml @@ -4,48 +4,48 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [f2e715d8-67fa-11e7-8462-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:57 GMT'] + x-ms-client-request-id: [e81c3b7e-68f4-11e7-8d33-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:13 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "Yn4NGWpyOSUeiiKHbjK7nzypje1j2r0dUXvcOMJmYBENycJ8ddnySA==", "Algorithm": + "xVSaAxUlQ8i9G+YmdK/MAcbXxbzC/s+LnFL3pdtVeOLyGej7B1Ft+w==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "e3xymiiRJ9ad3qLw+8rLSw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "zZLF12EbzrdqOmYNcbXrDw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer36241550/encryption_page_blob36241550 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:56 GMT'] - ETag: ['"0x8D4CA1ED6FE1962"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:13 GMT'] + ETag: ['"0x8D4CB18CCE5A13F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:14 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8657b6b4-0001-0033-3307-fc0df9000000] + x-ms-request-id: [a164d02c-0001-0094-6901-fd341a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 3nIw3oxjBjsDPcrm4r9Kv9BzB50L0z2Ohjd0F6UyAmkS/vD5LEzv2hWrK7cVPk0H/JTpiVi8o68n - 1BVMmIs+SGsMgcPVDW9OHNf82AgLqg5gBRS3c4sVJhatyQyy85KiQOYEj3w5I1jY7XfSvcr79mN9 - LA6jWsFh9tTmou1ZfxLRtoRhdiOocXpjiDL09f05yeEpe0GwMRcyus/nk7SHZO3mZSCCNTHK3b9c - 45XkynNsBz3NSoNJLMr0PWfQQZecCN+fr7GUThCX44Af4JN2cdlagmAPUmaDmQROKq/Gf+JZJ76y - xWU5ky9ozpZsp4XABbNCGOl9x10tQsvbEr6aMlscrFqgxd3ihUpX/9JGzUq5cc7rnE3jyJ5SAVZ5 - P+8DHUs3yl/31ItsmNyZEbTDu7xoSLfXVaK/omI/5NO9qne1D92tDKuAxR0IwwrCufovANWd/SL5 - o319gO76ZuK5QY4AUr9EaqtB1u486g70+TqHcWxVxWvLgGZs1XiFa2LPlbxGVC5WgVFrz0+oODgR - /MkZiSBNEq9ouDzFzo7B+p8wm+o97ytcD2tlT3doFPxRHiAyxWQRLGNHDUv2+OqEYXpoKhZ8kaa1 - JYgdl7DjZGfrG0CjyZp8fhp8OhCm2DrTdp5ov4NEtNk34FlJZRSdyBx+jFTHfAnQO4SUrvDXmO4= + rjQqzXryUyTaNclddo1ZKuSkWkAdVcs0yfoIQt4/cJStVSg4ZUUmkAHp6ISnzSS303Ua06GwA7K1 + Z2WNrYuqqjRvDs/VQgBVkNH2GTo7HUVS1UIhN08RrE+evNqiBAmVRJ31kUngBmN8/wnVS5sKaqcK + E1tseU4qWmQYXNgpsR5h5bz+A0AbMTO/h4iHInum+3KwKZzlMSnjgAh51tvVAEx8CvRShRobubt9 + ML+DbKTzjDgiZDd/pkPO3PbeqgRaZD7y8vtLr9G4DH8erwXAjys4OtSKogGR1aDz7qwo8DRc6yG4 + m83k8VOLUr01B+bbAJur3CAFxZWl3COQOVU4Oa2kp/0wgdcJWSZ0Ie+RP+AetZNL8vL+uebrz2uG + tR/LNO2Iu0TsP2GKGVGyZZkX/qPmFWFgdOSE3a/KG/RwSwUlxqMHF0TENmyK8gCr1G6RxuVT+TrG + l5Mf9X9nZQsvURXKBDowHj2U4G9L7mOemPMgNirzIoZJvL5iWH2QVXgY8/ZM/tE8z5LU/eTPQAtv + 533Yr2OET3TFGewjU1KEb1uoFYitCLLHi39TAemdGvhiGUTsSH/ZLOKVxyS3rluauDY/Dixxu9mh + s8jHe2Tjg5Qmjc7yF/uKoZnVgtmpBkz5sj5c0L2rOeLHwQFtNgqZKtIxrsx0eLHXfuy4tscsY4E= headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f2fb8a36-67fa-11e7-bbc6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e83026a2-68f4-11e7-a20b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:13 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -54,14 +54,14 @@ interactions: response: body: {string: ''} headers: - Content-MD5: [/+IlllAh0gxIhP9CvSDjnQ==] - Date: ['Thu, 13 Jul 2017 18:41:56 GMT'] - ETag: ['"0x8D4CA1ED703BFB7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:57 GMT'] + Content-MD5: [N0rq5prEMCpNqzEgqEp1jg==] + Date: ['Sat, 15 Jul 2017 00:31:13 GMT'] + ETag: ['"0x8D4CB18CCEBBCDD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:14 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [8657b6bf-0001-0033-3b07-fc0df9000000] + x-ms-request-id: [a164d03c-0001-0094-7601-fd341a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -69,9 +69,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f3012130-67fa-11e7-93b4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e836507a-68f4-11e7-aec3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:13 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -79,23 +79,23 @@ interactions: response: body: string: !!binary | - 3nIw3oxjBjsDPcrm4r9Kv9BzB50L0z2Ohjd0F6UyAmkS/vD5LEzv2hWrK7cVPk0H/JTpiVi8o68n - 1BVMmIs+SGsMgcPVDW9OHNf82AgLqg5gBRS3c4sVJhatyQyy85KiQOYEj3w5I1jY7XfSvcr79mN9 - LA6jWsFh9tTmou1ZfxLRtoRhdiOocXpjiDL09f05yeEpe0GwMRcyus/nk7SHZO3mZSCCNTHK3b9c - 45XkynNsBz3NSoNJLMr0PWfQQZecCN+fr7GUThCX44Af4JN2cdlagmAPUmaDmQROKq/Gf+JZJ76y - xWU5ky9ozpZsp4XABbNCGOl9x10tQsvbEr6aMlscrFqgxd3ihUpX/9JGzUq5cc7rnE3jyJ5SAVZ5 - P+8DHUs3yl/31ItsmNyZEbTDu7xoSLfXVaK/omI/5NO9qne1D92tDKuAxR0IwwrCufovANWd/SL5 - o319gO76ZuK5QY4AUr9EaqtB1u486g70+TqHcWxVxWvLgGZs1XiFa2LPlbxGVC5WgVFrz0+oODgR - /MkZiSBNEq9ouDzFzo7B+p8wm+o97ytcD2tlT3doFPxRHiAyxWQRLGNHDUv2+OqEYXpoKhZ8kaa1 - JYgdl7DjZGfrG0CjyZp8fhp8OhCm2DrTdp5ov4NEtNk34FlJZRSdyBx+jFTHfAnQO4SUrvDXmO4= + rjQqzXryUyTaNclddo1ZKuSkWkAdVcs0yfoIQt4/cJStVSg4ZUUmkAHp6ISnzSS303Ua06GwA7K1 + Z2WNrYuqqjRvDs/VQgBVkNH2GTo7HUVS1UIhN08RrE+evNqiBAmVRJ31kUngBmN8/wnVS5sKaqcK + E1tseU4qWmQYXNgpsR5h5bz+A0AbMTO/h4iHInum+3KwKZzlMSnjgAh51tvVAEx8CvRShRobubt9 + ML+DbKTzjDgiZDd/pkPO3PbeqgRaZD7y8vtLr9G4DH8erwXAjys4OtSKogGR1aDz7qwo8DRc6yG4 + m83k8VOLUr01B+bbAJur3CAFxZWl3COQOVU4Oa2kp/0wgdcJWSZ0Ie+RP+AetZNL8vL+uebrz2uG + tR/LNO2Iu0TsP2GKGVGyZZkX/qPmFWFgdOSE3a/KG/RwSwUlxqMHF0TENmyK8gCr1G6RxuVT+TrG + l5Mf9X9nZQsvURXKBDowHj2U4G9L7mOemPMgNirzIoZJvL5iWH2QVXgY8/ZM/tE8z5LU/eTPQAtv + 533Yr2OET3TFGewjU1KEb1uoFYitCLLHi39TAemdGvhiGUTsSH/ZLOKVxyS3rluauDY/Dixxu9mh + s8jHe2Tjg5Qmjc7yF/uKoZnVgtmpBkz5sj5c0L2rOeLHwQFtNgqZKtIxrsx0eLHXfuy4tscsY4E= headers: Accept-Ranges: [bytes] Content-Length: ['512'] Content-Range: [bytes 0-511/512] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:56 GMT'] - ETag: ['"0x8D4CA1ED703BFB7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:13 GMT'] + ETag: ['"0x8D4CB18CCEBBCDD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:14 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] @@ -103,11 +103,11 @@ interactions: x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "Yn4NGWpyOSUeiiKHbjK7nzypje1j2r0dUXvcOMJmYBENycJ8ddnySA==", "Algorithm": + "xVSaAxUlQ8i9G+YmdK/MAcbXxbzC/s+LnFL3pdtVeOLyGej7B1Ft+w==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "e3xymiiRJ9ad3qLw+8rLSw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [8657b6c9-0001-0033-4207-fc0df9000000] + "AES_CBC_256"}, "ContentEncryptionIV": "zZLF12EbzrdqOmYNcbXrDw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [a164d04e-0001-0094-0501-fd341a000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -116,48 +116,48 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [f3071998-67fa-11e7-8a9f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:57 GMT'] + x-ms-client-request-id: [e83bea5a-68f4-11e7-9c06-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:13 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "B88a9cEVG448DJ+qj6Ho8HPVRQbjFhIxebzAbkUeYLN+cYJzWLKWBg==", "Algorithm": + "OT++Gey+5B3pdXpwHKUh3vuv00xI5OMAQzfsN/Mxg3PtFsdGS+LdLg==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "fRukMPGB6VYWWSWfJ3JYhw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "X+UbUL/hIYDllC2To/6msw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer36241550/encryption_page_blob36241550 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:56 GMT'] - ETag: ['"0x8D4CA1ED70F81A6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:13 GMT'] + ETag: ['"0x8D4CB18CCF77EDA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:14 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8657b6d8-0001-0033-4f07-fc0df9000000] + x-ms-request-id: [a164d05f-0001-0094-1401-fd341a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 4z4jRP8nK9FYmFS1/rUw0K8G9gSUSFoNfxKaHwY1ev/6YwfG0DwPAR7Q2MVYpxQIPgscyusRWbH8 - XpxtZ7gQDMly5AtzYo8aPOlgM7cwxLd9wrynBLpRBN+ToUo09g9rds+A6+ER1mBiKoTBp+zJeO5H - rPA65HwbEojJpJxpQy/i+BNRxIJNtsUwowaPBmBMZf7PMbSZ8J1Ixbms+DgBpwBNulImLcuSeTRe - muOAWdqNXBMUS+7YnMz27PA/qR7sijwLQdWykK+m0P+aJmOxJyg9yVYHmwQ7oJIJ6BCw8+qEhBpz - G7YmgEh67dTPDqpEdPLV1dtTnLw8+c1uxMZxvcVufYv4PXRMMhShYJKjZT7G6VKWMMZJg0ykLnEJ - 3V3B9Zuy2A8SL0wlLrCSX6ET3rP9o9xMMsdCxVQSzb6uQYifMQVfhFzUqSmGih1p35ni8o8JKPyV - UbbdS66cJZeiwA/7IRyI48isuoiSs5pXnm280sL8739xvtqHewTUGZHVfW999v38SzTPSySyNurf - zl6bNfMGSHHNS2hERMVqQOnaaQycBIaPlpYJunDO2l2Xk5qMtLIJJ0TBh2gd0qFeKIcXHqsqFiFI - 6jBrlNCbqcd4DajTNz0iXVy6+IqMmiSx03nxeHj2BMVPiKNlgT719Z/QgqtNrbWbPrD/X/YqyPU= + T3wem0CZ2Is0yzKwSnWhPk8+zaW5Ycy5aLaAkxcTmwcH+QjiRzLt9S1aG8DJOblsv8CKRharRy/Z + 7zdKBHrPfFtLghP+WziG2OxjygrkZ6roR5+wKCRYH91wOft/3sNU7OxrWRHEiVsXBiPldYtm2egD + MF4aBF0WmBOozR6fqC+quXuni64PQojdGXByUjzVFcjiHGkBgqdDne83YuCqVrWWQc0I+ScDWyAd + lRHgflZ+48hTeU9ZTCZc5NJ6b5VOAmcNp0eQTSosLX6r83Ho7knV5Y1ceRhCgbXXPsLGUxZ8DkBc + 5cSnAdgScjhc5MoDbv5J0DTdmFKHa2KBzN0kA57OKxhBGQXGuO5YkVnYDjsMFm8qK1pb82TojKsk + zMV7776vaJH6qVViv3RLtcNtsRxBIPzNFe9jqAE1+VERoI9bYJqFvLrbYyMsPBgBVva4cgnC6IMA + hqd4xl3JjtWWK6oL9sdhJvRUO8XBBJmaUGH84v2SpX4B/24KRQu6svrWC7t9KWN6n+qh7mrqXtCs + TvtMJg/KUBU5fvUuG6T0QvyoBRnejmYkRvOFJ1LS0MUCvgDu8gkBz5NECRT/idmHDgLtZMgObZcm + WysJDfoqlrLulH+qW8/6E16ZKN3ktho83JTYBR13MxNujDTtmbX/XewsyIvivz/LlFkJ4wRZLuo= headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f30d3718-67fa-11e7-8a02-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e8432a40-68f4-11e7-8893-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:13 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -166,14 +166,14 @@ interactions: response: body: {string: ''} headers: - Content-MD5: [mBc6wePIGNsUCoiqGSFLPg==] - Date: ['Thu, 13 Jul 2017 18:41:56 GMT'] - ETag: ['"0x8D4CA1ED7157628"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:57 GMT'] + Content-MD5: [E8bfkhB+KoAvqHWM+zEW+w==] + Date: ['Sat, 15 Jul 2017 00:31:13 GMT'] + ETag: ['"0x8D4CB18CCFE5DF0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:14 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [8657b6e0-0001-0033-5707-fc0df9000000] + x-ms-request-id: [a164d084-0001-0094-3501-fd341a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -181,9 +181,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f312d358-67fa-11e7-a7fe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e848b762-68f4-11e7-87b3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:13 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -191,23 +191,23 @@ interactions: response: body: string: !!binary | - 4z4jRP8nK9FYmFS1/rUw0K8G9gSUSFoNfxKaHwY1ev/6YwfG0DwPAR7Q2MVYpxQIPgscyusRWbH8 - XpxtZ7gQDMly5AtzYo8aPOlgM7cwxLd9wrynBLpRBN+ToUo09g9rds+A6+ER1mBiKoTBp+zJeO5H - rPA65HwbEojJpJxpQy/i+BNRxIJNtsUwowaPBmBMZf7PMbSZ8J1Ixbms+DgBpwBNulImLcuSeTRe - muOAWdqNXBMUS+7YnMz27PA/qR7sijwLQdWykK+m0P+aJmOxJyg9yVYHmwQ7oJIJ6BCw8+qEhBpz - G7YmgEh67dTPDqpEdPLV1dtTnLw8+c1uxMZxvcVufYv4PXRMMhShYJKjZT7G6VKWMMZJg0ykLnEJ - 3V3B9Zuy2A8SL0wlLrCSX6ET3rP9o9xMMsdCxVQSzb6uQYifMQVfhFzUqSmGih1p35ni8o8JKPyV - UbbdS66cJZeiwA/7IRyI48isuoiSs5pXnm280sL8739xvtqHewTUGZHVfW999v38SzTPSySyNurf - zl6bNfMGSHHNS2hERMVqQOnaaQycBIaPlpYJunDO2l2Xk5qMtLIJJ0TBh2gd0qFeKIcXHqsqFiFI - 6jBrlNCbqcd4DajTNz0iXVy6+IqMmiSx03nxeHj2BMVPiKNlgT719Z/QgqtNrbWbPrD/X/YqyPU= + T3wem0CZ2Is0yzKwSnWhPk8+zaW5Ycy5aLaAkxcTmwcH+QjiRzLt9S1aG8DJOblsv8CKRharRy/Z + 7zdKBHrPfFtLghP+WziG2OxjygrkZ6roR5+wKCRYH91wOft/3sNU7OxrWRHEiVsXBiPldYtm2egD + MF4aBF0WmBOozR6fqC+quXuni64PQojdGXByUjzVFcjiHGkBgqdDne83YuCqVrWWQc0I+ScDWyAd + lRHgflZ+48hTeU9ZTCZc5NJ6b5VOAmcNp0eQTSosLX6r83Ho7knV5Y1ceRhCgbXXPsLGUxZ8DkBc + 5cSnAdgScjhc5MoDbv5J0DTdmFKHa2KBzN0kA57OKxhBGQXGuO5YkVnYDjsMFm8qK1pb82TojKsk + zMV7776vaJH6qVViv3RLtcNtsRxBIPzNFe9jqAE1+VERoI9bYJqFvLrbYyMsPBgBVva4cgnC6IMA + hqd4xl3JjtWWK6oL9sdhJvRUO8XBBJmaUGH84v2SpX4B/24KRQu6svrWC7t9KWN6n+qh7mrqXtCs + TvtMJg/KUBU5fvUuG6T0QvyoBRnejmYkRvOFJ1LS0MUCvgDu8gkBz5NECRT/idmHDgLtZMgObZcm + WysJDfoqlrLulH+qW8/6E16ZKN3ktho83JTYBR13MxNujDTtmbX/XewsyIvivz/LlFkJ4wRZLuo= headers: Accept-Ranges: [bytes] Content-Length: ['512'] Content-Range: [bytes 0-511/512] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:57 GMT'] - ETag: ['"0x8D4CA1ED7157628"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:13 GMT'] + ETag: ['"0x8D4CB18CCFE5DF0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:14 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] @@ -215,11 +215,11 @@ interactions: x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "B88a9cEVG448DJ+qj6Ho8HPVRQbjFhIxebzAbkUeYLN+cYJzWLKWBg==", "Algorithm": + "OT++Gey+5B3pdXpwHKUh3vuv00xI5OMAQzfsN/Mxg3PtFsdGS+LdLg==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "fRukMPGB6VYWWSWfJ3JYhw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [8657b6e4-0001-0033-5b07-fc0df9000000] + "AES_CBC_256"}, "ContentEncryptionIV": "X+UbUL/hIYDllC2To/6msw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [a164d0a8-0001-0094-5401-fd341a000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -228,48 +228,48 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [f318d014-67fa-11e7-99d8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:57 GMT'] + x-ms-client-request-id: [e84e0c46-68f4-11e7-89b8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:13 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "m3OsUpXNZY744u7aWGByGTsiXITHG4EmD4cW/rTKluBJCaitnIJ59w==", "Algorithm": + "mN1AkqLSnMZDvsueSYVQL7QxbZ5lylChh7tYOrlA2Pxjy+XfrMw6HA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "Foy5CFC3VjyOJK9CAB/qSg==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "UuAawghARZJx1X20Mqq7tg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer36241550/encryption_page_blob36241550 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:41:57 GMT'] - ETag: ['"0x8D4CA1ED721AD60"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:13 GMT'] + ETag: ['"0x8D4CB18CD098391"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:14 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8657b6eb-0001-0033-6207-fc0df9000000] + x-ms-request-id: [a164d0bc-0001-0094-6601-fd341a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - PeClgNQZ/IS2lEpKk2P9RLUM1d2f0oX1tUOw7XEyb8XwgRfVx9XSGfT7Qxu6RkjIqcOGj8ydv5te - HoaQMc4RDMFKpp+0ddy94+xXdoaciK6y0ZcMGdE12Rwq2eOENxhxaQMMgBzajYPhgRyM1UgbbToY - +3n3E00BfJKNs81/Z/a3ReejzwQ3VTjNVojSgCEmqpVsfVY095AferFpJBvk9KGkMOcOxpTnBjL+ - 9WfLsN++WOl/q+9XeA2NRss4qVu3JP0XW8+FbTbJRkxRt6atZ3jjO8bIBwSQkeZD/LAN8g7RTsoi - QLtG/hZV6m+OvPImi9P24G3WG5NgMyuf6CpFrFSiJ3S2mP2SsYDF5GmeoD7jas3+Q8cgLRgxv2Il - ugnlQmMU415C5azwKpolBA/gvhRnybe8ef4vDbOuR4FPYwGDdDCfL8dDMybAJjHKhx/whjqlL1Un - MhMBXZm8tZWH0XdMIfkwnjwbKOn8uJE/aHHi5+of9MyncUu+k6Li3VQ8mr9FHyqJ2SPKS+/t+jGV - cxbu/rWiI+HSZCmvjwvQkUw5sMVsOtP/uL3E4ka/QJDQ9SB9slCfNF5//bC0bGq58f8n5mGXsNl5 - aa4ihiDdw4vwevIqA5px3WFHlYGHRSWZ314TChX2B/O2rcMwY6FnTa3Etqce1RyW7abYqJ9nt5g= + cokO7NwKCeLAVqg5KC+1xbAQrs+TN0FfFdPu568an8+R8nhNcirOWs1gAQEh1vwvQW+8T4TMK080 + gakuRATw1qyZkH1I5uZpEf0baDEFsTcTMiBWlVu6UqFU8lMyZF7Tf8q2HkHZw3Yl3NnyMdt+R3PT + jSnaFmaAdpMvNiw5TGgVspA34qGC7Io5wZuHUhvgxe4WA1SnAi8t7Xqv8wpcyX2GDHHgnfPI7Z4Q + 8WMdy0MG9Qf8LlTYV5vU5ULOiEN5vWk9Gn3A0XajHMONYpmCc+bOlxHooXJwXczFrMgj+BTGLFV7 + x6OBOSbO/IkHzQEgGgrVNsco3eE2Bk7xn4Ft6Js64D+xVeE2SUe5qYUYwCmexQiByIXtQOwuqmPI + LLlCbQkt4JF/5su/EA/elLGpkPsYUws7t790uG4o4iBLgi5fHyiwDo6zq1aXCNagZTK8vmEyYmVx + /soIiMBBTjkfcKHwEpCZ097bgxVpJ+8R1FIKRdUSbRdIuMGbCrDgflXQkQjiUqdOBc5KeL39/CH9 + xdTxgqIA9B10wcCtQed1hdAMM6/qRmRSQk5Uoumouh74O5wadr8GyiG2oq4f4W6Qoq9vcxYE0Q/h + Kfv3QWrHo8hwvlI+l24u3R5P3e/hsWVTh/Kc5EvaWeF5NsyVBj7cbVrsM3oKnp+syPrqZpCe/YQ= headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f31f5c74-67fa-11e7-809b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e8540ff4-68f4-11e7-98d2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:13 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -278,14 +278,14 @@ interactions: response: body: {string: ''} headers: - Content-MD5: [Cx15uUlbniCIk+E3hibMgQ==] - Date: ['Thu, 13 Jul 2017 18:41:57 GMT'] - ETag: ['"0x8D4CA1ED7277AD1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:57 GMT'] + Content-MD5: [OdVyjrTN+BupRgorGSK38w==] + Date: ['Sat, 15 Jul 2017 00:31:14 GMT'] + ETag: ['"0x8D4CB18CD119B6D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:14 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [8657b6f1-0001-0033-6807-fc0df9000000] + x-ms-request-id: [a164d0ce-0001-0094-7601-fd341a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -293,9 +293,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f324eef8-67fa-11e7-9553-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e85cc914-68f4-11e7-bd42-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:13 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -303,23 +303,23 @@ interactions: response: body: string: !!binary | - PeClgNQZ/IS2lEpKk2P9RLUM1d2f0oX1tUOw7XEyb8XwgRfVx9XSGfT7Qxu6RkjIqcOGj8ydv5te - HoaQMc4RDMFKpp+0ddy94+xXdoaciK6y0ZcMGdE12Rwq2eOENxhxaQMMgBzajYPhgRyM1UgbbToY - +3n3E00BfJKNs81/Z/a3ReejzwQ3VTjNVojSgCEmqpVsfVY095AferFpJBvk9KGkMOcOxpTnBjL+ - 9WfLsN++WOl/q+9XeA2NRss4qVu3JP0XW8+FbTbJRkxRt6atZ3jjO8bIBwSQkeZD/LAN8g7RTsoi - QLtG/hZV6m+OvPImi9P24G3WG5NgMyuf6CpFrFSiJ3S2mP2SsYDF5GmeoD7jas3+Q8cgLRgxv2Il - ugnlQmMU415C5azwKpolBA/gvhRnybe8ef4vDbOuR4FPYwGDdDCfL8dDMybAJjHKhx/whjqlL1Un - MhMBXZm8tZWH0XdMIfkwnjwbKOn8uJE/aHHi5+of9MyncUu+k6Li3VQ8mr9FHyqJ2SPKS+/t+jGV - cxbu/rWiI+HSZCmvjwvQkUw5sMVsOtP/uL3E4ka/QJDQ9SB9slCfNF5//bC0bGq58f8n5mGXsNl5 - aa4ihiDdw4vwevIqA5px3WFHlYGHRSWZ314TChX2B/O2rcMwY6FnTa3Etqce1RyW7abYqJ9nt5g= + cokO7NwKCeLAVqg5KC+1xbAQrs+TN0FfFdPu568an8+R8nhNcirOWs1gAQEh1vwvQW+8T4TMK080 + gakuRATw1qyZkH1I5uZpEf0baDEFsTcTMiBWlVu6UqFU8lMyZF7Tf8q2HkHZw3Yl3NnyMdt+R3PT + jSnaFmaAdpMvNiw5TGgVspA34qGC7Io5wZuHUhvgxe4WA1SnAi8t7Xqv8wpcyX2GDHHgnfPI7Z4Q + 8WMdy0MG9Qf8LlTYV5vU5ULOiEN5vWk9Gn3A0XajHMONYpmCc+bOlxHooXJwXczFrMgj+BTGLFV7 + x6OBOSbO/IkHzQEgGgrVNsco3eE2Bk7xn4Ft6Js64D+xVeE2SUe5qYUYwCmexQiByIXtQOwuqmPI + LLlCbQkt4JF/5su/EA/elLGpkPsYUws7t790uG4o4iBLgi5fHyiwDo6zq1aXCNagZTK8vmEyYmVx + /soIiMBBTjkfcKHwEpCZ097bgxVpJ+8R1FIKRdUSbRdIuMGbCrDgflXQkQjiUqdOBc5KeL39/CH9 + xdTxgqIA9B10wcCtQed1hdAMM6/qRmRSQk5Uoumouh74O5wadr8GyiG2oq4f4W6Qoq9vcxYE0Q/h + Kfv3QWrHo8hwvlI+l24u3R5P3e/hsWVTh/Kc5EvaWeF5NsyVBj7cbVrsM3oKnp+syPrqZpCe/YQ= headers: Accept-Ranges: [bytes] Content-Length: ['512'] Content-Range: [bytes 0-511/512] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:57 GMT'] - ETag: ['"0x8D4CA1ED7277AD1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:14 GMT'] + ETag: ['"0x8D4CB18CD119B6D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:14 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] @@ -327,11 +327,11 @@ interactions: x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "m3OsUpXNZY744u7aWGByGTsiXITHG4EmD4cW/rTKluBJCaitnIJ59w==", "Algorithm": + "mN1AkqLSnMZDvsueSYVQL7QxbZ5lylChh7tYOrlA2Pxjy+XfrMw6HA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "Foy5CFC3VjyOJK9CAB/qSg==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [8657b6f5-0001-0033-6c07-fc0df9000000] + "AES_CBC_256"}, "ContentEncryptionIV": "UuAawghARZJx1X20Mqq7tg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [a164d0e1-0001-0094-0901-fd341a000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_get_blob_kek.yaml b/tests/recordings/test_blob_encryption.test_get_blob_kek.yaml index b0110e7f..6eb5b44a 100644 --- a/tests/recordings/test_blob_encryption.test_get_blob_kek.yaml +++ b/tests/recordings/test_blob_encryption.test_get_blob_kek.yaml @@ -1,32 +1,32 @@ interactions: - request: body: !!binary | - J/XMERWFOGB+HZ6hUG2r3g== + BTCz6b+tOsbiWx/XQXRDsQ== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f35a1952-67fa-11e7-b398-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:58 GMT'] + x-ms-client-request-id: [e890c018-68f4-11e7-9b42-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:14 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "92w5XCnZaRhvL7gwWIXxh8NNYRIKf2pTiZeXOW1CXtYT5sIQudrx6Q==", "Algorithm": + "4ESAUpyfEjz+cHqDncWZ2XAzeVIJcKnhXiKheKTEv8Qq/0MkMm2gIw==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "SDnX8yJNnwV6wuun29PT7A==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "wjvCPVWzXcm93J2UYR+Wtg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer31d30f8e/encryption_block_blob31d30f8e response: body: {string: ''} headers: - Content-MD5: [00hncBLPFyM0WwEO6yRJeg==] - Date: ['Thu, 13 Jul 2017 18:41:56 GMT'] - ETag: ['"0x8D4CA1ED7731059"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:57 GMT'] + Content-MD5: [LWvaj+Vkl7a9FIf47xiNZQ==] + Date: ['Sat, 15 Jul 2017 00:31:15 GMT'] + ETag: ['"0x8D4CB18CD5BF89B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:15 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e99189a3-0001-003a-2607-fc1777000000] + x-ms-request-id: [e41f8ea8-0001-0011-7801-fd63cf000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -34,9 +34,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f3709058-67fa-11e7-91cd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e8a64046-68f4-11e7-9b4e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:14 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -44,27 +44,27 @@ interactions: response: body: string: !!binary | - J/XMERWFOGB+HZ6hUG2r3g== + BTCz6b+tOsbiWx/XQXRDsQ== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:56 GMT'] - ETag: ['"0x8D4CA1ED7731059"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:15 GMT'] + ETag: ['"0x8D4CB18CD5BF89B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:15 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [00hncBLPFyM0WwEO6yRJeg==] + x-ms-blob-content-md5: [LWvaj+Vkl7a9FIf47xiNZQ==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "92w5XCnZaRhvL7gwWIXxh8NNYRIKf2pTiZeXOW1CXtYT5sIQudrx6Q==", "Algorithm": + "4ESAUpyfEjz+cHqDncWZ2XAzeVIJcKnhXiKheKTEv8Qq/0MkMm2gIw==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "SDnX8yJNnwV6wuun29PT7A==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [e99189b2-0001-003a-3107-fc1777000000] + "AES_CBC_256"}, "ContentEncryptionIV": "wjvCPVWzXcm93J2UYR+Wtg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [e41f8ec0-0001-0011-0f01-fd63cf000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_get_blob_nonmatching_kid.yaml b/tests/recordings/test_blob_encryption.test_get_blob_nonmatching_kid.yaml index 0839cfad..f61626a3 100644 --- a/tests/recordings/test_blob_encryption.test_get_blob_nonmatching_kid.yaml +++ b/tests/recordings/test_blob_encryption.test_get_blob_nonmatching_kid.yaml @@ -1,32 +1,32 @@ interactions: - request: body: !!binary | - qpjw1FFVWYhNK1szobIa6g== + HzmtMcK2QdmXcrNc03xNyA== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f3bb68ec-67fa-11e7-b51b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:58 GMT'] + x-ms-client-request-id: [e8f770e8-68f4-11e7-a4a4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:14 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "yfpkBLrvcicxSZJIpDLCL1tkXO1FtYGkQL//vugcoCn5e4TcFFZJXg==", "Algorithm": + "YqD90cpprQdWPRyP8CfFGCZxtugRSicETlCrJLzedGY/ygzzbd207w==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "n3v4Otxn+CLz6qiR1g1V/A==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "anEvF7LN2uFGgVrNJpbbEg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd5d1480/encryption_block_blobd5d1480 response: body: {string: ''} headers: - Content-MD5: [fy9eOJcZssE5wDCI1KKb3A==] - Date: ['Thu, 13 Jul 2017 18:41:58 GMT'] - ETag: ['"0x8D4CA1ED7D69F10"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:58 GMT'] + Content-MD5: [Lhz/A6Lrg0oEfeZ/Ywm55A==] + Date: ['Sat, 15 Jul 2017 00:31:15 GMT'] + ETag: ['"0x8D4CB18CDC10EAF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:15 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c4102f56-0001-0097-3807-fc371d000000] + x-ms-request-id: [b90daaeb-0001-013e-6301-fda4a0000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -34,9 +34,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f3d3f39e-67fa-11e7-a2b1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e90b11a4-68f4-11e7-aa5f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:14 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -44,27 +44,27 @@ interactions: response: body: string: !!binary | - qpjw1FFVWYhNK1szobIa6g== + HzmtMcK2QdmXcrNc03xNyA== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:58 GMT'] - ETag: ['"0x8D4CA1ED7D69F10"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:15 GMT'] + ETag: ['"0x8D4CB18CDC10EAF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:15 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [fy9eOJcZssE5wDCI1KKb3A==] + x-ms-blob-content-md5: [Lhz/A6Lrg0oEfeZ/Ywm55A==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "yfpkBLrvcicxSZJIpDLCL1tkXO1FtYGkQL//vugcoCn5e4TcFFZJXg==", "Algorithm": + "YqD90cpprQdWPRyP8CfFGCZxtugRSicETlCrJLzedGY/ygzzbd207w==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "n3v4Otxn+CLz6qiR1g1V/A==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [c4102f62-0001-0097-4307-fc371d000000] + "AES_CBC_256"}, "ContentEncryptionIV": "anEvF7LN2uFGgVrNJpbbEg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [b90dab11-0001-013e-0601-fda4a0000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_get_blob_range_aligns_on_16_byte_block.yaml b/tests/recordings/test_blob_encryption.test_get_blob_range_aligns_on_16_byte_block.yaml index 8eaea95d..df31fa82 100644 --- a/tests/recordings/test_blob_encryption.test_get_blob_range_aligns_on_16_byte_block.yaml +++ b/tests/recordings/test_blob_encryption.test_get_blob_range_aligns_on_16_byte_block.yaml @@ -1,34 +1,34 @@ interactions: - request: body: !!binary | - W4q9ODQBP/az0aLlVEO7VHy3aJUjWtvngPs383BnkrO7jrA7k/ZmH4Be09Umr8sds4wh9PGhVW0p - FC6fC1zi9c//6bdF6DX5rEm53GF3NLvNaMAyy/Yud9u2+OA1jjJ6TFVRGFMAGvntafxqXI8mmoAB - D0eITT7ZbVYuQJf54sSTB4KEj3FcHNoMHDX08Bkg + etGArKDrGXmfLdPQ/ne8/Ov986s9OWuTt1jMrUBbBHLEbZsJcp+BYqOmr0+y5QO3pGy7k20mVdJn + osHpgsipBzJXCa8X9/M7L7lr/2vmPB8gA4dpG6lLp6nBj/PcyMn6DjQ8qqCWhutipd/Qs0mD9gm4 + TeJHp54fjMaPOn8ghzaQqCvhZu2qLpR7r0IcfcHI headers: Connection: [keep-alive] Content-Length: ['144'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f4039b76-67fa-11e7-95b3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:59 GMT'] + x-ms-client-request-id: [e942c450-68f4-11e7-bc54-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:15 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "/ateNghkmgZlQhvfoIPcspbD/qzTwktNYv5ODVvwl87b8ci0NxpReA==", "Algorithm": + "HFupCI5sF0g0GckDPzuuxetQqmaRt6X5ZzjETdmOVliVY0/kJXglvQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "a8TFKQAtOaCqToupFQSmjg==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "z33VvPrpjnUiQ9C8qHhEXw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer4ff319bc/encryption_block_blob4ff319bc response: body: {string: ''} headers: - Content-MD5: [89iXu1aLkdagW38KKULdCQ==] - Date: ['Thu, 13 Jul 2017 18:41:58 GMT'] - ETag: ['"0x8D4CA1ED81B2E78"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:58 GMT'] + Content-MD5: [eS3lCrtI1ATVCcSZvMkewg==] + Date: ['Sat, 15 Jul 2017 00:31:15 GMT'] + ETag: ['"0x8D4CB18CE0DB646"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:16 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [720354fa-0001-00bf-4207-fc40a2000000] + x-ms-request-id: [98af3dd0-0001-001f-4001-fd8fc4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -36,9 +36,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f41b2f86-67fa-11e7-9530-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e9584d66-68f4-11e7-bedf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:15 GMT'] x-ms-range: [bytes=32-63] x-ms-version: ['2017-04-17'] method: GET @@ -46,27 +46,27 @@ interactions: response: body: string: !!binary | - u46wO5P2Zh+AXtPVJq/LHbOMIfTxoVVtKRQunwtc4vU= + xG2bCXKfgWKjpq9PsuUDt6Rsu5NtJlXSZ6LB6YLIqQc= headers: Accept-Ranges: [bytes] Content-Length: ['32'] Content-Range: [bytes 32-63/144] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:58 GMT'] - ETag: ['"0x8D4CA1ED81B2E78"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:15 GMT'] + ETag: ['"0x8D4CB18CE0DB646"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:16 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [89iXu1aLkdagW38KKULdCQ==] + x-ms-blob-content-md5: [eS3lCrtI1ATVCcSZvMkewg==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "/ateNghkmgZlQhvfoIPcspbD/qzTwktNYv5ODVvwl87b8ci0NxpReA==", "Algorithm": + "HFupCI5sF0g0GckDPzuuxetQqmaRt6X5ZzjETdmOVliVY0/kJXglvQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "a8TFKQAtOaCqToupFQSmjg==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [72035522-0001-00bf-6607-fc40a2000000] + "AES_CBC_256"}, "ContentEncryptionIV": "z33VvPrpjnUiQ9C8qHhEXw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [98af3df0-0001-001f-5e01-fd8fc4000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_get_blob_range_beginning_to_middle.yaml b/tests/recordings/test_blob_encryption.test_get_blob_range_beginning_to_middle.yaml index e37a3f44..0a8a64ad 100644 --- a/tests/recordings/test_blob_encryption.test_get_blob_range_beginning_to_middle.yaml +++ b/tests/recordings/test_blob_encryption.test_get_blob_range_beginning_to_middle.yaml @@ -1,34 +1,34 @@ interactions: - request: body: !!binary | - YhdfJnEgWOajM9qlpF8isUTui/oKjUcO5I434MEMsJNM7IJ6/ZRPvGkfk1P4ovkQCA+Syh58Qxfm - T9GPpB8/4K1I8JMNmLUhX6IAzaIz8KLezV21mWGcXdjto2SjhaCJqR4+k3y2AKZUmI6dFTn4o4KZ - H8JN7ROlNHUSMylVRbti+AEHUyRwOcdzGaOWnFIM + XA2i3xDvWAfrLouCsxuOppGNfKEEmymlc3dxaukX1LUAXP+3NgmRwzh/yIHtd6q5LFA5qVAlE3iS + C4AcQlmJcNDKBp6ft1HPSw12GxD87vvcdYs7UVEo9T039xVE7MH0234blpBSIyqizdSc5QHcrZU+ + JAo4DDme8XnyYJpSXhnoaqsRjxqf9JBRklBoBOAp headers: Connection: [keep-alive] Content-Length: ['144'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f46a666c-67fa-11e7-a9b2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:59 GMT'] + x-ms-client-request-id: [e98bd33e-68f4-11e7-9334-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:15 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "BxZBKquNxol5dW6UuF2WzTPKRackqzHLElNhCQIVUpIEoRSXjwxXPA==", "Algorithm": + "fTp1u0Q6op4pEVJvMJlCNvabF1EfoHGS3yMLhTQ0TQZS8UpaZvEcdA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "1xedSMY2FdS6WY0VWqPw3Q==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "aDjuuEgt03bTVjO5bZCVGQ==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainereecf1880/encryption_block_blobeecf1880 response: body: {string: ''} headers: - Content-MD5: [1u2vDk0scfvxJjiZ4aBp7Q==] - Date: ['Thu, 13 Jul 2017 18:41:59 GMT'] - ETag: ['"0x8D4CA1ED8812EA0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:59 GMT'] + Content-MD5: [gtreIdyXUdFGNaRdroawgg==] + Date: ['Sat, 15 Jul 2017 00:31:15 GMT'] + ETag: ['"0x8D4CB18CE55F037"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:16 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3b611887-0001-00ab-0307-fc83c6000000] + x-ms-request-id: [96ea3ed9-0001-0090-2301-fdc198000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -36,9 +36,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f47ee928-67fa-11e7-9a36-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:41:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [e9a18134-68f4-11e7-9f8f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:15 GMT'] x-ms-range: [bytes=0-63] x-ms-version: ['2017-04-17'] method: GET @@ -46,28 +46,28 @@ interactions: response: body: string: !!binary | - YhdfJnEgWOajM9qlpF8isUTui/oKjUcO5I434MEMsJNM7IJ6/ZRPvGkfk1P4ovkQCA+Syh58Qxfm - T9GPpB8/4A== + XA2i3xDvWAfrLouCsxuOppGNfKEEmymlc3dxaukX1LUAXP+3NgmRwzh/yIHtd6q5LFA5qVAlE3iS + C4AcQlmJcA== headers: Accept-Ranges: [bytes] Content-Length: ['64'] Content-Range: [bytes 0-63/144] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:41:59 GMT'] - ETag: ['"0x8D4CA1ED8812EA0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:41:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:15 GMT'] + ETag: ['"0x8D4CB18CE55F037"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:16 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [1u2vDk0scfvxJjiZ4aBp7Q==] + x-ms-blob-content-md5: [gtreIdyXUdFGNaRdroawgg==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "BxZBKquNxol5dW6UuF2WzTPKRackqzHLElNhCQIVUpIEoRSXjwxXPA==", "Algorithm": + "fTp1u0Q6op4pEVJvMJlCNvabF1EfoHGS3yMLhTQ0TQZS8UpaZvEcdA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "1xedSMY2FdS6WY0VWqPw3Q==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [3b611899-0001-00ab-1207-fc83c6000000] + "AES_CBC_256"}, "ContentEncryptionIV": "aDjuuEgt03bTVjO5bZCVGQ==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [96ea3ee4-0001-0090-2a01-fdc198000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_get_blob_range_expanded_to_beginning_block_align.yaml b/tests/recordings/test_blob_encryption.test_get_blob_range_expanded_to_beginning_block_align.yaml index dc3041c2..c5060d1d 100644 --- a/tests/recordings/test_blob_encryption.test_get_blob_range_expanded_to_beginning_block_align.yaml +++ b/tests/recordings/test_blob_encryption.test_get_blob_range_expanded_to_beginning_block_align.yaml @@ -1,34 +1,34 @@ interactions: - request: body: !!binary | - vgIUOf0bUDkOL40Dy8mLSXlg+to1xIZnMaPUWN2hQocRhtd4iVSw3vse+PV4i/qg/iSEX5DKZ8hg - J1FpbeCWLVo65XZ8GVc73H/MQhi20Psbw5YMhcnBKx1/VMgM77otj0c2+f/Cjl4lbmtzAoHOaC8Y - Scf+3D8wwars34ohbIPobFPKN3qNsVaucW4KE74F + 0ngeQvTSDtDFPy1ykg869W22BHeH7gT1APCpdeEBajhZaBkp6hGu0ELrqPlEo6BFeml5mBCNqJtb + A7RUiJxlJXt00EpLE40fw4JgbN4NZRDLC6Rofnuk0tmnlQUmbaxWhHlCIbEv8vEZq/ZKUcC3uB0e + EdcSgYwWl8sK7M3c/EXfVzavgMJSk0jNsiQFox9q headers: Connection: [keep-alive] Content-Length: ['144'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f4ade554-67fa-11e7-be13-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:00 GMT'] + x-ms-client-request-id: [e9ed52ba-68f4-11e7-b117-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:16 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "T8lSlbH7ANJc9Kh3g8Aqb6Yc0OrGOu0S0QvB5k1/Nuk2YBtPiv+Rrw==", "Algorithm": + "Yvl21kEwZfUtQr2f3ucYvyh09uvfTic0xRSZxxVrIanYXCVwzVgPvA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "6dnUXNVZmKmZOC8OhUoNdw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "/HKRWbZh8eGmrNSMn6hEOw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer70d81e2e/encryption_block_blob70d81e2e response: body: {string: ''} headers: - Content-MD5: [PcI3JmQsOMo0xQfSRnl43Q==] - Date: ['Thu, 13 Jul 2017 18:42:00 GMT'] - ETag: ['"0x8D4CA1ED8C8CBD1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:00 GMT'] + Content-MD5: [dtIQRiBwyghCkfLBRYuM5A==] + Date: ['Sat, 15 Jul 2017 00:31:16 GMT'] + ETag: ['"0x8D4CB18CEB78335"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:17 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7effd655-0001-00d3-5507-fceb71000000] + x-ms-request-id: [522c5b3c-0001-00ec-1301-fd5cad000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -36,9 +36,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f4c65e86-67fa-11e7-b706-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ea020676-68f4-11e7-83dc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:16 GMT'] x-ms-range: [bytes=0-63] x-ms-version: ['2017-04-17'] method: GET @@ -46,28 +46,28 @@ interactions: response: body: string: !!binary | - vgIUOf0bUDkOL40Dy8mLSXlg+to1xIZnMaPUWN2hQocRhtd4iVSw3vse+PV4i/qg/iSEX5DKZ8hg - J1FpbeCWLQ== + 0ngeQvTSDtDFPy1ykg869W22BHeH7gT1APCpdeEBajhZaBkp6hGu0ELrqPlEo6BFeml5mBCNqJtb + A7RUiJxlJQ== headers: Accept-Ranges: [bytes] Content-Length: ['64'] Content-Range: [bytes 0-63/144] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:00 GMT'] - ETag: ['"0x8D4CA1ED8C8CBD1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:16 GMT'] + ETag: ['"0x8D4CB18CEB78335"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:17 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [PcI3JmQsOMo0xQfSRnl43Q==] + x-ms-blob-content-md5: [dtIQRiBwyghCkfLBRYuM5A==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "T8lSlbH7ANJc9Kh3g8Aqb6Yc0OrGOu0S0QvB5k1/Nuk2YBtPiv+Rrw==", "Algorithm": + "Yvl21kEwZfUtQr2f3ucYvyh09uvfTic0xRSZxxVrIanYXCVwzVgPvA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "6dnUXNVZmKmZOC8OhUoNdw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [7effd65f-0001-00d3-5c07-fceb71000000] + "AES_CBC_256"}, "ContentEncryptionIV": "/HKRWbZh8eGmrNSMn6hEOw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [522c5b48-0001-00ec-1c01-fd5cad000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_get_blob_range_expanded_to_beginning_iv.yaml b/tests/recordings/test_blob_encryption.test_get_blob_range_expanded_to_beginning_iv.yaml index 69745f00..4f3eb1fd 100644 --- a/tests/recordings/test_blob_encryption.test_get_blob_range_expanded_to_beginning_iv.yaml +++ b/tests/recordings/test_blob_encryption.test_get_blob_range_expanded_to_beginning_iv.yaml @@ -1,34 +1,34 @@ interactions: - request: body: !!binary | - bnweHZ+q/KajbyK448lWqsoVooj86GhtiZn20cD9xkSJ0qeTXalJ8YwiQ5yuYPaicir6AiSSmWsN - ks4xsliINVLuJQcf5SE342BcFA8Dz8BvBzKwMSLuwpdXtvjZRkrMgJvsAyZ/mVjs67LDOEoEwo8r - 4BqcmuOfBteXaZEKfe8bpjkX6dfvPfB9+ts2x+hg + 8pPMuTMK3qhmPAxGeI3x3zosDxxu5XSNaNJlkMwIIuuq4qDPJzzdZVO2rGg6izY9tDZ2f6l6FUmv + EjZdjedjoQ7nPYeDgSKqcxsLPYAKx7WxNpUemDn/6GbpgpoD/kti8YcRXEkqa/PdMDntRqRTfti6 + +xuRWdUA/0r0YdHhWmhsAQgH/u3Aj6WSdIdhxiNA headers: Connection: [keep-alive] Content-Length: ['144'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f4f50998-67fa-11e7-aed4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:00 GMT'] + x-ms-client-request-id: [eae21d74-68f4-11e7-b9f1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:18 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "6ZIXZwtUncUEdJnUYqy6GGe7FW1Y4oDPwuYUUFlHeUvN4Zh10J3xbA==", "Algorithm": + "9IszQ7I8fH9kXYFU0KKxstqiGKL5wL4iVwydJW0BR0IPQQxeSdCpOQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "yWUFO7gFrA164kqsO/XHzQ==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "IotlGzaulxCIf5Y4TULa8Q==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6ff01a98/encryption_block_blob6ff01a98 response: body: {string: ''} headers: - Content-MD5: [qBLpPaFV50isTk8SLgSucA==] - Date: ['Thu, 13 Jul 2017 18:42:00 GMT'] - ETag: ['"0x8D4CA1ED90B862D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:00 GMT'] + Content-MD5: [+7vKncdF8+H+EpeYMFnkng==] + Date: ['Sat, 15 Jul 2017 00:31:18 GMT'] + ETag: ['"0x8D4CB18CFAE1ED2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:19 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bdb23d82-0001-0131-4e07-fc4956000000] + x-ms-request-id: [e50a936f-0001-0045-0c01-fd8945000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -36,9 +36,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f508b7d8-67fa-11e7-95d3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [eaf88bae-68f4-11e7-865a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:18 GMT'] x-ms-range: [bytes=0-47] x-ms-version: ['2017-04-17'] method: GET @@ -46,27 +46,27 @@ interactions: response: body: string: !!binary | - bnweHZ+q/KajbyK448lWqsoVooj86GhtiZn20cD9xkSJ0qeTXalJ8YwiQ5yuYPai + 8pPMuTMK3qhmPAxGeI3x3zosDxxu5XSNaNJlkMwIIuuq4qDPJzzdZVO2rGg6izY9 headers: Accept-Ranges: [bytes] Content-Length: ['48'] Content-Range: [bytes 0-47/144] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:00 GMT'] - ETag: ['"0x8D4CA1ED90B862D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:19 GMT'] + ETag: ['"0x8D4CB18CFAE1ED2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:19 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [qBLpPaFV50isTk8SLgSucA==] + x-ms-blob-content-md5: [+7vKncdF8+H+EpeYMFnkng==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "6ZIXZwtUncUEdJnUYqy6GGe7FW1Y4oDPwuYUUFlHeUvN4Zh10J3xbA==", "Algorithm": + "9IszQ7I8fH9kXYFU0KKxstqiGKL5wL4iVwydJW0BR0IPQQxeSdCpOQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "yWUFO7gFrA164kqsO/XHzQ==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [bdb23d88-0001-0131-5107-fc4956000000] + "AES_CBC_256"}, "ContentEncryptionIV": "IotlGzaulxCIf5Y4TULa8Q==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [e50a9384-0001-0045-1e01-fd8945000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_get_blob_range_middle_to_end.yaml b/tests/recordings/test_blob_encryption.test_get_blob_range_middle_to_end.yaml index 1f511b6b..25bc3830 100644 --- a/tests/recordings/test_blob_encryption.test_get_blob_range_middle_to_end.yaml +++ b/tests/recordings/test_blob_encryption.test_get_blob_range_middle_to_end.yaml @@ -1,34 +1,34 @@ interactions: - request: body: !!binary | - UMbu7oLKPI3vqc8214IX/2U2679tnXeSCqNH519xNu8x0Gy7zSuHjPj1nYSXZf7fBcyBbMbI6XXR - FiofulWa4DKone+PlCenPznGLfVTY8yzLs4CaFfFeTykAoVCZghD4u/oVuAk7+0KO1Cqu9XHC+bs - /1/elmpLY8GJAnjcnpPmvi/rSMDXKPMkSod8looU + Cj4kXr/hAAuWgJ8xNaBAEP+cSTuqRCdHMtSKlG9iCwMB0WNVgeJ0ypAEyhLWb11WdjDsW8P0aGkT + z7cYGonD4/Del9wNUCWbArcSrAPE4C9ZWbDRV5SBoAjmcYqIeVOdbC/ysKl51VlWfK0JGiE33kUb + xjmhT+9FrABiU6cQzupWg3TwIzdUKYnAyK2LLUTF headers: Connection: [keep-alive] Content-Length: ['144'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f5397fcc-67fa-11e7-a321-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:01 GMT'] + x-ms-client-request-id: [eb2b8cf4-68f4-11e7-ab7e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:18 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "JUChdbZgumxuaXTkbFUEzb5/rFZM+2jkrSe/Vr/OQ/42cEKW9ORJUQ==", "Algorithm": + "BHjb25aMkJ/nMp+8BtYMps6uRvZQkS2wEC2uGBslEXmJncrgR1ZxGA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "dCNVBXZxbZwniiCbxDWdHw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "DeWEmuF/FvbKC4n24oke5g==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer61c31606/encryption_block_blob61c31606 response: body: {string: ''} headers: - Content-MD5: [SDegzkdp15kjQoP5d98V9A==] - Date: ['Thu, 13 Jul 2017 18:42:00 GMT'] - ETag: ['"0x8D4CA1ED951EAB2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:00 GMT'] + Content-MD5: [TTtMt0htR9xuTBPQlkLaXg==] + Date: ['Sat, 15 Jul 2017 00:31:18 GMT'] + ETag: ['"0x8D4CB18CFF60A90"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:19 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d579a739-0001-007d-5107-fcc81c000000] + x-ms-request-id: [bbadaea3-0001-011a-6001-fd3dee000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -36,9 +36,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f5502364-67fa-11e7-bbae-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [eb409ef8-68f4-11e7-9f93-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:18 GMT'] x-ms-range: [bytes=32-127] x-ms-version: ['2017-04-17'] method: GET @@ -46,28 +46,28 @@ interactions: response: body: string: !!binary | - MdBsu80rh4z49Z2El2X+3wXMgWzGyOl10RYqH7pVmuAyqJ3vj5Qnpz85xi31U2PMsy7OAmhXxXk8 - pAKFQmYIQ+Lv6FbgJO/tCjtQqrvVxwvm7P9f3pZqS2PBiQJ43J6T + AdFjVYHidMqQBMoS1m9dVnYw7FvD9GhpE8+3GBqJw+Pw3pfcDVAlmwK3EqwDxOAvWVmw0VeUgaAI + 5nGKiHlTnWwv8rCpedVZVnytCRohN95FG8Y5oU/vRawAYlOnEM7q headers: Accept-Ranges: [bytes] Content-Length: ['96'] Content-Range: [bytes 32-127/144] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:00 GMT'] - ETag: ['"0x8D4CA1ED951EAB2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:18 GMT'] + ETag: ['"0x8D4CB18CFF60A90"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:19 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [SDegzkdp15kjQoP5d98V9A==] + x-ms-blob-content-md5: [TTtMt0htR9xuTBPQlkLaXg==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "JUChdbZgumxuaXTkbFUEzb5/rFZM+2jkrSe/Vr/OQ/42cEKW9ORJUQ==", "Algorithm": + "BHjb25aMkJ/nMp+8BtYMps6uRvZQkS2wEC2uGBslEXmJncrgR1ZxGA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "dCNVBXZxbZwniiCbxDWdHw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [d579a74d-0001-007d-6007-fcc81c000000] + "AES_CBC_256"}, "ContentEncryptionIV": "DeWEmuF/FvbKC4n24oke5g==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [bbadaebd-0001-011a-7701-fd3dee000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -75,9 +75,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f5563bb4-67fa-11e7-b240-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [eb4762b0-68f4-11e7-8b00-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:18 GMT'] x-ms-range: [bytes=32-33554495] x-ms-version: ['2017-04-17'] method: GET @@ -85,28 +85,28 @@ interactions: response: body: string: !!binary | - MdBsu80rh4z49Z2El2X+3wXMgWzGyOl10RYqH7pVmuAyqJ3vj5Qnpz85xi31U2PMsy7OAmhXxXk8 - pAKFQmYIQ+Lv6FbgJO/tCjtQqrvVxwvm7P9f3pZqS2PBiQJ43J6T5r4v60jA1yjzJEqHfJaKFA== + AdFjVYHidMqQBMoS1m9dVnYw7FvD9GhpE8+3GBqJw+Pw3pfcDVAlmwK3EqwDxOAvWVmw0VeUgaAI + 5nGKiHlTnWwv8rCpedVZVnytCRohN95FG8Y5oU/vRawAYlOnEM7qVoN08CM3VCmJwMitiy1ExQ== headers: Accept-Ranges: [bytes] Content-Length: ['112'] Content-Range: [bytes 32-143/144] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:00 GMT'] - ETag: ['"0x8D4CA1ED951EAB2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:18 GMT'] + ETag: ['"0x8D4CB18CFF60A90"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:19 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [SDegzkdp15kjQoP5d98V9A==] + x-ms-blob-content-md5: [TTtMt0htR9xuTBPQlkLaXg==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "JUChdbZgumxuaXTkbFUEzb5/rFZM+2jkrSe/Vr/OQ/42cEKW9ORJUQ==", "Algorithm": + "BHjb25aMkJ/nMp+8BtYMps6uRvZQkS2wEC2uGBslEXmJncrgR1ZxGA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "dCNVBXZxbZwniiCbxDWdHw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [d579a757-0001-007d-6907-fcc81c000000] + "AES_CBC_256"}, "ContentEncryptionIV": "DeWEmuF/FvbKC4n24oke5g==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [bbadaed6-0001-011a-0b01-fd3dee000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_get_blob_range_middle_to_middle.yaml b/tests/recordings/test_blob_encryption.test_get_blob_range_middle_to_middle.yaml index 75b54b01..2a66c471 100644 --- a/tests/recordings/test_blob_encryption.test_get_blob_range_middle_to_middle.yaml +++ b/tests/recordings/test_blob_encryption.test_get_blob_range_middle_to_middle.yaml @@ -1,34 +1,34 @@ interactions: - request: body: !!binary | - JyezLU0i35DE2z7D4FA6a7yezrMKMiAsQT3swBxPrUYUlEWfo3qQ/egVwP/xOx5aZ0tXvw8Yktgs - N05G0486mLWGYVkS/2lGphqMBpTqxkLaeRLFpitAWLjRZYkIY5tG77joA0bbuIBY6DO5of4uiVKz - 6R0kTUdRSd/upQ8ygtUEn37F7GJJf8ZpW4eXiVXn + Alocko9YHnPLrT5a7kCWaeUj7oyUEtxzlAXwrD1LyIWqrcIc4XlNpLkdDfnqS7IbGCTucXMX91LU + YH9X7xjV83yxfhWayN29vhzSXKyB7oKySoPy8JupQOybJdEnpjz22abmyBIw4Lqjg8iC8Whl3goV + RlPTnaESYKFmchzC4oeGPCjwW51X/i3ur7Hu/O5V headers: Connection: [keep-alive] Content-Length: ['144'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f58a22a8-67fa-11e7-b67d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:01 GMT'] + x-ms-client-request-id: [ed4a935c-68f4-11e7-abd5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:22 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "cbe7ms+qkapGYpifgC3+VPRtjocgx/XyYBtjiNoMAHo/JFmQ2zQy8w==", "Algorithm": + "K7Jmz1CnjzG1TnoFcyCEK52YpcFWXLWlYj6si/3IfG01bweD9sPF7Q==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "E4IVXTW5yJV2GZvAaoHPWg==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "fpRwCce1k4G/XF4BQG/DHg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera655173e/encryption_block_bloba655173e response: body: {string: ''} headers: - Content-MD5: [2Bw39vqb4kRVWTNDYvAZWQ==] - Date: ['Thu, 13 Jul 2017 18:42:00 GMT'] - ETag: ['"0x8D4CA1ED9A48667"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:01 GMT'] + Content-MD5: [ILVSaff9XTnLfkNfKqQMpw==] + Date: ['Sat, 15 Jul 2017 00:31:22 GMT'] + ETag: ['"0x8D4CB18D214BB3D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c160eee1-0001-0005-7307-fca0ab000000] + x-ms-request-id: [987a2013-0001-0127-3101-fd88c8000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -36,9 +36,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f5a23212-67fa-11e7-8570-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ed5f0fa8-68f4-11e7-8fc5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:22 GMT'] x-ms-range: [bytes=32-95] x-ms-version: ['2017-04-17'] method: GET @@ -46,28 +46,28 @@ interactions: response: body: string: !!binary | - FJRFn6N6kP3oFcD/8TseWmdLV78PGJLYLDdORtOPOpi1hmFZEv9pRqYajAaU6sZC2nkSxaYrQFi4 - 0WWJCGObRg== + qq3CHOF5TaS5HQ356kuyGxgk7nFzF/dS1GB/V+8Y1fN8sX4Vmsjdvb4c0lysge6CskqD8vCbqUDs + myXRJ6Y89g== headers: Accept-Ranges: [bytes] Content-Length: ['64'] Content-Range: [bytes 32-95/144] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:00 GMT'] - ETag: ['"0x8D4CA1ED9A48667"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:22 GMT'] + ETag: ['"0x8D4CB18D214BB3D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [2Bw39vqb4kRVWTNDYvAZWQ==] + x-ms-blob-content-md5: [ILVSaff9XTnLfkNfKqQMpw==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "cbe7ms+qkapGYpifgC3+VPRtjocgx/XyYBtjiNoMAHo/JFmQ2zQy8w==", "Algorithm": + "K7Jmz1CnjzG1TnoFcyCEK52YpcFWXLWlYj6si/3IfG01bweD9sPF7Q==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "E4IVXTW5yJV2GZvAaoHPWg==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [c160eef1-0001-0005-0107-fca0ab000000] + "AES_CBC_256"}, "ContentEncryptionIV": "fpRwCce1k4G/XF4BQG/DHg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [987a2024-0001-0127-3f01-fd88c8000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_get_blob_resolver.yaml b/tests/recordings/test_blob_encryption.test_get_blob_resolver.yaml index f47b07df..2d91857b 100644 --- a/tests/recordings/test_blob_encryption.test_get_blob_resolver.yaml +++ b/tests/recordings/test_blob_encryption.test_get_blob_resolver.yaml @@ -1,32 +1,32 @@ interactions: - request: body: !!binary | - y0pOKRnytGSiBFT66YXsEw== + ZnC74SIFidbzJD41g35xQw== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f5d3e352-67fa-11e7-8102-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:02 GMT'] + x-ms-client-request-id: [ed90c8b8-68f4-11e7-99a4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:22 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "qQaxdBl3y4A4ou3S8d8AwAYVLDHO+CpcEoLhzlSkQwmDdSXnNB+ZtA==", "Algorithm": + "f3GxWFGCn7c1U00mOmSXt7RTehEnAp7ILka7+hT+eqTP5/5tP5uDng==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "FJQKGujr8YgeAXxlAZe41g==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "S57CHSuHFqpQuSIuUaVAyQ==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer867a11c5/encryption_block_blob867a11c5 response: body: {string: ''} headers: - Content-MD5: [i0beGyGB/DDzC6BbdvmPrA==] - Date: ['Thu, 13 Jul 2017 18:42:01 GMT'] - ETag: ['"0x8D4CA1ED9EA75A3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:01 GMT'] + Content-MD5: [YApLVnD5ZlVYmh3c8iB5Zg==] + Date: ['Sat, 15 Jul 2017 00:31:23 GMT'] + ETag: ['"0x8D4CB18D25AAACD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [447c3f66-0001-0069-1d07-fc0b78000000] + x-ms-request-id: [ab227a75-0001-010b-7701-fd0af5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -34,9 +34,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f5e7f78c-67fa-11e7-9f8b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [eda5a8be-68f4-11e7-b5d1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:22 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -44,27 +44,27 @@ interactions: response: body: string: !!binary | - y0pOKRnytGSiBFT66YXsEw== + ZnC74SIFidbzJD41g35xQw== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:01 GMT'] - ETag: ['"0x8D4CA1ED9EA75A3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:23 GMT'] + ETag: ['"0x8D4CB18D25AAACD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [i0beGyGB/DDzC6BbdvmPrA==] + x-ms-blob-content-md5: [YApLVnD5ZlVYmh3c8iB5Zg==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "qQaxdBl3y4A4ou3S8d8AwAYVLDHO+CpcEoLhzlSkQwmDdSXnNB+ZtA==", "Algorithm": + "f3GxWFGCn7c1U00mOmSXt7RTehEnAp7ILka7+hT+eqTP5/5tP5uDng==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "FJQKGujr8YgeAXxlAZe41g==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [447c3f6d-0001-0069-2207-fc0b78000000] + "AES_CBC_256"}, "ContentEncryptionIV": "S57CHSuHFqpQuSIuUaVAyQ==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [ab227a86-0001-010b-0601-fd0af5000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_get_blob_strict_mode_no_policy.yaml b/tests/recordings/test_blob_encryption.test_get_blob_strict_mode_no_policy.yaml index 45a58017..a7fb076a 100644 --- a/tests/recordings/test_blob_encryption.test_get_blob_strict_mode_no_policy.yaml +++ b/tests/recordings/test_blob_encryption.test_get_blob_strict_mode_no_policy.yaml @@ -1,32 +1,32 @@ interactions: - request: body: !!binary | - 0jeKg50SF8SC4SoGxSg2VA== + bPonW80m/Ll7GWHRWsTxGg== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f619eb5e-67fa-11e7-a9a5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:02 GMT'] + x-ms-client-request-id: [edd772f4-68f4-11e7-904c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:22 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "w+0Qn+YAzxjRTPbR8Nv7NkFrUL+5rhwGyjEktiWvDkV8qMglqkMOWA==", "Algorithm": + "osX2hCiGnGJO3sDF3N5fG2iBNy4Hj9uXu0znePs+if/Qx7JKwruQPQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "FA9IYz9nCqzIxFo889A+6w==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "5VGGI1efGEijwZ0orYaCpA==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer9237171b/encryption_block_blob9237171b response: body: {string: ''} headers: - Content-MD5: [nWgyo+G/QVkuw2s23hhMNQ==] - Date: ['Thu, 13 Jul 2017 18:42:02 GMT'] - ETag: ['"0x8D4CA1EDA30B30D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:02 GMT'] + Content-MD5: [2ZfgJ5UxqW7fx4mzfq5RCw==] + Date: ['Sat, 15 Jul 2017 00:31:23 GMT'] + ETag: ['"0x8D4CB18D2A1D31B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c45e83dd-0001-0055-1707-fcbfa3000000] + x-ms-request-id: [af051bef-0001-00dc-7701-fd0687000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_blob_encryption.test_get_blob_strict_mode_unencrypted_blob.yaml b/tests/recordings/test_blob_encryption.test_get_blob_strict_mode_unencrypted_blob.yaml index be0c7598..c195bb9f 100644 --- a/tests/recordings/test_blob_encryption.test_get_blob_strict_mode_unencrypted_blob.yaml +++ b/tests/recordings/test_blob_encryption.test_get_blob_strict_mode_unencrypted_blob.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f65bc2e2-67fa-11e7-940e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:03 GMT'] + x-ms-client-request-id: [ee14b682-68f4-11e7-958c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer403f19fe/encryption_block_blob403f19fe @@ -15,12 +15,12 @@ interactions: body: {string: ''} headers: Content-MD5: [E1bGfXrRY42Ba/uCLdLCXQ==] - Date: ['Thu, 13 Jul 2017 18:42:01 GMT'] - ETag: ['"0x8D4CA1EDA7FCBB0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:23 GMT'] + ETag: ['"0x8D4CB18D2F028C2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [64c2f0da-0001-0019-7707-fc78bc000000] + x-ms-request-id: [c237dbfc-0001-0049-2901-fd67b4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f67ff002-67fa-11e7-9f6f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ee3a8058-68f4-11e7-9ec3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:23 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -42,16 +42,16 @@ interactions: Content-Length: ['3'] Content-Range: [bytes 0-2/3] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:01 GMT'] - ETag: ['"0x8D4CA1EDA7FCBB0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:23 GMT'] + ETag: ['"0x8D4CB18D2F028C2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [E1bGfXrRY42Ba/uCLdLCXQ==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [64c2f0eb-0001-0019-0307-fc78bc000000] + x-ms-request-id: [c237dc10-0001-0049-3801-fd67b4000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_get_blob_to_star.yaml b/tests/recordings/test_blob_encryption.test_get_blob_to_star.yaml index d5fd8f5a..89dec3c2 100644 --- a/tests/recordings/test_blob_encryption.test_get_blob_to_star.yaml +++ b/tests/recordings/test_blob_encryption.test_get_blob_to_star.yaml @@ -1,32 +1,32 @@ interactions: - request: body: !!binary | - fGK5GUABsRmNOSK79q510w== + 3jHN7fpH/TRQEKql2jJbwQ== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f6b00562-67fa-11e7-969b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:03 GMT'] + x-ms-client-request-id: [ee6ce746-68f4-11e7-866f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:23 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "VY97Q3myiplw8+zcnLySPt+fSK329HOPk1axjG4nWqw+rJyZcWw9RQ==", "Algorithm": + "l7HbScE8o5RNxq68p6HyOUgeXmr+a6rxneBP/pndHmHC10F/hFyxWQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "Vp/+RwXZl+ZMZYALSzFV/Q==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "1R1moHLnhmyHTP+qJZN/Rg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer74a6114f/encryption_block_blob74a6114f response: body: {string: ''} headers: - Content-MD5: [0Vv2JDuvPT5OxOjoGnqeUg==] - Date: ['Thu, 13 Jul 2017 18:42:02 GMT'] - ETag: ['"0x8D4CA1EDAC5BAEC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:03 GMT'] + Content-MD5: [HUVzn1wIHzI4lZz0b9Ix8w==] + Date: ['Sat, 15 Jul 2017 00:31:24 GMT'] + ETag: ['"0x8D4CB18D3379F2E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [763c2c44-0001-00b9-4507-fcb7da000000] + x-ms-request-id: [7dabf91f-0001-011e-6e01-fdc86c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -34,9 +34,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f6c31706-67fa-11e7-b6c2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ee82363a-68f4-11e7-aa5c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:24 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -44,27 +44,27 @@ interactions: response: body: string: !!binary | - fGK5GUABsRmNOSK79q510w== + 3jHN7fpH/TRQEKql2jJbwQ== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:02 GMT'] - ETag: ['"0x8D4CA1EDAC5BAEC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:24 GMT'] + ETag: ['"0x8D4CB18D3379F2E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [0Vv2JDuvPT5OxOjoGnqeUg==] + x-ms-blob-content-md5: [HUVzn1wIHzI4lZz0b9Ix8w==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "VY97Q3myiplw8+zcnLySPt+fSK329HOPk1axjG4nWqw+rJyZcWw9RQ==", "Algorithm": + "l7HbScE8o5RNxq68p6HyOUgeXmr+a6rxneBP/pndHmHC10F/hFyxWQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "Vp/+RwXZl+ZMZYALSzFV/Q==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [763c2c55-0001-00b9-5307-fcb7da000000] + "AES_CBC_256"}, "ContentEncryptionIV": "1R1moHLnhmyHTP+qJZN/Rg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [7dabf92c-0001-011e-7801-fdc86c000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -72,9 +72,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f6c845dc-67fa-11e7-b6a2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ee8857e8-68f4-11e7-85e6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:24 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -82,27 +82,27 @@ interactions: response: body: string: !!binary | - fGK5GUABsRmNOSK79q510w== + 3jHN7fpH/TRQEKql2jJbwQ== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:02 GMT'] - ETag: ['"0x8D4CA1EDAC5BAEC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:24 GMT'] + ETag: ['"0x8D4CB18D3379F2E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [0Vv2JDuvPT5OxOjoGnqeUg==] + x-ms-blob-content-md5: [HUVzn1wIHzI4lZz0b9Ix8w==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "VY97Q3myiplw8+zcnLySPt+fSK329HOPk1axjG4nWqw+rJyZcWw9RQ==", "Algorithm": + "l7HbScE8o5RNxq68p6HyOUgeXmr+a6rxneBP/pndHmHC10F/hFyxWQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "Vp/+RwXZl+ZMZYALSzFV/Q==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [763c2c63-0001-00b9-5d07-fcb7da000000] + "AES_CBC_256"}, "ContentEncryptionIV": "1R1moHLnhmyHTP+qJZN/Rg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [7dabf93d-0001-011e-0501-fdc86c000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -110,9 +110,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f6cd3754-67fa-11e7-a15c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ee8d73d8-68f4-11e7-99b8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:24 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -120,27 +120,27 @@ interactions: response: body: string: !!binary | - fGK5GUABsRmNOSK79q510w== + 3jHN7fpH/TRQEKql2jJbwQ== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:02 GMT'] - ETag: ['"0x8D4CA1EDAC5BAEC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:24 GMT'] + ETag: ['"0x8D4CB18D3379F2E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [0Vv2JDuvPT5OxOjoGnqeUg==] + x-ms-blob-content-md5: [HUVzn1wIHzI4lZz0b9Ix8w==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "VY97Q3myiplw8+zcnLySPt+fSK329HOPk1axjG4nWqw+rJyZcWw9RQ==", "Algorithm": + "l7HbScE8o5RNxq68p6HyOUgeXmr+a6rxneBP/pndHmHC10F/hFyxWQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "Vp/+RwXZl+ZMZYALSzFV/Q==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [763c2c74-0001-00b9-6907-fcb7da000000] + "AES_CBC_256"}, "ContentEncryptionIV": "1R1moHLnhmyHTP+qJZN/Rg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [7dabf950-0001-011e-1701-fdc86c000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -148,9 +148,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f6d22d36-67fa-11e7-a9fc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ee932906-68f4-11e7-9227-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:24 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -158,27 +158,27 @@ interactions: response: body: string: !!binary | - fGK5GUABsRmNOSK79q510w== + 3jHN7fpH/TRQEKql2jJbwQ== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:02 GMT'] - ETag: ['"0x8D4CA1EDAC5BAEC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:24 GMT'] + ETag: ['"0x8D4CB18D3379F2E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [0Vv2JDuvPT5OxOjoGnqeUg==] + x-ms-blob-content-md5: [HUVzn1wIHzI4lZz0b9Ix8w==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "VY97Q3myiplw8+zcnLySPt+fSK329HOPk1axjG4nWqw+rJyZcWw9RQ==", "Algorithm": + "l7HbScE8o5RNxq68p6HyOUgeXmr+a6rxneBP/pndHmHC10F/hFyxWQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "Vp/+RwXZl+ZMZYALSzFV/Q==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [763c2c82-0001-00b9-7707-fcb7da000000] + "AES_CBC_256"}, "ContentEncryptionIV": "1R1moHLnhmyHTP+qJZN/Rg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [7dabf962-0001-011e-2401-fdc86c000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_invalid_value_kek_unwrap.yaml b/tests/recordings/test_blob_encryption.test_invalid_value_kek_unwrap.yaml index 877717b8..fb01311c 100644 --- a/tests/recordings/test_blob_encryption.test_invalid_value_kek_unwrap.yaml +++ b/tests/recordings/test_blob_encryption.test_invalid_value_kek_unwrap.yaml @@ -1,32 +1,32 @@ interactions: - request: body: !!binary | - j2UtTKjpcjovd4DWI9jSYg== + MhJ2OzD1x36leEbcmv8tEw== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f751fbe2-67fa-11e7-bd95-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:04 GMT'] + x-ms-client-request-id: [ef13e0e4-68f4-11e7-b0da-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:25 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "ZKtmjxbDu7xNU4RF2FbRmxVPLSfJX4+DCTY46A0y5BaU6lsp7QFojg==", "Algorithm": + "53CstONDqn7D3gNaK+tC+Ia1b31+W6PBKP2Lv+K95puLMLJOJDCxEQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "wkCSSZHaDt6CoV+sVAwqGQ==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "/9jozMfmI9nrf7lbsuPnxw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontaineref814af/encryption_block_blobef814af response: body: {string: ''} headers: - Content-MD5: [QG9agqMinji8DNwAMjqqjA==] - Date: ['Thu, 13 Jul 2017 18:42:04 GMT'] - ETag: ['"0x8D4CA1EDB680BA4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:04 GMT'] + Content-MD5: [wJRVxgpv9QdT/4yVRKmoMw==] + Date: ['Sat, 15 Jul 2017 00:31:26 GMT'] + ETag: ['"0x8D4CB18D3DE101D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8e36fefa-0001-00cd-5a07-fc319c000000] + x-ms-request-id: [99647e3b-0001-00d3-0601-fdeb71000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -34,9 +34,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f7685ab8-67fa-11e7-8feb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ef2865f0-68f4-11e7-b1dd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:25 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -44,27 +44,27 @@ interactions: response: body: string: !!binary | - j2UtTKjpcjovd4DWI9jSYg== + MhJ2OzD1x36leEbcmv8tEw== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:04 GMT'] - ETag: ['"0x8D4CA1EDB680BA4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:26 GMT'] + ETag: ['"0x8D4CB18D3DE101D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [QG9agqMinji8DNwAMjqqjA==] + x-ms-blob-content-md5: [wJRVxgpv9QdT/4yVRKmoMw==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "ZKtmjxbDu7xNU4RF2FbRmxVPLSfJX4+DCTY46A0y5BaU6lsp7QFojg==", "Algorithm": + "53CstONDqn7D3gNaK+tC+Ia1b31+W6PBKP2Lv+K95puLMLJOJDCxEQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "wkCSSZHaDt6CoV+sVAwqGQ==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [8e36ff26-0001-00cd-7f07-fc319c000000] + "AES_CBC_256"}, "ContentEncryptionIV": "/9jozMfmI9nrf7lbsuPnxw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [99647e5c-0001-00d3-2201-fdeb71000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_missing_attribute_kek_unwrap.yaml b/tests/recordings/test_blob_encryption.test_missing_attribute_kek_unwrap.yaml index d47288ea..5fac7133 100644 --- a/tests/recordings/test_blob_encryption.test_missing_attribute_kek_unwrap.yaml +++ b/tests/recordings/test_blob_encryption.test_missing_attribute_kek_unwrap.yaml @@ -1,32 +1,32 @@ interactions: - request: body: !!binary | - HVDu5cu+NPBwPzC/dBYHiA== + 3SiXmDO7BU9c3vGsVEGRvA== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f7ba870c-67fa-11e7-8e5e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:05 GMT'] + x-ms-client-request-id: [ef74230a-68f4-11e7-9729-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:25 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "VDhhg1GsMFpsbJBrMvXUHVU9rf40LZnJP6UbQuKCcfnjFosmOPPz/Q==", "Algorithm": + "cZpageR+3FfI2NwET7vzfmMnALKRAELCxQwvcto/ZmxDbMrc50KI4g==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "8uOy9AFRfZjcpp03QQ/p4Q==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "1j9ABMkfMoBlx3VAFSTVlA==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer684c1679/encryption_block_blob684c1679 response: body: {string: ''} headers: - Content-MD5: [0HZYKIxXdylSp3DE4ZfdgQ==] - Date: ['Thu, 13 Jul 2017 18:42:04 GMT'] - ETag: ['"0x8D4CA1EDBD22B2D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:05 GMT'] + Content-MD5: [BnXpEgfH0UaJtY5OrNpuEA==] + Date: ['Sat, 15 Jul 2017 00:31:26 GMT'] + ETag: ['"0x8D4CB18D43DF520"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0bf551c1-0001-0072-0607-fc25ea000000] + x-ms-request-id: [63791dce-0001-00bd-4601-fd4258000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -34,9 +34,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f7cf5fba-67fa-11e7-bfd9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ef883dae-68f4-11e7-8128-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:25 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -44,27 +44,27 @@ interactions: response: body: string: !!binary | - HVDu5cu+NPBwPzC/dBYHiA== + 3SiXmDO7BU9c3vGsVEGRvA== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:04 GMT'] - ETag: ['"0x8D4CA1EDBD22B2D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:26 GMT'] + ETag: ['"0x8D4CB18D43DF520"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [0HZYKIxXdylSp3DE4ZfdgQ==] + x-ms-blob-content-md5: [BnXpEgfH0UaJtY5OrNpuEA==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "VDhhg1GsMFpsbJBrMvXUHVU9rf40LZnJP6UbQuKCcfnjFosmOPPz/Q==", "Algorithm": + "cZpageR+3FfI2NwET7vzfmMnALKRAELCxQwvcto/ZmxDbMrc50KI4g==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "8uOy9AFRfZjcpp03QQ/p4Q==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [0bf551d2-0001-0072-1507-fc25ea000000] + "AES_CBC_256"}, "ContentEncryptionIV": "1j9ABMkfMoBlx3VAFSTVlA==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [63791ddd-0001-00bd-5301-fd4258000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -72,9 +72,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f7d7a42c-67fa-11e7-abf9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ef8dbf90-68f4-11e7-8b89-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:25 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -82,27 +82,27 @@ interactions: response: body: string: !!binary | - HVDu5cu+NPBwPzC/dBYHiA== + 3SiXmDO7BU9c3vGsVEGRvA== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:04 GMT'] - ETag: ['"0x8D4CA1EDBD22B2D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:26 GMT'] + ETag: ['"0x8D4CB18D43DF520"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [0HZYKIxXdylSp3DE4ZfdgQ==] + x-ms-blob-content-md5: [BnXpEgfH0UaJtY5OrNpuEA==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "VDhhg1GsMFpsbJBrMvXUHVU9rf40LZnJP6UbQuKCcfnjFosmOPPz/Q==", "Algorithm": + "cZpageR+3FfI2NwET7vzfmMnALKRAELCxQwvcto/ZmxDbMrc50KI4g==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "8uOy9AFRfZjcpp03QQ/p4Q==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [0bf551fe-0001-0072-3c07-fc25ea000000] + "AES_CBC_256"}, "ContentEncryptionIV": "1j9ABMkfMoBlx3VAFSTVlA==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [63791de7-0001-00bd-5c01-fd4258000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_put_blob_empty.yaml b/tests/recordings/test_blob_encryption.test_put_blob_empty.yaml index 243eba05..ebbdb7ec 100644 --- a/tests/recordings/test_blob_encryption.test_put_blob_empty.yaml +++ b/tests/recordings/test_blob_encryption.test_put_blob_empty.yaml @@ -1,32 +1,32 @@ interactions: - request: body: !!binary | - TTl09bBdU+3ozZfrTRbW7Q== + otxjwrI3BE52PQvnwI8OWQ== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [f878294c-67fa-11e7-943f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:06 GMT'] + x-ms-client-request-id: [f02e5054-68f4-11e7-ad6f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:26 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "aLrn6UqIhU0iYBJejZMOXRDM2Dczc3RULImqd0DqW480IyutjhS3Xg==", "Algorithm": + "tpicRTgQ+NZMtRF1i4pXyKE0CFk2+ey9jxo9oazslU5pzl7zMunyAw==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "41ZWfoFqd5YZY69WwQYQhA==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "egtSj80OogtS/eJnbF9Ylw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer53af109b/encryption_block_blob53af109b response: body: {string: ''} headers: - Content-MD5: [z7hkkc7vOvnVQRr1Ex78wA==] - Date: ['Thu, 13 Jul 2017 18:42:05 GMT'] - ETag: ['"0x8D4CA1EDC8F0D8B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:06 GMT'] + Content-MD5: [0bU6L5VCcGE73t3QSSiv9Q==] + Date: ['Sat, 15 Jul 2017 00:31:27 GMT'] + ETag: ['"0x8D4CB18D4F8B52F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d9d3a34c-0001-00bc-7507-fc43a5000000] + x-ms-request-id: [b1afd887-0001-00b8-0801-fdb627000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -34,9 +34,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f88c8286-67fa-11e7-b717-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f043c0ba-68f4-11e7-94fc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:27 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -44,27 +44,27 @@ interactions: response: body: string: !!binary | - TTl09bBdU+3ozZfrTRbW7Q== + otxjwrI3BE52PQvnwI8OWQ== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:06 GMT'] - ETag: ['"0x8D4CA1EDC8F0D8B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:27 GMT'] + ETag: ['"0x8D4CB18D4F8B52F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [z7hkkc7vOvnVQRr1Ex78wA==] + x-ms-blob-content-md5: [0bU6L5VCcGE73t3QSSiv9Q==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "aLrn6UqIhU0iYBJejZMOXRDM2Dczc3RULImqd0DqW480IyutjhS3Xg==", "Algorithm": + "tpicRTgQ+NZMtRF1i4pXyKE0CFk2+ey9jxo9oazslU5pzl7zMunyAw==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "41ZWfoFqd5YZY69WwQYQhA==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [d9d3a357-0001-00bc-7e07-fc43a5000000] + "AES_CBC_256"}, "ContentEncryptionIV": "egtSj80OogtS/eJnbF9Ylw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [b1afd89f-0001-00b8-1c01-fdb627000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_put_blob_range.yaml b/tests/recordings/test_blob_encryption.test_put_blob_range.yaml index dfe0b8f9..8e2342e0 100644 --- a/tests/recordings/test_blob_encryption.test_put_blob_range.yaml +++ b/tests/recordings/test_blob_encryption.test_put_blob_range.yaml @@ -1,776 +1,776 @@ interactions: - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f8d6847e-67fa-11e7-8243-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f097917a-68f4-11e7-b3b3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer538c1079/encryption_block_blob538c1079?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [Ie2rYJinRRUVQmE6gC9YIg==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Content-MD5: [KV9yVDvLtL84qEa+3EnT3w==] + Date: ['Sat, 15 Jul 2017 00:31:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f47eb55-0001-00c9-1207-fcc41e000000] + x-ms-request-id: [185166fa-0001-00b5-5301-fd592b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f8ec62a8-67fa-11e7-8ccc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f0ad0b88-68f4-11e7-8973-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer538c1079/encryption_block_blob538c1079?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURRd09UWSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [bBjeUqeGI5ssMXIaUeracA==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Content-MD5: [/3uqF1QtfAEJ5hlMrFj7eg==] + Date: ['Sat, 15 Jul 2017 00:31:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f47eb6b-0001-00c9-2407-fcc41e000000] + x-ms-request-id: [1851671c-0001-00b5-7201-fd592b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f8f31ec2-67fa-11e7-a320-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f0b35a62-68f4-11e7-b19f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer538c1079/encryption_block_blob538c1079?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURneE9USSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [Lfo79nIhBegIb5YRTDhc4w==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Content-MD5: [Zx3TPJ8IIp4G+mPaE4I1sw==] + Date: ['Sat, 15 Jul 2017 00:31:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f47eb78-0001-00c9-3007-fcc41e000000] + x-ms-request-id: [1851673a-0001-00b5-1001-fd592b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - +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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f8fb1fe6-67fa-11e7-88f7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f0b8f418-68f4-11e7-8ac6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer538c1079/encryption_block_blob538c1079?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TVRJeU9EZyUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [XpMP9E/93191sZxSKpohLA==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Content-MD5: [TO2hFTV8w1f4cLB2+JU3+Q==] + Date: ['Sat, 15 Jul 2017 00:31:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f47eb82-0001-00c9-3a07-fcc41e000000] + x-ms-request-id: [1851674c-0001-00b5-2201-fd592b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f903cc7a-67fa-11e7-83ef-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f0be4fd8-68f4-11e7-96bf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer538c1079/encryption_block_blob538c1079?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TVRZek9EUSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [uQLOgi157ztHWKBqWobfAA==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Content-MD5: [hXIMXyAip0mBxs5ZNtdBVA==] + Date: ['Sat, 15 Jul 2017 00:31:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f47eb93-0001-00c9-4907-fcc41e000000] + x-ms-request-id: [18516763-0001-00b5-3801-fd592b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f909889c-67fa-11e7-9b0f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f0c3a3b6-68f4-11e7-b5fa-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer538c1079/encryption_block_blob538c1079?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TWpBME9EQSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [YlrD7ejv2mWkd9ZY3/gQvA==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Content-MD5: [lgom7PtOZvilqckICYsR0Q==] + Date: ['Sat, 15 Jul 2017 00:31:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f47eba0-0001-00c9-5407-fcc41e000000] + x-ms-request-id: [1851677d-0001-00b5-5201-fd592b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f90ec386-67fa-11e7-ac0d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f0ca878a-68f4-11e7-9ddc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer538c1079/encryption_block_blob538c1079?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TWpRMU56WSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [Rymk9ZPRZvQVK5laNCauNw==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Content-MD5: [IZJmZa/XMxhPJMlH6n26xg==] + Date: ['Sat, 15 Jul 2017 00:31:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f47ebaf-0001-00c9-5f07-fcc41e000000] + x-ms-request-id: [18516794-0001-00b5-6901-fd592b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f9148d50-67fa-11e7-8355-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f0d112f8-68f4-11e7-ae46-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer538c1079/encryption_block_blob538c1079?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TWpnMk56SSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [R9S/zKgA3UoUidDy+DFl+g==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Content-MD5: [iXaUwTcQVRUYEKRd6tp/vw==] + Date: ['Sat, 15 Jul 2017 00:31:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f47ebba-0001-00c9-6a07-fcc41e000000] + x-ms-request-id: [185167ad-0001-00b5-0201-fd592b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - li7sLKWmxpYQRoyujvaGqw== + 3BzoCZpyNU/KJg+KsgUtkQ== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f919ce28-67fa-11e7-9583-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f0d62b3a-68f4-11e7-9c64-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer538c1079/encryption_block_blob538c1079?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TXpJM05qZyUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [khu5JhFuuXn2snja8Kpsrw==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Content-MD5: [yMfkCPAsh+Yk8WcmrrZE6w==] + Date: ['Sat, 15 Jul 2017 00:31:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f47ebc7-0001-00c9-7707-fcc41e000000] + x-ms-request-id: [185167c7-0001-00b5-1a01-fd592b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -781,14 +781,14 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['791'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f91fcdd2-67fa-11e7-b0f8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f0dc6a06-68f4-11e7-900d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:28 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "5jzfCeOoj9uZLveR1+7wKsYEhhdoILtL/F8G+EzRCHj9vn3SmFd01Q==", "Algorithm": + "hnPvvhuw/S3rDkNxiIyol9NrDrcNQQ7/k1z1jIaalGgHIiObzB0MBQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "jhcPOKSG1TnIThnIQzrnRw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "F2CHaeYEAM++1pQG1gKxXw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer538c1079/encryption_block_blob538c1079?comp=blocklist @@ -796,12 +796,12 @@ interactions: body: {string: ''} headers: Content-MD5: [3Gaax2PYUFJKcX0bI6QcpA==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] - ETag: ['"0x8D4CA1EDD285BEF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:28 GMT'] + ETag: ['"0x8D4CB18D597AAA8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f47ebd3-0001-00c9-0307-fcc41e000000] + x-ms-request-id: [185167e1-0001-00b5-3301-fd592b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -809,9 +809,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f926fc88-67fa-11e7-8df6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f0e212e2-68f4-11e7-b6bf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:28 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -819,601 +819,601 @@ interactions: response: body: string: !!binary | - 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 - lhBGjK6O9oar + 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 + T8omD4qyBS2R headers: Accept-Ranges: [bytes] Content-Length: ['32784'] Content-Range: [bytes 0-32783/32784] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] - ETag: ['"0x8D4CA1EDD285BEF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:28 GMT'] + ETag: ['"0x8D4CB18D597AAA8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "5jzfCeOoj9uZLveR1+7wKsYEhhdoILtL/F8G+EzRCHj9vn3SmFd01Q==", "Algorithm": + "hnPvvhuw/S3rDkNxiIyol9NrDrcNQQ7/k1z1jIaalGgHIiObzB0MBQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "jhcPOKSG1TnIThnIQzrnRw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [4f47ebea-0001-00c9-1807-fcc41e000000] + "AES_CBC_256"}, "ContentEncryptionIV": "F2CHaeYEAM++1pQG1gKxXw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [185167f6-0001-00b5-4801-fd592b000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_put_blob_serial_upload_chunking.yaml b/tests/recordings/test_blob_encryption.test_put_blob_serial_upload_chunking.yaml index 89021b87..9dbc1770 100644 --- a/tests/recordings/test_blob_encryption.test_put_blob_serial_upload_chunking.yaml +++ b/tests/recordings/test_blob_encryption.test_put_blob_serial_upload_chunking.yaml @@ -1,776 +1,776 @@ interactions: - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f991c31a-67fa-11e7-ba4c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f154739e-68f4-11e7-81cb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerab6b1786/encryption_block_blobab6b1786?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [MuIFuQgI8jYUW7RXLCmceA==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Content-MD5: [eiTC6GYTicCvO1UEYmhtig==] + Date: ['Sat, 15 Jul 2017 00:31:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7c2b3e00-0001-003d-5107-fce1f2000000] + x-ms-request-id: [c37a2c92-0001-012a-7d01-fd67c4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f9a6f71c-67fa-11e7-a659-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f16d83ae-68f4-11e7-ad51-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerab6b1786/encryption_block_blobab6b1786?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURRd09UWSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [BmfgWKCle6Q3vkfT3mSqsA==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Content-MD5: [cEmVaAglPni4RnfHhGzTSQ==] + Date: ['Sat, 15 Jul 2017 00:31:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7c2b3e1b-0001-003d-6807-fce1f2000000] + x-ms-request-id: [c37a2cb7-0001-012a-1a01-fd67c4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f9ac56c6-67fa-11e7-8d17-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f1745e90-68f4-11e7-99d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerab6b1786/encryption_block_blobab6b1786?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURneE9USSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [vl9CgMsOZ3GOOjAtfXyhUw==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Content-MD5: [GK/609BIAzSxA1uqNOZy0g==] + Date: ['Sat, 15 Jul 2017 00:31:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7c2b3e29-0001-003d-7507-fce1f2000000] + x-ms-request-id: [c37a2cc7-0001-012a-2901-fd67c4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f9b1bf76-67fa-11e7-9028-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f17c166c-68f4-11e7-9b05-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerab6b1786/encryption_block_blobab6b1786?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TVRJeU9EZyUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [61YjK4oWanpgLr2GrI++wg==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Content-MD5: [1OHc4u7PYlOG3QXfYuwTWA==] + Date: ['Sat, 15 Jul 2017 00:31:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7c2b3e3e-0001-003d-0a07-fce1f2000000] + x-ms-request-id: [c37a2ceb-0001-012a-4801-fd67c4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f9b8d04a-67fa-11e7-871f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f181e966-68f4-11e7-a533-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerab6b1786/encryption_block_blobab6b1786?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TVRZek9EUSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [GwB9U/2E89lTP/gbuZYMJQ==] - Date: ['Thu, 13 Jul 2017 18:42:07 GMT'] + Content-MD5: [wyD9X3yxLiD5ZYbyLwvrEg==] + Date: ['Sat, 15 Jul 2017 00:31:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7c2b3e59-0001-003d-2107-fce1f2000000] + x-ms-request-id: [c37a2cfa-0001-012a-5301-fd67c4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f9bfa62c-67fa-11e7-8d78-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f188860c-68f4-11e7-bbdd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerab6b1786/encryption_block_blobab6b1786?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TWpBME9EQSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [xXHyrOr83MhvVR5mKjRUsQ==] - Date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + Content-MD5: [aS71Ld1hl8k+3mQXzBBmig==] + Date: ['Sat, 15 Jul 2017 00:31:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7c2b3e6e-0001-003d-3307-fce1f2000000] + x-ms-request-id: [c37a2d08-0001-012a-6001-fd67c4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f9c5ba26-67fa-11e7-aad9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f18eb664-68f4-11e7-a71e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerab6b1786/encryption_block_blobab6b1786?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TWpRMU56WSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [BQzy2bpzrPKeWlVap3IPog==] - Date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + Content-MD5: [wPPWYcXl4cj1ZRcPyR5YHg==] + Date: ['Sat, 15 Jul 2017 00:31:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7c2b3e81-0001-003d-4307-fce1f2000000] + x-ms-request-id: [c37a2d21-0001-012a-7701-fd67c4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - 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 headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f9cb4fe8-67fa-11e7-859b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f1941262-68f4-11e7-9673-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerab6b1786/encryption_block_blobab6b1786?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TWpnMk56SSUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [M4ApncK3HYnzr820WUoyMQ==] - Date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + Content-MD5: [WsuF078fKlc4ya6qdoN/fw==] + Date: ['Sat, 15 Jul 2017 00:31:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7c2b3e92-0001-003d-5307-fce1f2000000] + x-ms-request-id: [c37a2d44-0001-012a-1501-fd67c4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: !!binary | - IKlSOlx1l9ZUC7bUJtd9GQ== + dOX8y4QZmCp8NDEzT6/9uQ== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f9d27324-67fa-11e7-a22a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f19a5b40-68f4-11e7-a253-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerab6b1786/encryption_block_blobab6b1786?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TXpJM05qZyUzRA%3D%3D response: body: {string: ''} headers: - Content-MD5: [/wmhvDyrlfnsNb5ySbE1Lg==] - Date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + Content-MD5: [bcYkvEhaWKpgGy+Z2S6X6w==] + Date: ['Sat, 15 Jul 2017 00:31:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7c2b3ea4-0001-003d-6307-fce1f2000000] + x-ms-request-id: [c37a2d69-0001-012a-3601-fd67c4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -781,14 +781,14 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['791'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f9d7d262-67fa-11e7-8b98-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f19fda1e-68f4-11e7-821f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:29 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "szTLkhIGvrVRTN/jSH3envRLAaOlaiJG2m72vXa9LGGu1lVneqPwSg==", "Algorithm": + "mZxCvryRNPQubpL6+tUbPZh5oHTo3MZ0TpbOgJ0XwefoLO1RjBHwTA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "AYZEFPakRVNfc0uKTibnXw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "nWDaS1aIdpOHTvucY8xu6w==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerab6b1786/encryption_block_blobab6b1786?comp=blocklist @@ -796,12 +796,12 @@ interactions: body: {string: ''} headers: Content-MD5: [3Gaax2PYUFJKcX0bI6QcpA==] - Date: ['Thu, 13 Jul 2017 18:42:08 GMT'] - ETag: ['"0x8D4CA1EDDE0A99A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:29 GMT'] + ETag: ['"0x8D4CB18D65BBB3D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7c2b3eb3-0001-003d-7207-fce1f2000000] + x-ms-request-id: [c37a2d77-0001-012a-4301-fd67c4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -809,609 +809,609 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f9dfda98-67fa-11e7-9b1e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f1a6ff26-68f4-11e7-bf18-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:29 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerab6b1786/encryption_block_blobab6b1786 response: body: string: !!binary | - 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 - 1lQLttQm130Z + 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 + Knw0MTNPr/25 headers: Accept-Ranges: [bytes] Content-Length: ['32784'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:08 GMT'] - ETag: ['"0x8D4CA1EDDE0A99A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:29 GMT'] + ETag: ['"0x8D4CB18D65BBB3D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "szTLkhIGvrVRTN/jSH3envRLAaOlaiJG2m72vXa9LGGu1lVneqPwSg==", "Algorithm": + "mZxCvryRNPQubpL6+tUbPZh5oHTo3MZ0TpbOgJ0XwefoLO1RjBHwTA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "AYZEFPakRVNfc0uKTibnXw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [7c2b3ecf-0001-003d-0a07-fce1f2000000] + "AES_CBC_256"}, "ContentEncryptionIV": "nWDaS1aIdpOHTvucY8xu6w==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [c37a2d8c-0001-012a-5701-fd67c4000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_blob_encryption.test_put_block_blob_single_shot.yaml b/tests/recordings/test_blob_encryption.test_put_block_blob_single_shot.yaml index a35f7657..e50a2b0b 100644 --- a/tests/recordings/test_blob_encryption.test_put_block_blob_single_shot.yaml +++ b/tests/recordings/test_blob_encryption.test_put_block_blob_single_shot.yaml @@ -1,32 +1,32 @@ interactions: - request: body: !!binary | - R6CN8L5hgG4HnOK0jX2LNg== + myFzWKAT4ZgMSIPffpOOeQ== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [fa57e8a6-67fa-11e7-899c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:09 GMT'] + x-ms-client-request-id: [f2198bcc-68f4-11e7-8703-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:30 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "EyxZz8OdRhd17twga8kvNu+sHY4Jnkk+fbXpfkEJ4xj3uwrxpSZCDg==", "Algorithm": + "/uddasaosl6+NgTetDydxG0pcBXLUjzxfGoXXwOKY1ReZBBZ2FitQg==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "XyHCDN3fuwh0f56N/akrvA==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "+0dN9YvR66xRI0A3+K0/kg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer39421575/encryption_block_blob39421575 response: body: {string: ''} headers: - Content-MD5: [4Yaofc17BFwFnVwafgmTng==] - Date: ['Thu, 13 Jul 2017 18:42:09 GMT'] - ETag: ['"0x8D4CA1EDE6ED267"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:09 GMT'] + Content-MD5: [1fImGkdsJKjRLedyrFfBIg==] + Date: ['Sat, 15 Jul 2017 00:31:30 GMT'] + ETag: ['"0x8D4CB18D6E7251B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c37f5691-0001-0112-5f07-fc269d000000] + x-ms-request-id: [9e6f56a6-0001-00ff-5b01-fd694c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -34,9 +34,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fa6c2a0a-67fa-11e7-9c71-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f231a112-68f4-11e7-a8d7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:30 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -44,27 +44,27 @@ interactions: response: body: string: !!binary | - R6CN8L5hgG4HnOK0jX2LNg== + myFzWKAT4ZgMSIPffpOOeQ== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:09 GMT'] - ETag: ['"0x8D4CA1EDE6ED267"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:30 GMT'] + ETag: ['"0x8D4CB18D6E7251B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [4Yaofc17BFwFnVwafgmTng==] + x-ms-blob-content-md5: [1fImGkdsJKjRLedyrFfBIg==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "EyxZz8OdRhd17twga8kvNu+sHY4Jnkk+fbXpfkEJ4xj3uwrxpSZCDg==", "Algorithm": + "/uddasaosl6+NgTetDydxG0pcBXLUjzxfGoXXwOKY1ReZBBZ2FitQg==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "XyHCDN3fuwh0f56N/akrvA==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [c37f56a4-0001-0112-7107-fc269d000000] + "AES_CBC_256"}, "ContentEncryptionIV": "+0dN9YvR66xRI0A3+K0/kg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [9e6f56c5-0001-00ff-7301-fd694c000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_blob_encryption.test_validate_encryption.yaml b/tests/recordings/test_blob_encryption.test_validate_encryption.yaml index 868a7d56..201d272f 100644 --- a/tests/recordings/test_blob_encryption.test_validate_encryption.yaml +++ b/tests/recordings/test_blob_encryption.test_validate_encryption.yaml @@ -1,32 +1,32 @@ interactions: - request: body: !!binary | - KtlB0CgCyszPNlpO2tN4IQ== + AmY9BihGEUzRnrdlDIUOZQ== headers: Connection: [keep-alive] Content-Length: ['16'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [fa9ea3fe-67fa-11e7-a910-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + x-ms-client-request-id: [f262fa82-68f4-11e7-9c8c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:30 GMT'] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "AfHh0brLo+Y/E+WIzAI59NWWhuyluhsz+v3S8zIqyRmCGwoEuPGLBA==", "Algorithm": + "uBEeELOapsgmJvQBVB5hq4qNqCxscKdkYctbXG6Y34SD2BAfVVRTiA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "dmOgwj6WTlJ/LOhbkW1Z1A==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] + "AES_CBC_256"}, "ContentEncryptionIV": "hCC1tidCXQPusXo4NmEFHA==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerabdb12aa/encryption_block_blobabdb12aa response: body: {string: ''} headers: - Content-MD5: [OMKXTpYHIJYtSUr+R1MsHw==] - Date: ['Thu, 13 Jul 2017 18:42:09 GMT'] - ETag: ['"0x8D4CA1EDEB64892"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Content-MD5: [MIxdXMxzisjCwuSK+NEdrA==] + Date: ['Sat, 15 Jul 2017 00:31:31 GMT'] + ETag: ['"0x8D4CB18D72DB108"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b2577aea-0001-005f-6407-fca62a000000] + x-ms-request-id: [58cc0c61-0001-00a8-1f01-fd80c1000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -34,9 +34,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fab3ac9a-67fa-11e7-ae46-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f27804a4-68f4-11e7-af49-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:30 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -44,27 +44,27 @@ interactions: response: body: string: !!binary | - KtlB0CgCyszPNlpO2tN4IQ== + AmY9BihGEUzRnrdlDIUOZQ== headers: Accept-Ranges: [bytes] Content-Length: ['16'] Content-Range: [bytes 0-15/16] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:09 GMT'] - ETag: ['"0x8D4CA1EDEB64892"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:31 GMT'] + ETag: ['"0x8D4CB18D72DB108"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-blob-content-md5: [OMKXTpYHIJYtSUr+R1MsHw==] + x-ms-blob-content-md5: [MIxdXMxzisjCwuSK+NEdrA==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-meta-encryptiondata: ['{"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": - "AfHh0brLo+Y/E+WIzAI59NWWhuyluhsz+v3S8zIqyRmCGwoEuPGLBA==", "Algorithm": + "uBEeELOapsgmJvQBVB5hq4qNqCxscKdkYctbXG6Y34SD2BAfVVRTiA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "dmOgwj6WTlJ/LOhbkW1Z1A==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}, "EncryptionMode": "FullBlob"}'] - x-ms-request-id: [b2577b02-0001-005f-7907-fca62a000000] + "AES_CBC_256"}, "ContentEncryptionIV": "hCC1tidCXQPusXo4NmEFHA==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}, "EncryptionMode": "FullBlob"}'] + x-ms-request-id: [58cc0c73-0001-00a8-3001-fd80c1000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_block_blob.test_create_blob_from_0_bytes.yaml b/tests/recordings/test_block_blob.test_create_blob_from_0_bytes.yaml new file mode 100644 index 00000000..deb29507 --- /dev/null +++ b/tests/recordings/test_block_blob.test_create_blob_from_0_bytes.yaml @@ -0,0 +1,111 @@ +interactions: +- request: + body: null + headers: + Connection: [keep-alive] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [BlockBlob] + x-ms-client-request-id: [f2a83e9e-68f4-11e7-8a2b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:31 GMT'] + x-ms-version: ['2017-04-17'] + method: PUT + uri: https://storagename.blob.core.windows.net/utcontainera1ae1210/bloba1ae1210 + response: + body: {string: ''} + headers: + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Date: ['Sat, 15 Jul 2017 00:31:32 GMT'] + ETag: ['"0x8D4CB18D7735272"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:32 GMT'] + Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] + Transfer-Encoding: [chunked] + x-ms-request-id: [8fdd81fb-0001-012d-2001-fd9141000000] + x-ms-request-server-encrypted: ['true'] + x-ms-version: ['2017-04-17'] + status: {code: 201, message: Created} +- request: + body: null + headers: + Connection: [keep-alive] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f2bdb594-68f4-11e7-9fb2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:31 GMT'] + x-ms-version: ['2017-04-17'] + method: HEAD + uri: https://storagename.blob.core.windows.net/utcontainera1ae1210/bloba1ae1210 + response: + body: {string: ''} + headers: + Accept-Ranges: [bytes] + Content-Length: ['0'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Content-Type: [application/octet-stream] + Date: ['Sat, 15 Jul 2017 00:31:32 GMT'] + ETag: ['"0x8D4CB18D7735272"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:32 GMT'] + Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] + Vary: [Origin] + x-ms-blob-type: [BlockBlob] + x-ms-lease-state: [available] + x-ms-lease-status: [unlocked] + x-ms-request-id: [8fdd820c-0001-012d-3001-fd9141000000] + x-ms-server-encrypted: ['true'] + x-ms-version: ['2017-04-17'] + status: {code: 200, message: OK} +- request: + body: null + headers: + Connection: [keep-alive] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f2c3f526-68f4-11e7-a34e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:31 GMT'] + x-ms-range: [bytes=0-33554431] + x-ms-version: ['2017-04-17'] + method: GET + uri: https://storagename.blob.core.windows.net/utcontainera1ae1210/bloba1ae1210 + response: + body: {string: "\uFEFFInvalidRangeThe\ + \ range specified is invalid for the current size of the resource.\nRequestId:8fdd8223-0001-012d-4301-fd9141000000\n\ + Time:2017-07-15T00:31:32.7264790Z"} + headers: + Content-Length: ['249'] + Content-Range: [bytes */0] + Content-Type: [application/xml] + Date: ['Sat, 15 Jul 2017 00:31:32 GMT'] + Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] + Vary: [Origin] + x-ms-request-id: [8fdd8223-0001-012d-4301-fd9141000000] + x-ms-version: ['2017-04-17'] + status: {code: 416, message: The range specified is invalid for the current size + of the resource.} +- request: + body: null + headers: + Connection: [keep-alive] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f2c8fd50-68f4-11e7-b586-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:31 GMT'] + x-ms-version: ['2017-04-17'] + method: GET + uri: https://storagename.blob.core.windows.net/utcontainera1ae1210/bloba1ae1210 + response: + body: {string: ''} + headers: + Accept-Ranges: [bytes] + Content-Length: ['0'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Content-Type: [application/octet-stream] + Date: ['Sat, 15 Jul 2017 00:31:32 GMT'] + ETag: ['"0x8D4CB18D7735272"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:32 GMT'] + Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] + Vary: [Origin] + x-ms-blob-type: [BlockBlob] + x-ms-lease-state: [available] + x-ms-lease-status: [unlocked] + x-ms-request-id: [8fdd8231-0001-012d-5101-fd9141000000] + x-ms-server-encrypted: ['true'] + x-ms-version: ['2017-04-17'] + status: {code: 200, message: OK} +version: 1 diff --git a/tests/recordings/test_block_blob.test_create_blob_from_bytes_non_parallel.yaml b/tests/recordings/test_block_blob.test_create_blob_from_bytes_non_parallel.yaml index ededb73d..c9886ed5 100644 --- a/tests/recordings/test_block_blob.test_create_blob_from_bytes_non_parallel.yaml +++ b/tests/recordings/test_block_blob.test_create_blob_from_bytes_non_parallel.yaml @@ -76,9 +76,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fafce89c-67fa-11e7-9cdd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f30d1906-68f4-11e7-8a8b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQSUzRA%3D%3D @@ -86,10 +86,10 @@ interactions: body: {string: ''} headers: Content-MD5: [tSFCN4et3zC5Dj9ItH3kiw==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [448452f5-0001-0127-5107-fc88c8000000] + x-ms-request-id: [7aee1737-0001-00c2-4b01-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -170,9 +170,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb11aaa2-67fa-11e7-97da-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f3237618-68f4-11e7-b13b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURRd09UWSUzRA%3D%3D @@ -180,10 +180,10 @@ interactions: body: {string: ''} headers: Content-MD5: [bdosSQc3SfSAO7kv4CEDAg==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44845302-0001-0127-5907-fc88c8000000] + x-ms-request-id: [7aee1753-0001-00c2-6301-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -264,9 +264,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb178fe4-67fa-11e7-b538-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f32bb2d8-68f4-11e7-a997-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURneE9USSUzRA%3D%3D @@ -274,10 +274,10 @@ interactions: body: {string: ''} headers: Content-MD5: [DBqb/DZG2/MEmw/x2SgzJQ==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44845307-0001-0127-5c07-fc88c8000000] + x-ms-request-id: [7aee1761-0001-00c2-6f01-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -358,9 +358,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb1d3ab6-67fa-11e7-97f3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f3325606-68f4-11e7-a62b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TVRJeU9EZyUzRA%3D%3D @@ -368,10 +368,10 @@ interactions: body: {string: ''} headers: Content-MD5: [axJMydOmXOd4BcIao/vCQQ==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4484530b-0001-0127-6007-fc88c8000000] + x-ms-request-id: [7aee1779-0001-00c2-0501-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -452,9 +452,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb22e88a-67fa-11e7-9f6e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f338ebcc-68f4-11e7-afdb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TVRZek9EUSUzRA%3D%3D @@ -462,10 +462,10 @@ interactions: body: {string: ''} headers: Content-MD5: [ORjPFjlqJNGFJtPh6uDFCQ==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44845313-0001-0127-6407-fc88c8000000] + x-ms-request-id: [7aee1796-0001-00c2-1d01-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -546,9 +546,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb28e26c-67fa-11e7-bf3c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f33f2430-68f4-11e7-93bb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TWpBME9EQSUzRA%3D%3D @@ -556,10 +556,10 @@ interactions: body: {string: ''} headers: Content-MD5: [BBqE5DOSi7C2FCiyfGLfPg==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4484531e-0001-0127-6d07-fc88c8000000] + x-ms-request-id: [7aee17a7-0001-00c2-2d01-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -640,9 +640,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb2eccb8-67fa-11e7-bbf8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f3456586-68f4-11e7-8e9d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TWpRMU56WSUzRA%3D%3D @@ -650,10 +650,10 @@ interactions: body: {string: ''} headers: Content-MD5: [0CcZiH6UfAUK9FQE2gEQqQ==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44845329-0001-0127-7607-fc88c8000000] + x-ms-request-id: [7aee17bd-0001-00c2-4001-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -734,9 +734,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb3434be-67fa-11e7-87b1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f34b56ec-68f4-11e7-b8a1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TWpnMk56SSUzRA%3D%3D @@ -744,10 +744,10 @@ interactions: body: {string: ''} headers: Content-MD5: [8QFUZcokZhVAZhGxyQ6Hzg==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4484532c-0001-0127-7907-fc88c8000000] + x-ms-request-id: [7aee17d3-0001-00c2-5401-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -828,9 +828,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb39cd02-67fa-11e7-88b9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f350fe46-68f4-11e7-8a0e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TXpJM05qZyUzRA%3D%3D @@ -838,10 +838,10 @@ interactions: body: {string: ''} headers: Content-MD5: [j4y8kxJ+d0c57mJC+Ovv0A==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44845339-0001-0127-0107-fc88c8000000] + x-ms-request-id: [7aee17e6-0001-00c2-6401-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -922,9 +922,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb3f22de-67fa-11e7-bcfe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f3574198-68f4-11e7-832e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TXpZNE5qUSUzRA%3D%3D @@ -932,10 +932,10 @@ interactions: body: {string: ''} headers: Content-MD5: [0luvyPaTCi5wWSbsyfLqeA==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4484533d-0001-0127-0407-fc88c8000000] + x-ms-request-id: [7aee17f4-0001-00c2-7001-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1016,9 +1016,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb451590-67fa-11e7-9a88-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f35e1f3e-68f4-11e7-ab6c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TkRBNU5qQSUzRA%3D%3D @@ -1026,10 +1026,10 @@ interactions: body: {string: ''} headers: Content-MD5: [Z168Rc27RAA8FXCbRX1Yaw==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44845341-0001-0127-0807-fc88c8000000] + x-ms-request-id: [7aee1808-0001-00c2-0101-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1110,9 +1110,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb4ac440-67fa-11e7-8e8f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f3641664-68f4-11e7-93e6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TkRVd05UWSUzRA%3D%3D @@ -1120,10 +1120,10 @@ interactions: body: {string: ''} headers: Content-MD5: [6BJqmLRwSGjN3Z6Lw/s0LA==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44845347-0001-0127-0e07-fc88c8000000] + x-ms-request-id: [7aee1819-0001-00c2-0f01-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1204,9 +1204,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb506008-67fa-11e7-9681-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f36aff88-68f4-11e7-ad1b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TkRreE5USSUzRA%3D%3D @@ -1214,10 +1214,10 @@ interactions: body: {string: ''} headers: Content-MD5: [jaQBwWiOga+zxllk77RaDg==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44845350-0001-0127-1707-fc88c8000000] + x-ms-request-id: [7aee182d-0001-00c2-2001-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1298,9 +1298,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb55d6a8-67fa-11e7-81e4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f37461c2-68f4-11e7-aa3e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TlRNeU5EZyUzRA%3D%3D @@ -1308,10 +1308,10 @@ interactions: body: {string: ''} headers: Content-MD5: [p8ScSlh6PeZtZKUu3CHI7A==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44845358-0001-0127-1f07-fc88c8000000] + x-ms-request-id: [7aee1848-0001-00c2-3501-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1392,9 +1392,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb5c36ba-67fa-11e7-998f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f37a1368-68f4-11e7-820f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TlRjek5EUSUzRA%3D%3D @@ -1402,10 +1402,10 @@ interactions: body: {string: ''} headers: Content-MD5: [L6lQSVAKvcFty0Rc7uqZ3w==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44845366-0001-0127-2b07-fc88c8000000] + x-ms-request-id: [7aee1853-0001-00c2-4001-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1486,9 +1486,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4096'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb61b918-67fa-11e7-a59e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f381443a-68f4-11e7-b13d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TmpFME5EQSUzRA%3D%3D @@ -1496,10 +1496,10 @@ interactions: body: {string: ''} headers: Content-MD5: [Tw8IuJxTyn9q9xSxNlYFcA==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4484536f-0001-0127-3407-fc88c8000000] + x-ms-request-id: [7aee186a-0001-00c2-5701-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1509,9 +1509,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['5'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb6a637a-67fa-11e7-a6b1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f387c73a-68f4-11e7-9a93-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=block&blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TmpVMU16WSUzRA%3D%3D @@ -1519,10 +1519,10 @@ interactions: body: {string: ''} headers: Content-MD5: [1fmiSkSVS0/nC0Bz9ZzrgQ==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44845379-0001-0127-3c07-fc88c8000000] + x-ms-request-id: [7aee187e-0001-00c2-6a01-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1533,9 +1533,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1439'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb701100-67fa-11e7-947e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f38f9098-68f4-11e7-9420-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer885116d7/blob885116d7?comp=blocklist @@ -1543,12 +1543,12 @@ interactions: body: {string: ''} headers: Content-MD5: [2nzSY7N+S0rNnVPf0y216w==] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] - ETag: ['"0x8D4CA1EDF78D13C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] + ETag: ['"0x8D4CB18D84B63E6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44845385-0001-0127-4607-fc88c8000000] + x-ms-request-id: [7aee189a-0001-00c2-0601-fddc6a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -1556,9 +1556,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb77fadc-67fa-11e7-8e55-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f395b6a6-68f4-11e7-bc3b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:32 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -2721,15 +2721,15 @@ interactions: Content-Length: ['65541'] Content-Range: [bytes 0-65540/65541] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:10 GMT'] - ETag: ['"0x8D4CA1EDF78D13C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:33 GMT'] + ETag: ['"0x8D4CB18D84B63E6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [4484538d-0001-0127-4e07-fc88c8000000] + x-ms-request-id: [7aee18a6-0001-00c2-1101-fddc6a000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_block_blob.test_create_blob_from_bytes_single_put.yaml b/tests/recordings/test_block_blob.test_create_blob_from_bytes_single_put.yaml index 9593f013..9e76010f 100644 --- a/tests/recordings/test_block_blob.test_create_blob_from_bytes_single_put.yaml +++ b/tests/recordings/test_block_blob.test_create_blob_from_bytes_single_put.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [fbeb1562-67fa-11e7-a6fc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:12 GMT'] + x-ms-client-request-id: [f3fe105c-68f4-11e7-aa62-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:33 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer5b3a161a/blob5b3a161a @@ -15,12 +15,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:42:11 GMT'] - ETag: ['"0x8D4CA1EE0023E4B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:34 GMT'] + ETag: ['"0x8D4CB18D8C7D6E3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:34 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cd1fd15e-0001-0073-6607-fc2417000000] + x-ms-request-id: [9ca7c9b8-0001-0043-5001-fd7e3d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fbff8326-67fa-11e7-9389-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f411f0e8-68f4-11e7-ab55-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:33 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer5b3a161a/blob5b3a161a @@ -41,15 +41,15 @@ interactions: Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:11 GMT'] - ETag: ['"0x8D4CA1EE0023E4B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:34 GMT'] + ETag: ['"0x8D4CB18D8C7D6E3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:34 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [cd1fd16d-0001-0073-7307-fc2417000000] + x-ms-request-id: [9ca7c9cb-0001-0043-5d01-fd7e3d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -57,9 +57,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fc04c494-67fa-11e7-8d5d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f4172b82-68f4-11e7-926e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:33 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -71,16 +71,16 @@ interactions: Content-Length: ['11'] Content-Range: [bytes 0-10/11] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:11 GMT'] - ETag: ['"0x8D4CA1EE0023E4B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:34 GMT'] + ETag: ['"0x8D4CB18D8C7D6E3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:34 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [XrY7u+Ae7tCTyyK7j1rNww==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [cd1fd181-0001-0073-0507-fc2417000000] + x-ms-request-id: [9ca7c9e4-0001-0043-7101-fd7e3d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_block_blob.test_create_blob_from_bytes_with_index_and_count.yaml b/tests/recordings/test_block_blob.test_create_blob_from_bytes_with_index_and_count.yaml index 594a0310..f6abae31 100644 --- a/tests/recordings/test_block_blob.test_create_blob_from_bytes_with_index_and_count.yaml +++ b/tests/recordings/test_block_blob.test_create_blob_from_bytes_with_index_and_count.yaml @@ -5,10 +5,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['5'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [fc64a5f8-67fa-11e7-ba55-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:13 GMT'] + x-ms-client-request-id: [f4770750-68f4-11e7-b852-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer4e071a2d/blob4e071a2d @@ -16,12 +16,12 @@ interactions: body: {string: ''} headers: Content-MD5: [aSF8YZAP3jEFJCuhQZHrwA==] - Date: ['Thu, 13 Jul 2017 18:42:12 GMT'] - ETag: ['"0x8D4CA1EE07BF108"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:34 GMT'] + ETag: ['"0x8D4CB18D941B151"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f8b637f2-0001-0120-3c07-fc7e4d000000] + x-ms-request-id: [4f48d29d-0001-0004-3f01-fda156000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fc79bff6-67fa-11e7-8e5a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f48ca826-68f4-11e7-b07b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:34 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -45,16 +45,16 @@ interactions: Content-Length: ['5'] Content-Range: [bytes 0-4/5] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:12 GMT'] - ETag: ['"0x8D4CA1EE07BF108"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:34 GMT'] + ETag: ['"0x8D4CB18D941B151"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [aSF8YZAP3jEFJCuhQZHrwA==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f8b63800-0001-0120-4807-fc7e4d000000] + x-ms-request-id: [4f48d2a7-0001-0004-4801-fda156000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_block_blob.test_create_blob_from_bytes_with_index_and_count_and_properties.yaml b/tests/recordings/test_block_blob.test_create_blob_from_bytes_with_index_and_count_and_properties.yaml index ea980cb4..d9a4fcc5 100644 --- a/tests/recordings/test_block_blob.test_create_blob_from_bytes_with_index_and_count_and_properties.yaml +++ b/tests/recordings/test_block_blob.test_create_blob_from_bytes_with_index_and_count_and_properties.yaml @@ -5,12 +5,12 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['5'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-language: [spanish] x-ms-blob-content-type: [image/png] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [fcbe2846-67fa-11e7-a86f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:13 GMT'] + x-ms-client-request-id: [f50e6906-68f4-11e7-b6d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer7cc206b/blob7cc206b @@ -18,12 +18,12 @@ interactions: body: {string: ''} headers: Content-MD5: [ctAmjC3dX+PPgC16ZIesIw==] - Date: ['Thu, 13 Jul 2017 18:42:13 GMT'] - ETag: ['"0x8D4CA1EE0D852AF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:35 GMT'] + ETag: ['"0x8D4CB18D9D88F06"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f1a814c0-0001-00a8-5907-fc80c1000000] + x-ms-request-id: [6d1fb78a-0001-0075-0401-fdd36f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -31,9 +31,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fcd66da8-67fa-11e7-bf72-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f523258a-68f4-11e7-b4cc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:35 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -48,16 +48,16 @@ interactions: Content-Length: ['5'] Content-Range: [bytes 0-4/5] Content-Type: [image/png] - Date: ['Thu, 13 Jul 2017 18:42:13 GMT'] - ETag: ['"0x8D4CA1EE0D852AF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:35 GMT'] + ETag: ['"0x8D4CB18D9D88F06"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [ctAmjC3dX+PPgC16ZIesIw==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f1a814cd-0001-00a8-6307-fc80c1000000] + x-ms-request-id: [6d1fb7a2-0001-0075-1601-fdd36f000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -65,9 +65,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fce33e40-67fa-11e7-908e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:14 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f52913c8-68f4-11e7-9302-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:35 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer7cc206b/blob7cc206b @@ -79,15 +79,15 @@ interactions: Content-Length: ['5'] Content-MD5: [ctAmjC3dX+PPgC16ZIesIw==] Content-Type: [image/png] - Date: ['Thu, 13 Jul 2017 18:42:14 GMT'] - ETag: ['"0x8D4CA1EE0D852AF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:35 GMT'] + ETag: ['"0x8D4CB18D9D88F06"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f1a814fc-0001-00a8-0507-fc80c1000000] + x-ms-request-id: [6d1fb7bb-0001-0075-2b01-fdd36f000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_block_blob.test_create_blob_from_path_non_parallel.yaml b/tests/recordings/test_block_blob.test_create_blob_from_path_non_parallel.yaml index f8f99e9f..2e146de9 100644 --- a/tests/recordings/test_block_blob.test_create_blob_from_path_non_parallel.yaml +++ b/tests/recordings/test_block_blob.test_create_blob_from_path_non_parallel.yaml @@ -6,10 +6,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['100'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [fd86e874-67fa-11e7-9d7a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:15 GMT'] + x-ms-client-request-id: [f5d4694c-68f4-11e7-b33f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer7091165d/blob7091165d @@ -17,12 +17,12 @@ interactions: body: {string: ''} headers: Content-MD5: [usVCdWYckQmuQwDtm0RvSA==] - Date: ['Thu, 13 Jul 2017 18:42:14 GMT'] - ETag: ['"0x8D4CA1EE19CFE7A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:37 GMT'] + ETag: ['"0x8D4CB18DA9DD851"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8a02c477-0001-0066-4307-fce68e000000] + x-ms-request-id: [85811daa-0001-0092-3701-fdc362000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -30,9 +30,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fd9a1f7a-67fa-11e7-8ef8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f5e82274-68f4-11e7-853c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:36 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer7091165d/blob7091165d @@ -43,15 +43,15 @@ interactions: Content-Length: ['100'] Content-MD5: [usVCdWYckQmuQwDtm0RvSA==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:14 GMT'] - ETag: ['"0x8D4CA1EE19CFE7A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:37 GMT'] + ETag: ['"0x8D4CB18DA9DD851"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [8a02c48c-0001-0066-5407-fce68e000000] + x-ms-request-id: [85811db5-0001-0092-3e01-fdc362000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -59,9 +59,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fd9f0634-67fa-11e7-b7ea-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f5ef520c-68f4-11e7-902c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:36 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -76,16 +76,16 @@ interactions: Content-Length: ['100'] Content-Range: [bytes 0-99/100] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:14 GMT'] - ETag: ['"0x8D4CA1EE19CFE7A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:37 GMT'] + ETag: ['"0x8D4CB18DA9DD851"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [usVCdWYckQmuQwDtm0RvSA==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [8a02c498-0001-0066-5e07-fce68e000000] + x-ms-request-id: [85811dc7-0001-0092-4d01-fdc362000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_block_blob.test_create_blob_from_text.yaml b/tests/recordings/test_block_blob.test_create_blob_from_text.yaml index 2587d05c..4ab66396 100644 --- a/tests/recordings/test_block_blob.test_create_blob_from_text.yaml +++ b/tests/recordings/test_block_blob.test_create_blob_from_text.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['27'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [febff44c-67fa-11e7-a165-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:17 GMT'] + x-ms-client-request-id: [f71fdaa4-68f4-11e7-80ce-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6e12111f/blob6e12111f @@ -15,12 +15,12 @@ interactions: body: {string: ''} headers: Content-MD5: [1dmqejQJFCXZC/Jqkmc1Lw==] - Date: ['Thu, 13 Jul 2017 18:42:15 GMT'] - ETag: ['"0x8D4CA1EE2D568A9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:39 GMT'] + ETag: ['"0x8D4CB18DBE93350"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fe7139dd-0001-00de-2107-fc047d000000] + x-ms-request-id: [0ab0a75f-0001-004e-4e01-fd9131000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fed2d210-67fa-11e7-9f38-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f733771c-68f4-11e7-b971-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:38 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer6e12111f/blob6e12111f @@ -41,15 +41,15 @@ interactions: Content-Length: ['27'] Content-MD5: [1dmqejQJFCXZC/Jqkmc1Lw==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:15 GMT'] - ETag: ['"0x8D4CA1EE2D568A9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:39 GMT'] + ETag: ['"0x8D4CB18DBE93350"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [fe7139f0-0001-00de-3307-fc047d000000] + x-ms-request-id: [0ab0a76d-0001-004e-5a01-fd9131000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -57,9 +57,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fed8014a-67fa-11e7-ab32-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f7393a4c-68f4-11e7-be27-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:38 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -71,16 +71,16 @@ interactions: Content-Length: ['27'] Content-Range: [bytes 0-26/27] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:16 GMT'] - ETag: ['"0x8D4CA1EE2D568A9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:39 GMT'] + ETag: ['"0x8D4CB18DBE93350"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [1dmqejQJFCXZC/Jqkmc1Lw==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [fe713a0a-0001-00de-4b07-fc047d000000] + x-ms-request-id: [0ab0a77c-0001-004e-6501-fd9131000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_block_blob.test_create_blob_from_text_with_encoding.yaml b/tests/recordings/test_block_blob.test_create_blob_from_text_with_encoding.yaml index 3e7fe63f..8852520c 100644 --- a/tests/recordings/test_block_blob.test_create_blob_from_text_with_encoding.yaml +++ b/tests/recordings/test_block_blob.test_create_blob_from_text_with_encoding.yaml @@ -5,10 +5,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['36'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ff334da2-67fa-11e7-bc6b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:17 GMT'] + x-ms-client-request-id: [f7842806-68f4-11e7-af35-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:39 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer891416e0/blob891416e0 @@ -16,12 +16,12 @@ interactions: body: {string: ''} headers: Content-MD5: [O7c5HRnUhbM5yD4T1wnm/w==] - Date: ['Thu, 13 Jul 2017 18:42:17 GMT'] - ETag: ['"0x8D4CA1EE34AD4E9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:40 GMT'] + ETag: ['"0x8D4CB18DC4E2252"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3fa147e3-0001-00ff-0107-fc694c000000] + x-ms-request-id: [560b4d80-0001-00db-1201-fdf002000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ff4a9d9a-67fa-11e7-b2c4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f798694c-68f4-11e7-835c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:39 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -45,16 +45,16 @@ interactions: Content-Length: ['36'] Content-Range: [bytes 0-35/36] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:17 GMT'] - ETag: ['"0x8D4CA1EE34AD4E9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:40 GMT'] + ETag: ['"0x8D4CB18DC4E2252"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [O7c5HRnUhbM5yD4T1wnm/w==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [3fa14805-0001-00ff-2007-fc694c000000] + x-ms-request-id: [560b4d9a-0001-00db-2301-fdf002000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_block_blob.test_create_blob_from_text_with_encoding_and_progress.yaml b/tests/recordings/test_block_blob.test_create_blob_from_text_with_encoding_and_progress.yaml index 2c01e5f6..69f1ae4b 100644 --- a/tests/recordings/test_block_blob.test_create_blob_from_text_with_encoding_and_progress.yaml +++ b/tests/recordings/test_block_blob.test_create_blob_from_text_with_encoding_and_progress.yaml @@ -5,10 +5,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['36'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ff79a23e-67fa-11e7-966d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:18 GMT'] + x-ms-client-request-id: [f7c86806-68f4-11e7-89bb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:39 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd7661c46/blobd7661c46 @@ -16,12 +16,12 @@ interactions: body: {string: ''} headers: Content-MD5: [O7c5HRnUhbM5yD4T1wnm/w==] - Date: ['Thu, 13 Jul 2017 18:42:17 GMT'] - ETag: ['"0x8D4CA1EE39027C4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:38 GMT'] + ETag: ['"0x8D4CB18DC92B215"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [818fbc6f-0001-0087-1807-fc01fb000000] + x-ms-request-id: [2e2c548f-0001-008c-0401-fd198f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ff8da21e-67fa-11e7-895b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f7ddc99c-68f4-11e7-b83a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:39 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -45,16 +45,16 @@ interactions: Content-Length: ['36'] Content-Range: [bytes 0-35/36] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:17 GMT'] - ETag: ['"0x8D4CA1EE39027C4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:38 GMT'] + ETag: ['"0x8D4CB18DC92B215"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [O7c5HRnUhbM5yD4T1wnm/w==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [818fbc7c-0001-0087-2307-fc01fb000000] + x-ms-request-id: [2e2c54a5-0001-008c-1801-fd198f000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_block_blob.test_create_blob_with_md5.yaml b/tests/recordings/test_block_blob.test_create_blob_with_md5.yaml index 8e8916a1..03059a7a 100644 --- a/tests/recordings/test_block_blob.test_create_blob_with_md5.yaml +++ b/tests/recordings/test_block_blob.test_create_blob_with_md5.yaml @@ -5,10 +5,10 @@ interactions: Connection: [keep-alive] Content-Length: ['11'] Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ffbd8440-67fa-11e7-8af8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:18 GMT'] + x-ms-client-request-id: [f80c472c-68f4-11e7-b481-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer5ce71068/blob5ce71068 @@ -16,12 +16,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:42:18 GMT'] - ETag: ['"0x8D4CA1EE3D5538D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:40 GMT'] + ETag: ['"0x8D4CB18DCD6A57B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d011aa18-0001-0113-5407-fc2760000000] + x-ms-request-id: [4a43167d-0001-0099-0101-fddb16000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_block_blob.test_get_block_list_committed_blocks.yaml b/tests/recordings/test_block_blob.test_get_block_list_committed_blocks.yaml index db41336b..1a75e916 100644 --- a/tests/recordings/test_block_blob.test_get_block_list_committed_blocks.yaml +++ b/tests/recordings/test_block_blob.test_get_block_list_committed_blocks.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [005b9574-67fb-11e7-9444-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f89e4686-68f4-11e7-9926-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer3074153d/blob3074153d?comp=block&blockid=MQ%3D%3D @@ -14,10 +14,10 @@ interactions: body: {string: ''} headers: Content-MD5: [4fr/s+YU5sL7p0KWliOGtw==] - Date: ['Thu, 13 Jul 2017 18:42:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a86baa67-0001-013c-5307-fca65a000000] + x-ms-request-id: [f65446a8-0001-0027-0e01-fdce9d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [007002be-67fb-11e7-aae0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f8b33078-68f4-11e7-92f4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer3074153d/blob3074153d?comp=block&blockid=Mg%3D%3D @@ -36,10 +36,10 @@ interactions: body: {string: ''} headers: Content-MD5: [K7Il8LqaWJMHV6ho7VfZow==] - Date: ['Thu, 13 Jul 2017 18:42:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a86baa88-0001-013c-7007-fca65a000000] + x-ms-request-id: [f65446bd-0001-0027-2101-fdce9d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -48,9 +48,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [00757758-67fb-11e7-98ab-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f8bacf0c-68f4-11e7-a4b5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer3074153d/blob3074153d?comp=block&blockid=Mw%3D%3D @@ -58,10 +58,10 @@ interactions: body: {string: ''} headers: Content-MD5: [3vuZ5pqfH24G8VAGsfFmrg==] - Date: ['Thu, 13 Jul 2017 18:42:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a86baaa7-0001-013c-0f07-fca65a000000] + x-ms-request-id: [f65446e6-0001-0027-4701-fdce9d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -72,9 +72,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['125'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [007bc108-67fb-11e7-a167-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f8c2431a-68f4-11e7-a030-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer3074153d/blob3074153d?comp=blocklist @@ -82,12 +82,12 @@ interactions: body: {string: ''} headers: Content-MD5: [GD5pABqdSyI51XhMKrkBRA==] - Date: ['Thu, 13 Jul 2017 18:42:19 GMT'] - ETag: ['"0x8D4CA1EE48450BE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:41 GMT'] + ETag: ['"0x8D4CB18DD7E9D5C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a86baad5-0001-013c-3807-fca65a000000] + x-ms-request-id: [f65446f6-0001-0027-5701-fdce9d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -95,9 +95,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [00854cdc-67fb-11e7-9cff-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f90c8b64-68f4-11e7-a9e6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:41 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer3074153d/blob3074153d?comp=blocklist&blocklisttype=committed @@ -105,14 +105,14 @@ interactions: body: {string: "\uFEFFMQ==3Mg==3Mw==3"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:42:19 GMT'] - ETag: ['"0x8D4CA1EE48450BE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:41 GMT'] + ETag: ['"0x8D4CB18DD7E9D5C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-blob-content-length: ['9'] - x-ms-request-id: [a86bab13-0001-013c-7107-fca65a000000] + x-ms-request-id: [f6544764-0001-0027-3801-fdce9d000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_block_blob.test_get_block_list_no_blocks.yaml b/tests/recordings/test_block_blob.test_get_block_list_no_blocks.yaml index 832f9d2f..e2a01aef 100644 --- a/tests/recordings/test_block_blob.test_get_block_list_no_blocks.yaml +++ b/tests/recordings/test_block_blob.test_get_block_list_no_blocks.yaml @@ -1,27 +1,26 @@ interactions: - request: - body: ' - - ' + body: null headers: Connection: [keep-alive] - Content-Length: ['52'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [00b99ae6-67fb-11e7-aa3e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:20 GMT'] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [BlockBlob] + x-ms-client-request-id: [f9664276-68f4-11e7-a52c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainera4381254/bloba4381254?comp=blocklist + uri: https://storagename.blob.core.windows.net/utcontainera4381254/bloba4381254 response: body: {string: ''} headers: - Content-MD5: [NgbQHgw94OQ3P8fSkY5Pxg==] - Date: ['Thu, 13 Jul 2017 18:42:20 GMT'] - ETag: ['"0x8D4CA1EE4D19450"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:20 GMT'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Date: ['Sat, 15 Jul 2017 00:31:42 GMT'] + ETag: ['"0x8D4CB18DE3033F0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cc71f13f-0001-0100-1d07-fc1281000000] + x-ms-request-id: [e357a25f-0001-00bf-1501-fd40a2000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +28,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [00d1cb7a-67fb-11e7-80d6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f97bc740-68f4-11e7-9ccd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:42 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainera4381254/bloba4381254?comp=blocklist&blocklisttype=all @@ -40,14 +39,14 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:42:20 GMT'] - ETag: ['"0x8D4CA1EE4D19450"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:42 GMT'] + ETag: ['"0x8D4CB18DE3033F0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-blob-content-length: ['0'] - x-ms-request-id: [cc71f15d-0001-0100-3a07-fc1281000000] + x-ms-request-id: [e357a263-0001-00bf-1801-fd40a2000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_block_blob.test_get_block_list_uncommitted_blocks.yaml b/tests/recordings/test_block_blob.test_get_block_list_uncommitted_blocks.yaml index 5ecd1ec2..bbed310e 100644 --- a/tests/recordings/test_block_blob.test_get_block_list_uncommitted_blocks.yaml +++ b/tests/recordings/test_block_blob.test_get_block_list_uncommitted_blocks.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [00ffebb8-67fb-11e7-b471-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f9ae0dcc-68f4-11e7-8310-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer5d301620/blob5d301620?comp=block&blockid=MQ%3D%3D @@ -14,10 +14,10 @@ interactions: body: {string: ''} headers: Content-MD5: [4fr/s+YU5sL7p0KWliOGtw==] - Date: ['Thu, 13 Jul 2017 18:42:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4c76fd2c-0001-0010-3d07-fc6232000000] + x-ms-request-id: [6ce65897-0001-0018-1901-fd7941000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0116bbe2-67fb-11e7-99c0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f9c3e6ba-68f4-11e7-8b69-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer5d301620/blob5d301620?comp=block&blockid=Mg%3D%3D @@ -36,10 +36,10 @@ interactions: body: {string: ''} headers: Content-MD5: [K7Il8LqaWJMHV6ho7VfZow==] - Date: ['Thu, 13 Jul 2017 18:42:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4c76fd51-0001-0010-5c07-fc6232000000] + x-ms-request-id: [6ce658c9-0001-0018-4701-fd7941000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -48,9 +48,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [011de53a-67fb-11e7-947c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f9c9da28-68f4-11e7-8bbc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer5d301620/blob5d301620?comp=block&blockid=Mw%3D%3D @@ -58,10 +58,10 @@ interactions: body: {string: ''} headers: Content-MD5: [3vuZ5pqfH24G8VAGsfFmrg==] - Date: ['Thu, 13 Jul 2017 18:42:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4c76fd6e-0001-0010-7607-fc6232000000] + x-ms-request-id: [6ce658e7-0001-0018-6301-fd7941000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -69,9 +69,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0127c6ec-67fb-11e7-8923-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [f9cf3558-68f4-11e7-a7f2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:43 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer5d301620/blob5d301620?comp=blocklist&blocklisttype=uncommitted @@ -79,11 +79,11 @@ interactions: body: {string: "\uFEFFMQ==3Mg==3Mw==3"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:42:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [4c76fd8f-0001-0010-1207-fc6232000000] + x-ms-request-id: [6ce65902-0001-0018-7901-fd7941000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_block_blob.test_put_block.yaml b/tests/recordings/test_block_blob.test_put_block.yaml index d40be09c..65db79ba 100644 --- a/tests/recordings/test_block_blob.test_put_block.yaml +++ b/tests/recordings/test_block_blob.test_put_block.yaml @@ -1,27 +1,26 @@ interactions: - request: - body: ' - - ' + body: null headers: Connection: [keep-alive] - Content-Length: ['52'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [015962ec-67fb-11e7-bfcc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [BlockBlob] + x-ms-client-request-id: [fa00b20c-68f4-11e7-9dba-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainerbdb10c39/blobbdb10c39?comp=blocklist + uri: https://storagename.blob.core.windows.net/utcontainerbdb10c39/blobbdb10c39 response: body: {string: ''} headers: - Content-MD5: [NgbQHgw94OQ3P8fSkY5Pxg==] - Date: ['Thu, 13 Jul 2017 18:42:21 GMT'] - ETag: ['"0x8D4CA1EE570FE4A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:21 GMT'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Date: ['Sat, 15 Jul 2017 00:31:41 GMT'] + ETag: ['"0x8D4CB18DECA4685"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [31f54170-0001-0074-1907-fcd292000000] + x-ms-request-id: [4806a5f7-0001-0089-3401-fdedf0000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -30,9 +29,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [016e2236-67fb-11e7-b4c3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fa15d808-68f4-11e7-859c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbdb10c39/blobbdb10c39?comp=block&blockid=MA%3D%3D @@ -40,10 +39,10 @@ interactions: body: {string: ''} headers: Content-MD5: [TjjhPkKeLS6Els52i6m9Bg==] - Date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [31f5417c-0001-0074-2407-fcd292000000] + x-ms-request-id: [4806a609-0001-0089-4501-fdedf0000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [01740668-67fb-11e7-bf12-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fa1d4ab6-68f4-11e7-b563-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbdb10c39/blobbdb10c39?comp=block&blockid=MQ%3D%3D @@ -62,10 +61,10 @@ interactions: body: {string: ''} headers: Content-MD5: [ZOnmAD+J5F2p66g8NFSefA==] - Date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [31f54186-0001-0074-2c07-fcd292000000] + x-ms-request-id: [4806a618-0001-0089-5001-fdedf0000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -74,9 +73,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0179f1a6-67fb-11e7-92e8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fa22e3a4-68f4-11e7-8f16-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbdb10c39/blobbdb10c39?comp=block&blockid=Mg%3D%3D @@ -84,10 +83,10 @@ interactions: body: {string: ''} headers: Content-MD5: [giBgEwOK96+T6eqweyrlNg==] - Date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [31f54192-0001-0074-3807-fcd292000000] + x-ms-request-id: [4806a620-0001-0089-5601-fdedf0000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -96,9 +95,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0180d17e-67fb-11e7-b2d4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fa288534-68f4-11e7-b1fd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbdb10c39/blobbdb10c39?comp=block&blockid=Mw%3D%3D @@ -106,10 +105,10 @@ interactions: body: {string: ''} headers: Content-MD5: [FDhv5/Vy34Z9KKvEnjH2lQ==] - Date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [31f5419a-0001-0074-4007-fcd292000000] + x-ms-request-id: [4806a632-0001-0089-6701-fdedf0000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -118,9 +117,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0186c2c8-67fb-11e7-8fed-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fa32401a-68f4-11e7-bc8d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbdb10c39/blobbdb10c39?comp=block&blockid=NA%3D%3D @@ -128,10 +127,10 @@ interactions: body: {string: ''} headers: Content-MD5: [jkC3Z8KTocewrRQF+tkxeA==] - Date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [31f541a5-0001-0074-4807-fcd292000000] + x-ms-request-id: [4806a652-0001-0089-0101-fdedf0000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_block_blob.test_put_block_list.yaml b/tests/recordings/test_block_blob.test_put_block_list.yaml index c4f30a36..849b81d3 100644 --- a/tests/recordings/test_block_blob.test_put_block_list.yaml +++ b/tests/recordings/test_block_blob.test_put_block_list.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [01ba48b4-67fb-11e7-8049-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fa6176d2-68f4-11e7-942f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerfd0e54/blobfd0e54?comp=block&blockid=MQ%3D%3D @@ -14,10 +14,10 @@ interactions: body: {string: ''} headers: Content-MD5: [4fr/s+YU5sL7p0KWliOGtw==] - Date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f603aae9-0001-0114-7207-fcd1e5000000] + x-ms-request-id: [712968be-0001-000a-5a01-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [01cfd1c0-67fb-11e7-b902-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fa789ed4-68f4-11e7-a57e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerfd0e54/blobfd0e54?comp=block&blockid=Mg%3D%3D @@ -36,10 +36,10 @@ interactions: body: {string: ''} headers: Content-MD5: [K7Il8LqaWJMHV6ho7VfZow==] - Date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f603ab02-0001-0114-0607-fcd1e5000000] + x-ms-request-id: [712968d7-0001-000a-7001-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -48,9 +48,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [01d5cae4-67fb-11e7-97b5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fa7e3346-68f4-11e7-a10a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerfd0e54/blobfd0e54?comp=block&blockid=Mw%3D%3D @@ -58,10 +58,10 @@ interactions: body: {string: ''} headers: Content-MD5: [3vuZ5pqfH24G8VAGsfFmrg==] - Date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f603ab0e-0001-0114-1207-fcd1e5000000] + x-ms-request-id: [712968f1-0001-000a-0801-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -72,9 +72,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['125'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [01de88e6-67fb-11e7-a86d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fa83a6da-68f4-11e7-9bcb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerfd0e54/blobfd0e54?comp=blocklist @@ -82,12 +82,12 @@ interactions: body: {string: ''} headers: Content-MD5: [GD5pABqdSyI51XhMKrkBRA==] - Date: ['Thu, 13 Jul 2017 18:42:21 GMT'] - ETag: ['"0x8D4CA1EE5E7F168"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:44 GMT'] + ETag: ['"0x8D4CB18DF3F6538"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f603ab2b-0001-0114-2c07-fcd1e5000000] + x-ms-request-id: [71296909-0001-000a-1d01-fd4d5d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -95,9 +95,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [01f5f30a-67fb-11e7-8d75-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fa89f5ba-68f4-11e7-a0c5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:44 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -109,15 +109,15 @@ interactions: Content-Length: ['9'] Content-Range: [bytes 0-8/9] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:21 GMT'] - ETag: ['"0x8D4CA1EE5E7F168"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:44 GMT'] + ETag: ['"0x8D4CB18DF3F6538"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f603ab7b-0001-0114-7407-fcd1e5000000] + x-ms-request-id: [71296922-0001-000a-3601-fd4d5d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_block_blob.test_put_block_list_invalid_block_id.yaml b/tests/recordings/test_block_blob.test_put_block_list_invalid_block_id.yaml index c3c508de..144ab4e4 100644 --- a/tests/recordings/test_block_blob.test_put_block_list_invalid_block_id.yaml +++ b/tests/recordings/test_block_blob.test_put_block_list_invalid_block_id.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [02269c58-67fb-11e7-bb46-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [faccf63a-68f4-11e7-8a25-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32b01530/blob32b01530?comp=block&blockid=MQ%3D%3D @@ -14,10 +14,10 @@ interactions: body: {string: ''} headers: Content-MD5: [4fr/s+YU5sL7p0KWliOGtw==] - Date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7448fe9d-0001-0060-6b07-fc11f6000000] + x-ms-request-id: [5acf5703-0001-002f-7e01-fdd5ee000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [023dd058-67fb-11e7-8752-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fae41f24-68f4-11e7-987d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32b01530/blob32b01530?comp=block&blockid=Mg%3D%3D @@ -36,10 +36,10 @@ interactions: body: {string: ''} headers: Content-MD5: [K7Il8LqaWJMHV6ho7VfZow==] - Date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7448fea8-0001-0060-7307-fc11f6000000] + x-ms-request-id: [5acf570e-0001-002f-0701-fdd5ee000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -48,9 +48,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [024597f4-67fb-11e7-a50c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fae99f58-68f4-11e7-ba01-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32b01530/blob32b01530?comp=block&blockid=Mw%3D%3D @@ -58,10 +58,10 @@ interactions: body: {string: ''} headers: Content-MD5: [3vuZ5pqfH24G8VAGsfFmrg==] - Date: ['Thu, 13 Jul 2017 18:42:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7448febc-0001-0060-0607-fc11f6000000] + x-ms-request-id: [5acf571a-0001-002f-1201-fdd5ee000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -72,22 +72,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['125'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [024b4864-67fb-11e7-a9f6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [faef534c-68f4-11e7-80c1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32b01530/blob32b01530?comp=blocklist response: body: {string: "\uFEFFInvalidBlockListThe\ - \ specified block list is invalid.\nRequestId:7448fec6-0001-0060-0f07-fc11f6000000\n\ - Time:2017-07-13T18:42:22.8910508Z"} + \ specified block list is invalid.\nRequestId:5acf5727-0001-002f-1b01-fdd5ee000000\n\ + Time:2017-07-15T00:31:45.8088598Z"} headers: Content-Length: ['221'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:42:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [7448fec6-0001-0060-0f07-fc11f6000000] + x-ms-request-id: [5acf5727-0001-002f-1b01-fdd5ee000000] x-ms-version: ['2017-04-17'] status: {code: 400, message: The specified block list is invalid.} version: 1 diff --git a/tests/recordings/test_block_blob.test_put_block_list_with_md5.yaml b/tests/recordings/test_block_blob.test_put_block_list_with_md5.yaml index b3358c1d..72ad1bb4 100644 --- a/tests/recordings/test_block_blob.test_put_block_list_with_md5.yaml +++ b/tests/recordings/test_block_blob.test_put_block_list_with_md5.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [02803470-67fb-11e7-9ad4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fb1f763a-68f4-11e7-ab41-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer945f11d4/blob945f11d4?comp=block&blockid=MQ%3D%3D @@ -14,10 +14,10 @@ interactions: body: {string: ''} headers: Content-MD5: [4fr/s+YU5sL7p0KWliOGtw==] - Date: ['Thu, 13 Jul 2017 18:42:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d43f9f0e-0001-0038-3607-fc158d000000] + x-ms-request-id: [86ea40d8-0001-0000-7701-fd54d4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0294cd0c-67fb-11e7-8474-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fb33e4a8-68f4-11e7-8ace-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer945f11d4/blob945f11d4?comp=block&blockid=Mg%3D%3D @@ -36,10 +36,10 @@ interactions: body: {string: ''} headers: Content-MD5: [K7Il8LqaWJMHV6ho7VfZow==] - Date: ['Thu, 13 Jul 2017 18:42:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d43f9f3f-0001-0038-5f07-fc158d000000] + x-ms-request-id: [86ea40e0-0001-0000-7d01-fd54d4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -48,9 +48,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [02a66276-67fb-11e7-b0a2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fb3b53d4-68f4-11e7-b3d9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer945f11d4/blob945f11d4?comp=block&blockid=Mw%3D%3D @@ -58,10 +58,10 @@ interactions: body: {string: ''} headers: Content-MD5: [3vuZ5pqfH24G8VAGsfFmrg==] - Date: ['Thu, 13 Jul 2017 18:42:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d43f9f52-0001-0038-7107-fc158d000000] + x-ms-request-id: [86ea40ed-0001-0000-0a01-fd54d4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -73,9 +73,9 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-MD5: [GD5pABqdSyI51XhMKrkBRA==] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [02ac68ec-67fb-11e7-8ccf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fb436a1a-68f4-11e7-b15d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer945f11d4/blob945f11d4?comp=blocklist @@ -83,12 +83,12 @@ interactions: body: {string: ''} headers: Content-MD5: [GD5pABqdSyI51XhMKrkBRA==] - Date: ['Thu, 13 Jul 2017 18:42:22 GMT'] - ETag: ['"0x8D4CA1EE6B52A6C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:23 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:46 GMT'] + ETag: ['"0x8D4CB18DFFEE0FE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d43f9f68-0001-0038-0207-fc158d000000] + x-ms-request-id: [86ea40f8-0001-0000-1401-fd54d4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_block_blob.test_put_block_unicode.yaml b/tests/recordings/test_block_blob.test_put_block_unicode.yaml index 79b4ff20..d5e4e534 100644 --- a/tests/recordings/test_block_blob.test_put_block_unicode.yaml +++ b/tests/recordings/test_block_blob.test_put_block_unicode.yaml @@ -1,27 +1,26 @@ interactions: - request: - body: ' - - ' + body: null headers: Connection: [keep-alive] - Content-Length: ['52'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [02e0a486-67fb-11e7-8d14-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:24 GMT'] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [BlockBlob] + x-ms-client-request-id: [fb763546-68f4-11e7-aa15-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainer2e5a0f7f/blob2e5a0f7f?comp=blocklist + uri: https://storagename.blob.core.windows.net/utcontainer2e5a0f7f/blob2e5a0f7f response: body: {string: ''} headers: - Content-MD5: [NgbQHgw94OQ3P8fSkY5Pxg==] - Date: ['Thu, 13 Jul 2017 18:42:23 GMT'] - ETag: ['"0x8D4CA1EE6FB8EF1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:23 GMT'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Date: ['Sat, 15 Jul 2017 00:31:47 GMT'] + ETag: ['"0x8D4CB18E0403BD9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [84320bd7-0001-00d8-1407-fcf305000000] + x-ms-request-id: [d6b33cf6-0001-00c0-0801-fdde90000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_block_blob.test_put_block_with_md5.yaml b/tests/recordings/test_block_blob.test_put_block_with_md5.yaml index b6f911a0..037d8bf3 100644 --- a/tests/recordings/test_block_blob.test_put_block_with_md5.yaml +++ b/tests/recordings/test_block_blob.test_put_block_with_md5.yaml @@ -1,27 +1,26 @@ interactions: - request: - body: ' - - ' + body: null headers: Connection: [keep-alive] - Content-Length: ['52'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [032689f6-67fb-11e7-8823-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:24 GMT'] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [BlockBlob] + x-ms-client-request-id: [fbb7818c-68f4-11e7-8428-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainer3e2f0fb9/blob3e2f0fb9?comp=blocklist + uri: https://storagename.blob.core.windows.net/utcontainer3e2f0fb9/blob3e2f0fb9 response: body: {string: ''} headers: - Content-MD5: [NgbQHgw94OQ3P8fSkY5Pxg==] - Date: ['Thu, 13 Jul 2017 18:42:24 GMT'] - ETag: ['"0x8D4CA1EE74A325C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:24 GMT'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Date: ['Sat, 15 Jul 2017 00:31:46 GMT'] + ETag: ['"0x8D4CB18E0820BF9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [32482ee9-0001-0088-6807-fcec0d000000] + x-ms-request-id: [54ee22ef-0001-0069-6101-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -31,9 +30,9 @@ interactions: Connection: [keep-alive] Content-Length: ['5'] Content-MD5: [FFEfL1VkZQ0SnKfKvDMyeA==] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0348c168-67fb-11e7-9d6f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:24 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fbce2fc6-68f4-11e7-8c65-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer3e2f0fb9/blob3e2f0fb9?comp=block&blockid=MQ%3D%3D @@ -41,10 +40,10 @@ interactions: body: {string: ''} headers: Content-MD5: [FFEfL1VkZQ0SnKfKvDMyeA==] - Date: ['Thu, 13 Jul 2017 18:42:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [32482efd-0001-0088-7a07-fcec0d000000] + x-ms-request-id: [54ee2305-0001-0069-7501-fd0b78000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_client.test_request_callback_signed_header.yaml b/tests/recordings/test_client.test_request_callback_signed_header.yaml index c547f0ed..0f239860 100644 --- a/tests/recordings/test_client.test_request_callback_signed_header.yaml +++ b/tests/recordings/test_client.test_request_callback_signed_header.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [036a5424-67fb-11e7-8524-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:24 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fbedc0be-68f4-11e7-9213-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:46 GMT'] x-ms-meta-hello: [world] x-ms-version: ['2017-04-17'] method: PUT @@ -14,35 +14,35 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:42:23 GMT'] - ETag: ['"0x8D4CA1EE777B43A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:47 GMT'] + ETag: ['"0x8D4CB18E0D0E940"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8cdd4078-0001-007b-2e07-fc3f64000000] + x-ms-request-id: [b4be980b-0001-00fe-3101-fd68b1000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [037f7930-67fb-11e7-a5a3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fc0d361a-68f4-11e7-b831-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:46 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/contce2f1322?restype=container&comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:42:23 GMT'] - ETag: ['"0x8D4CA1EE777B43A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:47 GMT'] + ETag: ['"0x8D4CB18E0D0E940"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-hello: [world] - x-ms-request-id: [8cdd408f-0001-007b-4207-fc3f64000000] + x-ms-request-id: [b4be981d-0001-00fe-4101-fd68b1000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -50,19 +50,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [038482ae-67fb-11e7-b5d9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fc201b22-68f4-11e7-a13e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:46 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/contce2f1322?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:42:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8cdd4098-0001-007b-4a07-fc3f64000000] + x-ms-request-id: [b4be982f-0001-00fe-4c01-fd68b1000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_client.test_response_callback.yaml b/tests/recordings/test_client.test_response_callback.yaml index 9b3d529b..319aef85 100644 --- a/tests/recordings/test_client.test_response_callback.yaml +++ b/tests/recordings/test_client.test_response_callback.yaml @@ -3,23 +3,23 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [038c50cc-67fb-11e7-a985-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fc283e74-68f4-11e7-ac41-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:46 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/contf4c30de7?restype=container response: body: {string: "\uFEFFContainerNotFoundThe\ - \ specified container does not exist.\nRequestId:e006c5d4-0001-00c4-3207-fc2b12000000\n\ - Time:2017-07-13T18:42:25.3224017Z"} + \ specified container does not exist.\nRequestId:60d7c3a5-0001-0116-6701-fdd31f000000\n\ + Time:2017-07-15T00:31:48.5618157Z"} headers: Content-Length: ['225'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:42:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [e006c5d4-0001-00c4-3207-fc2b12000000] + x-ms-request-id: [60d7c3a5-0001-0116-6701-fdd31f000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified container does not exist.} version: 1 diff --git a/tests/recordings/test_common_blob.test_abort_copy_blob.yaml b/tests/recordings/test_common_blob.test_abort_copy_blob.yaml index 7d65fa10..0a0cf478 100644 --- a/tests/recordings/test_common_blob.test_abort_copy_blob.yaml +++ b/tests/recordings/test_common_blob.test_abort_copy_blob.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [03c4727e-67fb-11e7-81e5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fc5329f4-68f4-11e7-8e61-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://remotestoragename.blob.core.windows.net/remotectnr207e0f24?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:42:25 GMT'] - ETag: ['"0x8D4CA1EE7EBE056"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:48 GMT'] + ETag: ['"0x8D4CB18E15EB2AD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [2d46dc71-0001-0089-7407-fc462e000000] + x-ms-request-id: [f9b2fd04-0001-0035-7b01-fd515f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['8388608'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [03e2e524-67fb-11e7-87f5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:25 GMT'] + x-ms-client-request-id: [fc96b8cc-68f4-11e7-b445-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://remotestoragename.blob.core.windows.net/remotectnr207e0f24/blob207e0f24 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [Q6PGl+1GH5Vz1Um4A88qgw==] - Date: ['Thu, 13 Jul 2017 18:42:26 GMT'] - ETag: ['"0x8D4CA1EE8AFB931"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:49 GMT'] + ETag: ['"0x8D4CB18E2100EB8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [2d46dc95-0001-0089-1307-fc462e000000] + x-ms-request-id: [f9b2fd84-0001-0035-6701-fd515f000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,24 +51,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [049e1812-67fb-11e7-9e52-b8e8564491f6] - x-ms-copy-source: ['https://xclientdev.blob.core.windows.net/remotectnr207e0f24/blob207e0f24?se=2017-07-13T19%3A42%3A27Z&sp=r&sv=2017-04-17&sr=b&sig=ktR2onZBwy78lGnbLGGsWvvMPopxlfaSZaLfodsVFHw%3D'] - x-ms-date: ['Thu, 13 Jul 2017 18:42:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fd54135e-68f4-11e7-ad0e-b8e8564491f6] + x-ms-copy-source: ['https://xclientdev.blob.core.windows.net/remotectnr207e0f24/blob207e0f24?se=2017-07-15T01%3A31%3A48Z&sp=r&sv=2017-04-17&sr=b&sig=ye7cvE3C90IMVxb3LkrHCSeJKFX8cHPG4917YhQan7o%3D'] + x-ms-date: ['Sat, 15 Jul 2017 00:31:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer207e0f24/targetblob response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:42:26 GMT'] - ETag: ['"0x8D4CA1EE90970FD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:49 GMT'] + ETag: ['"0x8D4CB18E24B87F9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-copy-id: [993b9129-8b02-4ea4-8900-fd09ffb56173] + x-ms-copy-id: [9c7f6811-68ed-4a06-ae6a-da04544c5108] x-ms-copy-status: [pending] - x-ms-request-id: [618503fe-0001-004c-4307-fc93cb000000] + x-ms-request-id: [74921be3-0001-006f-4a01-fdfc00000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -76,45 +76,45 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0506c4fa-67fb-11e7-b771-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fd9607dc-68f4-11e7-9a99-b8e8564491f6] x-ms-copy-action: [abort] - x-ms-date: ['Thu, 13 Jul 2017 18:42:27 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:31:49 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainer207e0f24/targetblob?comp=copy©id=993b9129-8b02-4ea4-8900-fd09ffb56173 + uri: https://storagename.blob.core.windows.net/utcontainer207e0f24/targetblob?comp=copy©id=9c7f6811-68ed-4a06-ae6a-da04544c5108 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:42:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [61850501-0001-004c-2107-fc93cb000000] + x-ms-request-id: [74921c9e-0001-006f-7401-fdfc00000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [051412e2-67fb-11e7-9862-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fda69528-68f4-11e7-aab3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:49 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer207e0f24/targetblob response: body: {string: "\uFEFFInvalidRangeThe\ - \ range specified is invalid for the current size of the resource.\nRequestId:6185052a-0001-004c-4607-fc93cb000000\n\ - Time:2017-07-13T18:42:27.3835067Z"} + \ range specified is invalid for the current size of the resource.\nRequestId:74921cdc-0001-006f-2801-fdfc00000000\n\ + Time:2017-07-15T00:31:50.5342869Z"} headers: Content-Length: ['249'] Content-Range: [bytes */0] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:42:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [6185052a-0001-004c-4607-fc93cb000000] + x-ms-request-id: [74921cdc-0001-006f-2801-fdfc00000000] x-ms-version: ['2017-04-17'] status: {code: 416, message: The range specified is invalid for the current size of the resource.} @@ -122,9 +122,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0519296c-67fb-11e7-8492-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [fdac8f52-68f4-11e7-888d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:31:49 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer207e0f24/targetblob @@ -135,20 +135,20 @@ interactions: Content-Length: ['0'] Content-MD5: [Q6PGl+1GH5Vz1Um4A88qgw==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:26 GMT'] - ETag: ['"0x8D4CA1EE915CF44"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:31:49 GMT'] + ETag: ['"0x8D4CB18E25A57C8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:31:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] - x-ms-copy-completion-time: ['Thu, 13 Jul 2017 18:42:27 GMT'] - x-ms-copy-id: [993b9129-8b02-4ea4-8900-fd09ffb56173] + x-ms-copy-completion-time: ['Sat, 15 Jul 2017 00:31:50 GMT'] + x-ms-copy-id: [9c7f6811-68ed-4a06-ae6a-da04544c5108] x-ms-copy-progress: [0/8388608] - x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnr207e0f24/blob207e0f24?se=2017-07-13T19%3A42%3A27Z&sp=r&sv=2017-04-17&sr=b&sig=ktR2onZBwy78lGnbLGGsWvvMPopxlfaSZaLfodsVFHw%3D'] + x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnr207e0f24/blob207e0f24?se=2017-07-15T01%3A31%3A48Z&sp=r&sv=2017-04-17&sr=b&sig=ye7cvE3C90IMVxb3LkrHCSeJKFX8cHPG4917YhQan7o%3D'] x-ms-copy-status: [aborted] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [61850537-0001-004c-5307-fc93cb000000] + x-ms-request-id: [74921d00-0001-006f-4701-fdfc00000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_common_blob.test_abort_copy_blob_with_synchronous_copy_fails.yaml b/tests/recordings/test_common_blob.test_abort_copy_blob_with_synchronous_copy_fails.yaml index 0cf7cb6d..31d681ba 100644 --- a/tests/recordings/test_common_blob.test_abort_copy_blob_with_synchronous_copy_fails.yaml +++ b/tests/recordings/test_common_blob.test_abort_copy_blob_with_synchronous_copy_fails.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [0e425c98-67fb-11e7-95a8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:43 GMT'] + x-ms-client-request-id: [05db9664-68f5-11e7-b3fc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer741a1af1/blob741a1af1 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [mrrQXfFriRkYM/bJ6E6+kg==] - Date: ['Thu, 13 Jul 2017 18:42:42 GMT'] - ETag: ['"0x8D4CA1EF259C7CB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:04 GMT'] + ETag: ['"0x8D4CB18EAA5C433"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [de61fd57-0001-009c-6e07-fc2f69000000] + x-ms-request-id: [38e58ebc-0001-009c-3801-fd2f69000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,24 +47,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0e579f5e-67fb-11e7-be26-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [05f00914-68f5-11e7-8322-b8e8564491f6] x-ms-copy-source: ['https://xclientdev3.blob.core.windows.net/utcontainer741a1af1/blob741a1af1'] - x-ms-date: ['Thu, 13 Jul 2017 18:42:43 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:32:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer741a1af1/targetblob response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:42:42 GMT'] - ETag: ['"0x8D4CA1EF267D418"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:04 GMT'] + ETag: ['"0x8D4CB18EAACF177"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-copy-id: [35829483-6b04-45fe-b82a-d1c80707693a] + x-ms-copy-id: [5f32a7c0-1c70-45bb-bfb2-b6b8878ede86] x-ms-copy-status: [success] - x-ms-request-id: [de61fd74-0001-009c-0507-fc2f69000000] + x-ms-request-id: [38e58ec5-0001-009c-3f01-fd2f69000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -72,23 +72,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0e687fb8-67fb-11e7-96be-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [05f8b99c-68f5-11e7-8aec-b8e8564491f6] x-ms-copy-action: [abort] - x-ms-date: ['Thu, 13 Jul 2017 18:42:43 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:32:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainer741a1af1/targetblob?comp=copy©id=35829483-6b04-45fe-b82a-d1c80707693a + uri: https://storagename.blob.core.windows.net/utcontainer741a1af1/targetblob?comp=copy©id=5f32a7c0-1c70-45bb-bfb2-b6b8878ede86 response: body: {string: "\uFEFFNoPendingCopyOperationThere\ - \ is currently no pending copy operation.\nRequestId:de61fdbb-0001-009c-4307-fc2f69000000\n\ - Time:2017-07-13T18:42:43.3702241Z"} + \ is currently no pending copy operation.\nRequestId:38e58ed6-0001-009c-4c01-fd2f69000000\n\ + Time:2017-07-15T00:32:05.1142235Z"} headers: Content-Length: ['236'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:42:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [de61fdbb-0001-009c-4307-fc2f69000000] + x-ms-request-id: [38e58ed6-0001-009c-4c01-fd2f69000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: There is currently no pending copy operation.} version: 1 diff --git a/tests/recordings/test_common_blob.test_blob_container_not_exists.yaml b/tests/recordings/test_common_blob.test_blob_container_not_exists.yaml index 6a5fb10b..8ec5cfa9 100644 --- a/tests/recordings/test_common_blob.test_blob_container_not_exists.yaml +++ b/tests/recordings/test_common_blob.test_blob_container_not_exists.yaml @@ -3,20 +3,20 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0ebc37de-67fb-11e7-a465-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0652c036-68f5-11e7-b409-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:04 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/containerce1c1364/blobce1c1364 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:42:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [61d7757f-0001-0136-4207-fcbfd3000000] + x-ms-request-id: [858ca1cd-0001-0139-3a01-fd5225000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified container does not exist.} version: 1 diff --git a/tests/recordings/test_common_blob.test_blob_exists.yaml b/tests/recordings/test_common_blob.test_blob_exists.yaml index 4948f478..350875a1 100644 --- a/tests/recordings/test_common_blob.test_blob_exists.yaml +++ b/tests/recordings/test_common_blob.test_blob_exists.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [0efaf12c-67fb-11e7-ba9b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:44 GMT'] + x-ms-client-request-id: [06906fc6-68f5-11e7-bd2d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:04 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere6330d92/blobe6330d92 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [aiU5QR0+yA5dHZmuBnpSdw==] - Date: ['Thu, 13 Jul 2017 18:42:44 GMT'] - ETag: ['"0x8D4CA1EF3139C60"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:04 GMT'] + ETag: ['"0x8D4CB18EB5A417D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [69db1349-0001-0122-4f07-fc7cb7000000] + x-ms-request-id: [113a49d0-0001-0006-0a01-fda3ac000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -46,9 +46,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0f10ece8-67fb-11e7-8dd1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [06a71c30-68f5-11e7-b6be-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:04 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainere6330d92/blobe6330d92 @@ -59,15 +59,15 @@ interactions: Content-Length: ['1024'] Content-MD5: [aiU5QR0+yA5dHZmuBnpSdw==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:42:44 GMT'] - ETag: ['"0x8D4CA1EF3139C60"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:04 GMT'] + ETag: ['"0x8D4CB18EB5A417D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [69db1358-0001-0122-5b07-fc7cb7000000] + x-ms-request-id: [113a49dd-0001-0006-1501-fda3ac000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_common_blob.test_blob_not_exists.yaml b/tests/recordings/test_common_blob.test_blob_not_exists.yaml index 238e55f1..4538b5ca 100644 --- a/tests/recordings/test_common_blob.test_blob_not_exists.yaml +++ b/tests/recordings/test_common_blob.test_blob_not_exists.yaml @@ -3,20 +3,20 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0f486ad8-67fb-11e7-b45b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [06d9f206-68f5-11e7-801a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:04 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer20760f42/blob20760f42 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:42:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [072d7ceb-0001-0096-1107-fc36e0000000] + x-ms-request-id: [93cc4e6a-0001-0117-6601-fdd2e2000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified blob does not exist.} version: 1 diff --git a/tests/recordings/test_common_blob.test_copy_blob_async_private_blob.yaml b/tests/recordings/test_common_blob.test_copy_blob_async_private_blob.yaml index ec6b2b65..66322f34 100644 --- a/tests/recordings/test_common_blob.test_copy_blob_async_private_blob.yaml +++ b/tests/recordings/test_common_blob.test_copy_blob_async_private_blob.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0f86a0dc-67fb-11e7-967c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [071aeaf4-68f5-11e7-bc1d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://remotestoragename.blob.core.windows.net/remotectnrb941482?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:42:45 GMT'] - ETag: ['"0x8D4CA1EF3FFC872"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:05 GMT'] + ETag: ['"0x8D4CB18EBB9C7EA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c1883233-0001-001b-6d07-fcd198000000] + x-ms-request-id: [c2e8b2b8-0001-001b-3f01-fdd198000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['8388608'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [0f9bfb46-67fb-11e7-83ac-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:42:45 GMT'] + x-ms-client-request-id: [0731c1be-68f5-11e7-b0d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://remotestoragename.blob.core.windows.net/remotectnrb941482/blobb941482 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [Q6PGl+1GH5Vz1Um4A88qgw==] - Date: ['Thu, 13 Jul 2017 18:42:46 GMT'] - ETag: ['"0x8D4CA1EF444A8C9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:42:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:06 GMT'] + ETag: ['"0x8D4CB18EC90EE43"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c1883267-0001-001b-1e07-fcd198000000] + x-ms-request-id: [c2e8b2ef-0001-001b-6c01-fdd198000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,23 +51,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1019d64a-67fb-11e7-adf8-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [07d51594-68f5-11e7-80fc-b8e8564491f6] x-ms-copy-source: ['https://xclientdev.blob.core.windows.net/remotectnrb941482/blobb941482'] - x-ms-date: ['Thu, 13 Jul 2017 18:42:46 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:32:06 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb941482/targetblob response: body: {string: "\uFEFFCannotVerifyCopySourceThe\ - \ specified resource does not exist.\nRequestId:f78b49c0-0001-0017-7607-fc94b7000000\n\ - Time:2017-07-13T18:42:45.7535742Z"} + \ specified resource does not exist.\nRequestId:738d1eaa-0001-0088-4301-fdec0d000000\n\ + Time:2017-07-15T00:32:07.8612650Z"} headers: Content-Length: ['229'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:42:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [f78b49c0-0001-0017-7607-fc94b7000000] + x-ms-request-id: [738d1eaa-0001-0088-4301-fdec0d000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified resource does not exist.} version: 1 diff --git a/tests/recordings/test_common_blob.test_copy_blob_async_private_blob_with_sas.yaml b/tests/recordings/test_common_blob.test_copy_blob_async_private_blob_with_sas.yaml index b864f640..4831da38 100644 --- a/tests/recordings/test_common_blob.test_copy_blob_async_private_blob_with_sas.yaml +++ b/tests/recordings/test_common_blob.test_copy_blob_async_private_blob_with_sas.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1953a068-67fb-11e7-9e3b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:43:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [1010026e-68f5-11e7-ae58-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://remotestoragename.blob.core.windows.net/remotectnrd6de1843?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:43:02 GMT'] - ETag: ['"0x8D4CA1EFDAFC763"'] - Last-Modified: ['Thu, 13 Jul 2017 18:43:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:20 GMT'] + ETag: ['"0x8D4CB18F4CFBBA2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [614dce22-0001-0088-5607-fc47d3000000] + x-ms-request-id: [0c75834c-0001-0015-6f01-fd3d93000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['8388608'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [19684164-67fb-11e7-945a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:43:01 GMT'] + x-ms-client-request-id: [1026564a-68f5-11e7-9805-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [Q6PGl+1GH5Vz1Um4A88qgw==] - Date: ['Thu, 13 Jul 2017 18:43:02 GMT'] - ETag: ['"0x8D4CA1EFE11286D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:43:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:22 GMT'] + ETag: ['"0x8D4CB18F5C992B9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [614dce48-0001-0088-7807-fc47d3000000] + x-ms-request-id: [0c758385-0001-0015-1d01-fd3d93000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,33 +51,33 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [19e6ecba-67fb-11e7-9b7a-b8e8564491f6] - x-ms-copy-source: ['https://xclientdev.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-13T19%3A43%3A02Z&sp=r&sv=2017-04-17&sr=b&sig=6KCCFah/w7fuCUmfhAhwNl2joKGZHx%2BxKtfqoMNTYT8%3D'] - x-ms-date: ['Thu, 13 Jul 2017 18:43:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [110efc1a-68f5-11e7-894a-b8e8564491f6] + x-ms-copy-source: ['https://xclientdev.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-15T01%3A32%3A22Z&sp=r&sv=2017-04-17&sr=b&sig=KzDBH0JZ0i1uGMHkhO6WbQ%2BUAPhBHAlJdvQHoS8GAAU%3D'] + x-ms-date: ['Sat, 15 Jul 2017 00:32:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd6de1843/targetblob response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:43:02 GMT'] - ETag: ['"0x8D4CA1EFE0EE2E7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:43:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:22 GMT'] + ETag: ['"0x8D4CB18F5DF176F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-copy-id: [bc46594c-4d83-448e-a0ee-46317ccabc30] + x-ms-copy-id: [eac1b8a7-4b41-46aa-b43f-7eb2413f3b8a] x-ms-copy-status: [pending] - x-ms-request-id: [f5e8276e-0001-0115-4207-fcd018000000] + x-ms-request-id: [21ba73a8-0001-0026-3501-fdcf60000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1a0c4bc6-67fb-11e7-8f00-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:43:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [11296886-68f5-11e7-9ce9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:22 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd6de1843/targetblob @@ -88,19 +88,19 @@ interactions: Content-Length: ['0'] Content-MD5: [Q6PGl+1GH5Vz1Um4A88qgw==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:43:02 GMT'] - ETag: ['"0x8D4CA1EFE0EE2E7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:43:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:22 GMT'] + ETag: ['"0x8D4CB18F5DF176F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] - x-ms-copy-id: [bc46594c-4d83-448e-a0ee-46317ccabc30] + x-ms-copy-id: [eac1b8a7-4b41-46aa-b43f-7eb2413f3b8a] x-ms-copy-progress: [0/8388608] - x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-13T19%3A43%3A02Z&sp=r&sv=2017-04-17&sr=b&sig=6KCCFah/w7fuCUmfhAhwNl2joKGZHx%2BxKtfqoMNTYT8%3D'] + x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-15T01%3A32%3A22Z&sp=r&sv=2017-04-17&sr=b&sig=KzDBH0JZ0i1uGMHkhO6WbQ%2BUAPhBHAlJdvQHoS8GAAU%3D'] x-ms-copy-status: [pending] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f5e827a7-0001-0115-7307-fcd018000000] + x-ms-request-id: [21ba73c3-0001-0026-4f01-fdcf60000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -108,9 +108,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1da5b5e2-67fb-11e7-8b86-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:43:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [14c32dd8-68f5-11e7-92ab-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:28 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd6de1843/targetblob @@ -121,19 +121,19 @@ interactions: Content-Length: ['0'] Content-MD5: [Q6PGl+1GH5Vz1Um4A88qgw==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:43:08 GMT'] - ETag: ['"0x8D4CA1EFE0EE2E7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:43:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:28 GMT'] + ETag: ['"0x8D4CB18F5DF176F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] - x-ms-copy-id: [bc46594c-4d83-448e-a0ee-46317ccabc30] + x-ms-copy-id: [eac1b8a7-4b41-46aa-b43f-7eb2413f3b8a] x-ms-copy-progress: [0/8388608] - x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-13T19%3A43%3A02Z&sp=r&sv=2017-04-17&sr=b&sig=6KCCFah/w7fuCUmfhAhwNl2joKGZHx%2BxKtfqoMNTYT8%3D'] + x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-15T01%3A32%3A22Z&sp=r&sv=2017-04-17&sr=b&sig=KzDBH0JZ0i1uGMHkhO6WbQ%2BUAPhBHAlJdvQHoS8GAAU%3D'] x-ms-copy-status: [pending] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f5e83101-0001-0115-0b07-fcd018000000] + x-ms-request-id: [21ba7f1b-0001-0026-0601-fdcf60000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -141,9 +141,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [213edf10-67fb-11e7-94a0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:43:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [185c4d06-68f5-11e7-be55-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:34 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd6de1843/targetblob @@ -154,19 +154,19 @@ interactions: Content-Length: ['0'] Content-MD5: [Q6PGl+1GH5Vz1Um4A88qgw==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:43:14 GMT'] - ETag: ['"0x8D4CA1EFE0EE2E7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:43:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:35 GMT'] + ETag: ['"0x8D4CB18F5DF176F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] - x-ms-copy-id: [bc46594c-4d83-448e-a0ee-46317ccabc30] + x-ms-copy-id: [eac1b8a7-4b41-46aa-b43f-7eb2413f3b8a] x-ms-copy-progress: [0/8388608] - x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-13T19%3A43%3A02Z&sp=r&sv=2017-04-17&sr=b&sig=6KCCFah/w7fuCUmfhAhwNl2joKGZHx%2BxKtfqoMNTYT8%3D'] + x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-15T01%3A32%3A22Z&sp=r&sv=2017-04-17&sr=b&sig=KzDBH0JZ0i1uGMHkhO6WbQ%2BUAPhBHAlJdvQHoS8GAAU%3D'] x-ms-copy-status: [pending] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f5e83a9e-0001-0115-8007-fcd018000000] + x-ms-request-id: [21ba8ad0-0001-0026-7601-fdcf60000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -174,9 +174,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [24d807be-67fb-11e7-8720-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:43:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [1bf5d6a8-68f5-11e7-8139-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:40 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd6de1843/targetblob @@ -187,19 +187,19 @@ interactions: Content-Length: ['0'] Content-MD5: [Q6PGl+1GH5Vz1Um4A88qgw==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:43:20 GMT'] - ETag: ['"0x8D4CA1EFE0EE2E7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:43:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:41 GMT'] + ETag: ['"0x8D4CB18F5DF176F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] - x-ms-copy-id: [bc46594c-4d83-448e-a0ee-46317ccabc30] + x-ms-copy-id: [eac1b8a7-4b41-46aa-b43f-7eb2413f3b8a] x-ms-copy-progress: [0/8388608] - x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-13T19%3A43%3A02Z&sp=r&sv=2017-04-17&sr=b&sig=6KCCFah/w7fuCUmfhAhwNl2joKGZHx%2BxKtfqoMNTYT8%3D'] + x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-15T01%3A32%3A22Z&sp=r&sv=2017-04-17&sr=b&sig=KzDBH0JZ0i1uGMHkhO6WbQ%2BUAPhBHAlJdvQHoS8GAAU%3D'] x-ms-copy-status: [pending] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f5e842de-0001-0115-2f07-fcd018000000] + x-ms-request-id: [21ba9598-0001-0026-7f01-fdcf60000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -207,9 +207,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [287110b4-67fb-11e7-9ce0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:43:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [1f8f489e-68f5-11e7-a3f8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:46 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd6de1843/targetblob @@ -220,19 +220,19 @@ interactions: Content-Length: ['0'] Content-MD5: [Q6PGl+1GH5Vz1Um4A88qgw==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:43:26 GMT'] - ETag: ['"0x8D4CA1EFE0EE2E7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:43:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:47 GMT'] + ETag: ['"0x8D4CB18F5DF176F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] - x-ms-copy-id: [bc46594c-4d83-448e-a0ee-46317ccabc30] + x-ms-copy-id: [eac1b8a7-4b41-46aa-b43f-7eb2413f3b8a] x-ms-copy-progress: [0/8388608] - x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-13T19%3A43%3A02Z&sp=r&sv=2017-04-17&sr=b&sig=6KCCFah/w7fuCUmfhAhwNl2joKGZHx%2BxKtfqoMNTYT8%3D'] + x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-15T01%3A32%3A22Z&sp=r&sv=2017-04-17&sr=b&sig=KzDBH0JZ0i1uGMHkhO6WbQ%2BUAPhBHAlJdvQHoS8GAAU%3D'] x-ms-copy-status: [pending] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f5e84c50-0001-0115-0e07-fcd018000000] + x-ms-request-id: [21ba9fe7-0001-0026-0d01-fdcf60000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -240,9 +240,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [2c0a936c-67fb-11e7-8d77-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:43:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [232cdb24-68f5-11e7-99f5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:52 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd6de1843/targetblob @@ -253,19 +253,19 @@ interactions: Content-Length: ['0'] Content-MD5: [Q6PGl+1GH5Vz1Um4A88qgw==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:43:32 GMT'] - ETag: ['"0x8D4CA1EFE0EE2E7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:43:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:53 GMT'] + ETag: ['"0x8D4CB18F5DF176F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] - x-ms-copy-id: [bc46594c-4d83-448e-a0ee-46317ccabc30] + x-ms-copy-id: [eac1b8a7-4b41-46aa-b43f-7eb2413f3b8a] x-ms-copy-progress: [0/8388608] - x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-13T19%3A43%3A02Z&sp=r&sv=2017-04-17&sr=b&sig=6KCCFah/w7fuCUmfhAhwNl2joKGZHx%2BxKtfqoMNTYT8%3D'] + x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-15T01%3A32%3A22Z&sp=r&sv=2017-04-17&sr=b&sig=KzDBH0JZ0i1uGMHkhO6WbQ%2BUAPhBHAlJdvQHoS8GAAU%3D'] x-ms-copy-status: [pending] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f5e85569-0001-0115-0f07-fcd018000000] + x-ms-request-id: [21baab42-0001-0026-2c01-fdcf60000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -273,9 +273,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [2fa4129e-67fb-11e7-9d52-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:43:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [26c60080-68f5-11e7-aebb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:32:58 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd6de1843/targetblob @@ -286,19 +286,19 @@ interactions: Content-Length: ['0'] Content-MD5: [Q6PGl+1GH5Vz1Um4A88qgw==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:43:38 GMT'] - ETag: ['"0x8D4CA1EFE0EE2E7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:43:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:32:59 GMT'] + ETag: ['"0x8D4CB18F5DF176F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:32:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] - x-ms-copy-id: [bc46594c-4d83-448e-a0ee-46317ccabc30] + x-ms-copy-id: [eac1b8a7-4b41-46aa-b43f-7eb2413f3b8a] x-ms-copy-progress: [0/8388608] - x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-13T19%3A43%3A02Z&sp=r&sv=2017-04-17&sr=b&sig=6KCCFah/w7fuCUmfhAhwNl2joKGZHx%2BxKtfqoMNTYT8%3D'] + x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-15T01%3A32%3A22Z&sp=r&sv=2017-04-17&sr=b&sig=KzDBH0JZ0i1uGMHkhO6WbQ%2BUAPhBHAlJdvQHoS8GAAU%3D'] x-ms-copy-status: [pending] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f5e85e6a-0001-0115-1507-fcd018000000] + x-ms-request-id: [21bab734-0001-0026-1501-fdcf60000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -306,9 +306,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [333ce5b8-67fb-11e7-8ce2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:43:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2a5f2a34-68f5-11e7-919a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:04 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd6de1843/targetblob @@ -319,20 +319,20 @@ interactions: Content-Length: ['8388608'] Content-MD5: [Q6PGl+1GH5Vz1Um4A88qgw==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:43:44 GMT'] - ETag: ['"0x8D4CA1F15E1D8E2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:43:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:05 GMT'] + ETag: ['"0x8D4CB190D38ED66"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:02 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] - x-ms-copy-completion-time: ['Thu, 13 Jul 2017 18:43:42 GMT'] - x-ms-copy-id: [bc46594c-4d83-448e-a0ee-46317ccabc30] + x-ms-copy-completion-time: ['Sat, 15 Jul 2017 00:33:02 GMT'] + x-ms-copy-id: [eac1b8a7-4b41-46aa-b43f-7eb2413f3b8a] x-ms-copy-progress: [8388608/8388608] - x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-13T19%3A43%3A02Z&sp=r&sv=2017-04-17&sr=b&sig=6KCCFah/w7fuCUmfhAhwNl2joKGZHx%2BxKtfqoMNTYT8%3D'] + x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-15T01%3A32%3A22Z&sp=r&sv=2017-04-17&sr=b&sig=KzDBH0JZ0i1uGMHkhO6WbQ%2BUAPhBHAlJdvQHoS8GAAU%3D'] x-ms-copy-status: [success] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f5e8678c-0001-0115-1a07-fcd018000000] + x-ms-request-id: [21bac258-0001-0026-7901-fdcf60000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -340,9 +340,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [33424008-67fb-11e7-ba8c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:43:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2a646ca4-68f5-11e7-bccc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:04 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -354,21 +354,21 @@ interactions: Content-Length: ['8388608'] Content-Range: [bytes 0-8388607/8388608] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:43:44 GMT'] - ETag: ['"0x8D4CA1F15E1D8E2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:43:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:05 GMT'] + ETag: ['"0x8D4CB190D38ED66"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:02 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [Q6PGl+1GH5Vz1Um4A88qgw==] x-ms-blob-type: [BlockBlob] - x-ms-copy-completion-time: ['Thu, 13 Jul 2017 18:43:42 GMT'] - x-ms-copy-id: [bc46594c-4d83-448e-a0ee-46317ccabc30] + x-ms-copy-completion-time: ['Sat, 15 Jul 2017 00:33:02 GMT'] + x-ms-copy-id: [eac1b8a7-4b41-46aa-b43f-7eb2413f3b8a] x-ms-copy-progress: [8388608/8388608] - x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-13T19%3A43%3A02Z&sp=r&sv=2017-04-17&sr=b&sig=6KCCFah/w7fuCUmfhAhwNl2joKGZHx%2BxKtfqoMNTYT8%3D'] + x-ms-copy-source: ['https://remotestoragename.blob.core.windows.net/remotectnrd6de1843/blobd6de1843?se=2017-07-15T01%3A32%3A22Z&sp=r&sv=2017-04-17&sr=b&sig=KzDBH0JZ0i1uGMHkhO6WbQ%2BUAPhBHAlJdvQHoS8GAAU%3D'] x-ms-copy-status: [success] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f5e8679c-0001-0115-2707-fcd018000000] + x-ms-request-id: [21bac268-0001-0026-0701-fdcf60000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_common_blob.test_copy_blob_with_existing_blob.yaml b/tests/recordings/test_common_blob.test_copy_blob_with_existing_blob.yaml index 2fa9a88c..364806eb 100644 --- a/tests/recordings/test_common_blob.test_copy_blob_with_existing_blob.yaml +++ b/tests/recordings/test_common_blob.test_copy_blob_with_existing_blob.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [472a1a1e-67fb-11e7-976e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:18 GMT'] + x-ms-client-request-id: [3c249d4c-68f5-11e7-b73e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerc531490/blobc531490 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [TSFF5HknKip3wnDvBh9w8g==] - Date: ['Thu, 13 Jul 2017 18:44:17 GMT'] - ETag: ['"0x8D4CA1F2B3FDB0C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:34 GMT'] + ETag: ['"0x8D4CB1920EE14D4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1a4113e4-0001-00b1-1508-fcaca9000000] + x-ms-request-id: [91344dc9-0001-0074-3e01-fdd292000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,33 +47,33 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [473d5c28-67fb-11e7-a517-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3c398a06-68f5-11e7-8991-b8e8564491f6] x-ms-copy-source: ['https://xclientdev3.blob.core.windows.net/utcontainerc531490/blobc531490'] - x-ms-date: ['Thu, 13 Jul 2017 18:44:18 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:33:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerc531490/blob1copy response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:18 GMT'] - ETag: ['"0x8D4CA1F2B477DB3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:34 GMT'] + ETag: ['"0x8D4CB1920F5DE87"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-copy-id: [f31d6d0d-7137-41af-ba06-5bbdd9de6f93] + x-ms-copy-id: [4bfcb371-21cf-4d65-a964-ae115c6ddb13] x-ms-copy-status: [success] - x-ms-request-id: [1a4113eb-0001-00b1-1b08-fcaca9000000] + x-ms-request-id: [91344dda-0001-0074-4c01-fdd292000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4744da66-67fb-11e7-ae8c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3c4289ec-68f5-11e7-b834-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:34 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -104,21 +104,21 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:18 GMT'] - ETag: ['"0x8D4CA1F2B477DB3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:34 GMT'] + ETag: ['"0x8D4CB1920F5DE87"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [TSFF5HknKip3wnDvBh9w8g==] x-ms-blob-type: [BlockBlob] - x-ms-copy-completion-time: ['Thu, 13 Jul 2017 18:44:18 GMT'] - x-ms-copy-id: [f31d6d0d-7137-41af-ba06-5bbdd9de6f93] + x-ms-copy-completion-time: ['Sat, 15 Jul 2017 00:33:35 GMT'] + x-ms-copy-id: [4bfcb371-21cf-4d65-a964-ae115c6ddb13] x-ms-copy-progress: [1024/1024] x-ms-copy-source: ['https://storagename.blob.core.windows.net/utcontainerc531490/blobc531490'] x-ms-copy-status: [success] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [1a4113f6-0001-00b1-2408-fcaca9000000] + x-ms-request-id: [91344df3-0001-0074-6101-fdd292000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_common_blob.test_create_blob_blob_unicode_data.yaml b/tests/recordings/test_common_blob.test_create_blob_blob_unicode_data.yaml index 07085e7a..c3fc1a4d 100644 --- a/tests/recordings/test_common_blob.test_create_blob_blob_unicode_data.yaml +++ b/tests/recordings/test_common_blob.test_create_blob_blob_unicode_data.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['26'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [477656c2-67fb-11e7-81d0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:19 GMT'] + x-ms-client-request-id: [3c75078c-68f5-11e7-b33b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1c0014a3/blob1c0014a3 @@ -15,12 +15,12 @@ interactions: body: {string: ''} headers: Content-MD5: [aFkhSeVIRnJoB2MmKjC25w==] - Date: ['Thu, 13 Jul 2017 18:44:18 GMT'] - ETag: ['"0x8D4CA1F2B8D93DB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:35 GMT'] + ETag: ['"0x8D4CB1921412637"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:35 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [610a809b-0001-009d-7208-fc2e94000000] + x-ms-request-id: [38ed4aa0-0001-0080-2101-fdf77e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_common_blob.test_create_blob_with_lease_id.yaml b/tests/recordings/test_common_blob.test_create_blob_with_lease_id.yaml index 81d1265e..400c209c 100644 --- a/tests/recordings/test_common_blob.test_create_blob_with_lease_id.yaml +++ b/tests/recordings/test_common_blob.test_create_blob_with_lease_id.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [47b8104c-67fb-11e7-9b53-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:19 GMT'] + x-ms-client-request-id: [3cbdf3b6-68f5-11e7-a237-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainercca01316/blobcca01316 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [vFP6SqbtkCQYAsp91RjugA==] - Date: ['Thu, 13 Jul 2017 18:44:18 GMT'] - ETag: ['"0x8D4CA1F2BCF8AC4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:35 GMT'] + ETag: ['"0x8D4CB19218763FA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [193ebdc7-0001-00d9-4e08-fcf2f8000000] + x-ms-request-id: [f7d21608-0001-0077-4601-fdd195000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [47ccb490-67fb-11e7-8fdb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3cd1f438-68f5-11e7-9848-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:35 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -58,13 +58,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:18 GMT'] - ETag: ['"0x8D4CA1F2BCF8AC4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:35 GMT'] + ETag: ['"0x8D4CB19218763FA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [eccc9ba2-0b1f-4a91-8c85-45ca4f5819f0] - x-ms-request-id: [193ebde1-0001-00d9-6608-fcf2f8000000] + x-ms-lease-id: [a5c635f8-336d-4638-a29a-20513e5cd131] + x-ms-request-id: [f7d2160f-0001-0077-4c01-fdd195000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -72,11 +72,11 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['17'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [47d7449e-67fb-11e7-bc3f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:19 GMT'] - x-ms-lease-id: [eccc9ba2-0b1f-4a91-8c85-45ca4f5819f0] + x-ms-client-request-id: [3cd7926c-68f5-11e7-8208-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:35 GMT'] + x-ms-lease-id: [a5c635f8-336d-4638-a29a-20513e5cd131] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainercca01316/blobcca01316 @@ -84,12 +84,12 @@ interactions: body: {string: ''} headers: Content-MD5: [ADIaUHvbQg271PU8czsVBQ==] - Date: ['Thu, 13 Jul 2017 18:44:19 GMT'] - ETag: ['"0x8D4CA1F2BDFBA7A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:35 GMT'] + ETag: ['"0x8D4CB192192FEE0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [193ebe0d-0001-00d9-0f08-fcf2f8000000] + x-ms-request-id: [f7d21617-0001-0077-5201-fdd195000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -97,10 +97,10 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [47deccd4-67fb-11e7-8704-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:19 GMT'] - x-ms-lease-id: [eccc9ba2-0b1f-4a91-8c85-45ca4f5819f0] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3cdebad8-68f5-11e7-a8df-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:35 GMT'] + x-ms-lease-id: [a5c635f8-336d-4638-a29a-20513e5cd131] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -112,9 +112,9 @@ interactions: Content-Length: ['17'] Content-Range: [bytes 0-16/17] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:19 GMT'] - ETag: ['"0x8D4CA1F2BDFBA7A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:35 GMT'] + ETag: ['"0x8D4CB192192FEE0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [ADIaUHvbQg271PU8czsVBQ==] @@ -122,7 +122,7 @@ interactions: x-ms-lease-duration: [infinite] x-ms-lease-state: [leased] x-ms-lease-status: [locked] - x-ms-request-id: [193ebe29-0001-00d9-2a08-fcf2f8000000] + x-ms-request-id: [f7d21624-0001-0077-5b01-fdd195000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_common_blob.test_create_blob_with_metadata.yaml b/tests/recordings/test_common_blob.test_create_blob_with_metadata.yaml index a0c38233..4d34f9b9 100644 --- a/tests/recordings/test_common_blob.test_create_blob_with_metadata.yaml +++ b/tests/recordings/test_common_blob.test_create_blob_with_metadata.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [481168ec-67fb-11e7-8ba4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:20 GMT'] + x-ms-client-request-id: [3d1287e6-68f5-11e7-8dfb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:35 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -17,12 +17,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:44:19 GMT'] - ETag: ['"0x8D4CA1F2C281AF8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:35 GMT'] + ETag: ['"0x8D4CB1921DCBFBD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [06a0b88c-0001-00ed-2508-fc5d50000000] + x-ms-request-id: [4ad05874-0001-0047-2701-fd8bbf000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -30,24 +30,24 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4825b8d8-67fb-11e7-90f2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3d276670-68f5-11e7-8763-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:36 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerccd51321/blobccd51321?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:19 GMT'] - ETag: ['"0x8D4CA1F2C281AF8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:35 GMT'] + ETag: ['"0x8D4CB1921DCBFBD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [06a0b89d-0001-00ed-3408-fc5d50000000] + x-ms-request-id: [4ad05891-0001-0047-3f01-fd8bbf000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_common_blob.test_create_blob_with_question_mark.yaml b/tests/recordings/test_common_blob.test_create_blob_with_question_mark.yaml index 0c0733e6..a9a7cfd3 100644 --- a/tests/recordings/test_common_blob.test_create_blob_with_question_mark.yaml +++ b/tests/recordings/test_common_blob.test_create_blob_with_question_mark.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [48583ad8-67fb-11e7-8db0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:20 GMT'] + x-ms-client-request-id: [3d582768-68f5-11e7-b497-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer34881562/%3Fques%3Ftion%3F @@ -15,12 +15,12 @@ interactions: body: {string: ''} headers: Content-MD5: [DRsIw0hYkhvHxmKyKKy3ug==] - Date: ['Thu, 13 Jul 2017 18:44:20 GMT'] - ETag: ['"0x8D4CA1F2C6F42F0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:36 GMT'] + ETag: ['"0x8D4CB192221EBDD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dad97739-0001-0101-4d08-fc137c000000] + x-ms-request-id: [70601d5f-0001-007b-0b01-fd3f64000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [486ca4f0-67fb-11e7-8183-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3d6cf74c-68f5-11e7-bfea-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:36 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -42,16 +42,16 @@ interactions: Content-Length: ['3'] Content-Range: [bytes 0-2/3] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:20 GMT'] - ETag: ['"0x8D4CA1F2C6F42F0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:36 GMT'] + ETag: ['"0x8D4CB192221EBDD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [DRsIw0hYkhvHxmKyKKy3ug==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [dad9774b-0001-0101-5c08-fc137c000000] + x-ms-request-id: [70601d74-0001-007b-1f01-fd3f64000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_common_blob.test_create_blob_with_special_chars.yaml b/tests/recordings/test_common_blob.test_create_blob_with_special_chars.yaml index 14171b26..ba09cc83 100644 --- a/tests/recordings/test_common_blob.test_create_blob_with_special_chars.yaml +++ b/tests/recordings/test_common_blob.test_create_blob_with_special_chars.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [48aff0de-67fb-11e7-94d3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + x-ms-client-request-id: [3d9d8f62-68f5-11e7-b32e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32bc1531/-a-a- @@ -15,12 +15,12 @@ interactions: body: {string: ''} headers: Content-MD5: [M21evFQ2U05h0W5j3fyjJw==] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2CC6E899"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:37 GMT'] + ETag: ['"0x8D4CB192267DB71"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b42906-0001-0026-6108-fccf60000000] + x-ms-request-id: [03941603-0001-0073-5002-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [48c46d5c-67fb-11e7-92f6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3db22a30-68f5-11e7-9552-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:36 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -42,16 +42,16 @@ interactions: Content-Length: ['1'] Content-Range: [bytes 0-0/1] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2CC6E899"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:37 GMT'] + ETag: ['"0x8D4CB192267DB71"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [M21evFQ2U05h0W5j3fyjJw==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e5b42923-0001-0026-7b08-fccf60000000] + x-ms-request-id: [03941616-0001-0073-5f02-fd2417000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -60,10 +60,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [48c9f07e-67fb-11e7-b932-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + x-ms-client-request-id: [3dba9d64-68f5-11e7-8fc8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32bc1531/.a.a. @@ -71,12 +71,12 @@ interactions: body: {string: ''} headers: Content-MD5: [UFjxr4OIYz9gnK23WnXcnQ==] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2CD25C5A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:37 GMT'] + ETag: ['"0x8D4CB1922760EDE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b42935-0001-0026-0908-fccf60000000] + x-ms-request-id: [03941630-0001-0073-7602-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -84,9 +84,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [48cfc0f8-67fb-11e7-90b0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3dc15ac8-68f5-11e7-a507-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -98,16 +98,16 @@ interactions: Content-Length: ['1'] Content-Range: [bytes 0-0/1] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2CD25C5A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:37 GMT'] + ETag: ['"0x8D4CB1922760EDE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [UFjxr4OIYz9gnK23WnXcnQ==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e5b4294c-0001-0026-1e08-fccf60000000] + x-ms-request-id: [03941640-0001-0073-0502-fd2417000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -116,10 +116,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [48d4e6b4-67fb-11e7-94b0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + x-ms-client-request-id: [3dc6cccc-68f5-11e7-bf1b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32bc1531/_a_a_ @@ -127,12 +127,12 @@ interactions: body: {string: ''} headers: Content-MD5: [sUp7gFnZwFWVTJJnTOYAMg==] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2CDD33BA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:37 GMT'] + ETag: ['"0x8D4CB1922830996"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b4295b-0001-0026-2c08-fccf60000000] + x-ms-request-id: [03941653-0001-0073-1602-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -140,9 +140,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [48da8d46-67fb-11e7-a55f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3dce062e-68f5-11e7-9814-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -154,16 +154,16 @@ interactions: Content-Length: ['1'] Content-Range: [bytes 0-0/1] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2CDD33BA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:37 GMT'] + ETag: ['"0x8D4CB1922830996"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [sUp7gFnZwFWVTJJnTOYAMg==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e5b4296d-0001-0026-3c08-fccf60000000] + x-ms-request-id: [03941660-0001-0073-2302-fd2417000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -172,10 +172,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [48e0c100-67fb-11e7-bad3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + x-ms-client-request-id: [3dd53c64-68f5-11e7-ba38-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32bc1531/%20a%20a%20 @@ -183,12 +183,12 @@ interactions: body: {string: ''} headers: Content-MD5: [chXunH2dwinSkhpA6JnsXw==] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2CE8CE96"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:37 GMT'] + ETag: ['"0x8D4CB192290A0AE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b4297c-0001-0026-4b08-fccf60000000] + x-ms-request-id: [03941672-0001-0073-3402-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -196,9 +196,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [48e6119e-67fb-11e7-8792-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3ddad746-68f5-11e7-955a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -210,16 +210,16 @@ interactions: Content-Length: ['1'] Content-Range: [bytes 0-0/1] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2CE8CE96"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:37 GMT'] + ETag: ['"0x8D4CB192290A0AE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [chXunH2dwinSkhpA6JnsXw==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e5b42990-0001-0026-5c08-fccf60000000] + x-ms-request-id: [03941684-0001-0073-4302-fd2417000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -228,10 +228,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [48ebaaf4-67fb-11e7-9dd9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + x-ms-client-request-id: [3ddff9c6-68f5-11e7-be78-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32bc1531//a/a/ @@ -239,12 +239,12 @@ interactions: body: {string: ''} headers: Content-MD5: [ZmbNdvlpVkaee+OddQzH2Q==] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2CF3F475"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:37 GMT'] + ETag: ['"0x8D4CB19229B781C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b4299a-0001-0026-6608-fccf60000000] + x-ms-request-id: [03941692-0001-0073-5102-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -252,9 +252,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [48f1ae1e-67fb-11e7-82bd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3de6463a-68f5-11e7-a5e8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -266,16 +266,16 @@ interactions: Content-Length: ['1'] Content-Range: [bytes 0-0/1] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2CF3F475"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:37 GMT'] + ETag: ['"0x8D4CB19229B781C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [ZmbNdvlpVkaee+OddQzH2Q==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e5b429b5-0001-0026-7e08-fccf60000000] + x-ms-request-id: [039416ac-0001-0073-6802-fd2417000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -284,10 +284,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [48f93afa-67fb-11e7-8559-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + x-ms-client-request-id: [3debb62e-68f5-11e7-9e3c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32bc1531/(a(a( @@ -295,12 +295,12 @@ interactions: body: {string: ''} headers: Content-MD5: [hMQEc0FMry7Up7EoPki79A==] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2D01B247"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:37 GMT'] + ETag: ['"0x8D4CB1922A76139"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b429c5-0001-0026-0e08-fccf60000000] + x-ms-request-id: [039416c3-0001-0073-7e02-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -308,9 +308,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [48ff90da-67fb-11e7-9032-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3df279f0-68f5-11e7-a6f4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -322,16 +322,16 @@ interactions: Content-Length: ['1'] Content-Range: [bytes 0-0/1] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2D01B247"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:37 GMT'] + ETag: ['"0x8D4CB1922A76139"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [hMQEc0FMry7Up7EoPki79A==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e5b429dd-0001-0026-2308-fccf60000000] + x-ms-request-id: [039416d5-0001-0073-0e02-fd2417000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -340,10 +340,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [49048040-67fb-11e7-a7ce-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + x-ms-client-request-id: [3df839f8-68f5-11e7-a16b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32bc1531/)a)a) @@ -351,12 +351,12 @@ interactions: body: {string: ''} headers: Content-MD5: [k3HXouOuhqAKq0dx450lXQ==] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2D0CFEF0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:37 GMT'] + ETag: ['"0x8D4CB1922B39874"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b429f0-0001-0026-3408-fccf60000000] + x-ms-request-id: [039416e7-0001-0073-1e02-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -364,9 +364,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [490a5434-67fb-11e7-ba61-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3dff95e8-68f5-11e7-8126-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -378,16 +378,16 @@ interactions: Content-Length: ['1'] Content-Range: [bytes 0-0/1] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2D0CFEF0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:37 GMT'] + ETag: ['"0x8D4CB1922B39874"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [k3HXouOuhqAKq0dx450lXQ==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e5b42a02-0001-0026-4508-fccf60000000] + x-ms-request-id: [03941704-0001-0073-3702-fd2417000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -396,10 +396,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [490fc82e-67fb-11e7-be15-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + x-ms-client-request-id: [3e05ecb0-68f5-11e7-8ae9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32bc1531/$a$a$ @@ -407,12 +407,12 @@ interactions: body: {string: ''} headers: Content-MD5: [w+l91ul/tRJWiMl/NnIMvg==] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2D17FD6C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:38 GMT'] + ETag: ['"0x8D4CB1922C1CBEA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b42a12-0001-0026-5508-fccf60000000] + x-ms-request-id: [0394171d-0001-0073-4e02-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -420,9 +420,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [49157378-67fb-11e7-9210-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3e0caabe-68f5-11e7-83ad-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -434,16 +434,16 @@ interactions: Content-Length: ['1'] Content-Range: [bytes 0-0/1] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2D17FD6C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:38 GMT'] + ETag: ['"0x8D4CB1922C1CBEA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [w+l91ul/tRJWiMl/NnIMvg==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e5b42a23-0001-0026-6608-fccf60000000] + x-ms-request-id: [0394173d-0001-0073-6902-fd2417000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -452,10 +452,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [491b1d00-67fb-11e7-ba7c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + x-ms-client-request-id: [3e127048-68f5-11e7-bbf1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32bc1531/=a=a= @@ -463,12 +463,12 @@ interactions: body: {string: ''} headers: Content-MD5: [Q+w+Xe5ucGr3dm//6lEnIQ==] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2D239843"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:38 GMT'] + ETag: ['"0x8D4CB1922CE0329"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b42a37-0001-0026-7a08-fccf60000000] + x-ms-request-id: [03941752-0001-0073-7c02-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -476,9 +476,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [49215224-67fb-11e7-899e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3e192bf4-68f5-11e7-a6ea-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -490,16 +490,16 @@ interactions: Content-Length: ['1'] Content-Range: [bytes 0-0/1] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2D239843"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:38 GMT'] + ETag: ['"0x8D4CB1922CE0329"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [Q+w+Xe5ucGr3dm//6lEnIQ==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e5b42a4e-0001-0026-1008-fccf60000000] + x-ms-request-id: [03941761-0001-0073-0b02-fd2417000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -508,10 +508,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4926ac10-67fb-11e7-9c2d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:21 GMT'] + x-ms-client-request-id: [3e1ea318-68f5-11e7-8690-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32bc1531/'a'a' @@ -519,12 +519,12 @@ interactions: body: {string: ''} headers: Content-MD5: [NZDLivC7ueeMNDtSuTdzyQ==] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2D2F0C19"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:38 GMT'] + ETag: ['"0x8D4CB1922DAAFB2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b42a61-0001-0026-2108-fccf60000000] + x-ms-request-id: [03941775-0001-0073-1b02-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -532,9 +532,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [492c87c0-67fb-11e7-891e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3e25fc6c-68f5-11e7-ae57-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -546,16 +546,16 @@ interactions: Content-Length: ['1'] Content-Range: [bytes 0-0/1] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2D2F0C19"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:38 GMT'] + ETag: ['"0x8D4CB1922DAAFB2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [NZDLivC7ueeMNDtSuTdzyQ==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e5b42a71-0001-0026-2f08-fccf60000000] + x-ms-request-id: [0394178b-0001-0073-3002-fd2417000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -564,10 +564,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4931b13a-67fb-11e7-9a43-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:22 GMT'] + x-ms-client-request-id: [3e2c0c9c-68f5-11e7-b7ac-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32bc1531/,a,a, @@ -575,12 +575,12 @@ interactions: body: {string: ''} headers: Content-MD5: [wMtfD88jmrPZwfzTH/8e/A==] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2D3A0A7F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:38 GMT'] + ETag: ['"0x8D4CB1922E7AA69"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b42a80-0001-0026-3c08-fccf60000000] + x-ms-request-id: [039417a5-0001-0073-4502-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -588,9 +588,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [493742c8-67fb-11e7-a3c1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3e33ad3a-68f5-11e7-b8d1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -602,16 +602,16 @@ interactions: Content-Length: ['1'] Content-Range: [bytes 0-0/1] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2D3A0A7F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:38 GMT'] + ETag: ['"0x8D4CB1922E7AA69"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [wMtfD88jmrPZwfzTH/8e/A==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e5b42a91-0001-0026-4d08-fccf60000000] + x-ms-request-id: [039417b5-0001-0073-5402-fd2417000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -620,10 +620,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [493c847a-67fb-11e7-9b7b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:22 GMT'] + x-ms-client-request-id: [3e3fafb8-68f5-11e7-a9f0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32bc1531/~a~a~ @@ -631,12 +631,12 @@ interactions: body: {string: ''} headers: Content-MD5: [THYfFw4BaDb/hEmCArmYJw==] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2D4508F7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:38 GMT'] + ETag: ['"0x8D4CB1922FB360C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b42aa7-0001-0026-6108-fccf60000000] + x-ms-request-id: [039417d7-0001-0073-7402-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -644,9 +644,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [49435162-67fb-11e7-9fd9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3e467a00-68f5-11e7-a1b3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:37 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -658,16 +658,16 @@ interactions: Content-Length: ['1'] Content-Range: [bytes 0-0/1] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:21 GMT'] - ETag: ['"0x8D4CA1F2D4508F7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:38 GMT'] + ETag: ['"0x8D4CB1922FB360C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [THYfFw4BaDb/hEmCArmYJw==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e5b42abf-0001-0026-7708-fccf60000000] + x-ms-request-id: [039417e4-0001-0073-0102-fd2417000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_common_blob.test_delete_blob_snapshot.yaml b/tests/recordings/test_common_blob.test_delete_blob_snapshot.yaml index 7178c1ad..29d095c5 100644 --- a/tests/recordings/test_common_blob.test_delete_blob_snapshot.yaml +++ b/tests/recordings/test_common_blob.test_delete_blob_snapshot.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [49879bb0-67fb-11e7-a7d7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:22 GMT'] + x-ms-client-request-id: [3e8c9508-68f5-11e7-a18e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer71231134/blob71231134 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [U0HMSsT1gg81k7Jjdg0eIg==] - Date: ['Thu, 13 Jul 2017 18:44:22 GMT'] - ETag: ['"0x8D4CA1F2D9DC049"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:38 GMT'] + ETag: ['"0x8D4CB192356D480"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4c7bf4c3-0001-005b-4908-fc53a8000000] + x-ms-request-id: [fa282806-0001-001a-6902-fd7bbb000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,22 +47,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [499af9da-67fb-11e7-af65-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3ea2ada2-68f5-11e7-8dfd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer71231134/blob71231134?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:22 GMT'] - ETag: ['"0x8D4CA1F2D9DC049"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:38 GMT'] + ETag: ['"0x8D4CB192356D480"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4c7bf4d0-0001-005b-5508-fc53a8000000] - x-ms-snapshot: ['2017-07-13T18:44:22.4552831Z'] + x-ms-request-id: [fa282812-0001-001a-7302-fd7bbb000000] + x-ms-snapshot: ['2017-07-15T00:33:39.4056881Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -70,46 +70,46 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [49a0fc4a-67fb-11e7-96a5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3eb1e5c6-68f5-11e7-a339-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:38 GMT'] x-ms-version: ['2017-04-17'] method: DELETE - uri: https://storagename.blob.core.windows.net/utcontainer71231134/blob71231134?snapshot=2017-07-13T18%3A44%3A22.4552831Z + uri: https://storagename.blob.core.windows.net/utcontainer71231134/blob71231134?snapshot=2017-07-15T00%3A33%3A39.4056881Z response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4c7bf4e5-0001-005b-6a08-fc53a8000000] + x-ms-request-id: [fa282829-0001-001a-0902-fd7bbb000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [49a6b8cc-67fb-11e7-9937-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3eb773cc-68f5-11e7-9ffa-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:38 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer71231134?restype=container&comp=list&include=snapshots response: body: {string: "\uFEFFblob71231134Thu,\ - \ 13 Jul 2017 18:44:22 GMT0x8D4CA1F2D9DC0491024application/octet-streamblob71231134Sat,\ + \ 15 Jul 2017 00:33:39 GMT0x8D4CB192356D4801024application/octet-streamU0HMSsT1gg81k7Jjdg0eIg==BlockBlobunlockedavailabletrue"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:44:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [4c7bf504-0001-005b-0608-fc53a8000000] + x-ms-request-id: [fa282835-0001-001a-1402-fd7bbb000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_common_blob.test_delete_blob_snapshots.yaml b/tests/recordings/test_common_blob.test_delete_blob_snapshots.yaml index 94025f3d..b2966aaf 100644 --- a/tests/recordings/test_common_blob.test_delete_blob_snapshots.yaml +++ b/tests/recordings/test_common_blob.test_delete_blob_snapshots.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [49db3536-67fb-11e7-b6d0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:23 GMT'] + x-ms-client-request-id: [3ee6d09a-68f5-11e7-98e4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer82ca11a7/blob82ca11a7 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [eBa4anfnB/hbqUY13facjg==] - Date: ['Thu, 13 Jul 2017 18:44:22 GMT'] - ETag: ['"0x8D4CA1F2DF23120"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:39 GMT'] + ETag: ['"0x8D4CB1923BE0DDA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4553f859-0001-0137-7408-fcbe2e000000] + x-ms-request-id: [c37b1feb-0001-012a-1202-fd67c4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,22 +47,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [49efa9b4-67fb-11e7-93cf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3f104a1a-68f5-11e7-9800-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:39 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer82ca11a7/blob82ca11a7?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:22 GMT'] - ETag: ['"0x8D4CA1F2DF23120"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:39 GMT'] + ETag: ['"0x8D4CB1923BE0DDA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4553f86e-0001-0137-0408-fcbe2e000000] - x-ms-snapshot: ['2017-07-13T18:44:23.0126765Z'] + x-ms-request-id: [c37b201f-0001-012a-4002-fd67c4000000] + x-ms-snapshot: ['2017-07-15T00:33:40.1272097Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -70,9 +70,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [49f930cc-67fb-11e7-b423-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3f1689e8-68f5-11e7-bb50-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:39 GMT'] x-ms-delete-snapshots: [only] x-ms-version: ['2017-04-17'] method: DELETE @@ -80,37 +80,37 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4553f88a-0001-0137-1e08-fcbe2e000000] + x-ms-request-id: [c37b202f-0001-012a-4c02-fd67c4000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [49ff560a-67fb-11e7-a544-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3f1c6840-68f5-11e7-a719-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:39 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer82ca11a7?restype=container&comp=list&include=snapshots response: body: {string: "\uFEFFblob82ca11a7Thu,\ - \ 13 Jul 2017 18:44:22 GMT0x8D4CA1F2DF231201024application/octet-streamblob82ca11a7Sat,\ + \ 15 Jul 2017 00:33:40 GMT0x8D4CB1923BE0DDA1024application/octet-streameBa4anfnB/hbqUY13facjg==BlockBlobunlockedavailabletrue"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:44:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [4553f899-0001-0137-2a08-fcbe2e000000] + x-ms-request-id: [c37b203b-0001-012a-5702-fd67c4000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_common_blob.test_delete_blob_with_existing_blob.yaml b/tests/recordings/test_common_blob.test_delete_blob_with_existing_blob.yaml index 8a66f5bb..837a8557 100644 --- a/tests/recordings/test_common_blob.test_delete_blob_with_existing_blob.yaml +++ b/tests/recordings/test_common_blob.test_delete_blob_with_existing_blob.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4a306d08-67fb-11e7-9350-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:23 GMT'] + x-ms-client-request-id: [3f4d6fd0-68f5-11e7-a180-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:39 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer33c61548/blob33c61548 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [pLUU7SjPgOqYWj9eUOUbXg==] - Date: ['Thu, 13 Jul 2017 18:44:23 GMT'] - ETag: ['"0x8D4CA1F2E478C62"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:23 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:41 GMT'] + ETag: ['"0x8D4CB1924178911"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3a6b9d9c-0001-0123-4e08-fc7d4a000000] + x-ms-request-id: [60d83a00-0001-0116-7502-fdd31f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,19 +47,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4a452194-67fb-11e7-a24f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3f635c6e-68f5-11e7-82b7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:39 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/utcontainer33c61548/blob33c61548 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:23 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3a6b9db0-0001-0123-5f08-fc7d4a000000] + x-ms-request-id: [60d83a0d-0001-0116-7f02-fdd31f000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_common_blob.test_delete_blob_with_non_existing_blob.yaml b/tests/recordings/test_common_blob.test_delete_blob_with_non_existing_blob.yaml index c88c022d..2d91c886 100644 --- a/tests/recordings/test_common_blob.test_delete_blob_with_non_existing_blob.yaml +++ b/tests/recordings/test_common_blob.test_delete_blob_with_non_existing_blob.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4a7a4dcc-67fb-11e7-a56c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:24 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3f945774-68f5-11e7-b358-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:40 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/utcontainer8d2416f2/blob8d2416f2 response: body: {string: "\uFEFFBlobNotFoundThe\ - \ specified blob does not exist.\nRequestId:86582a68-0001-0033-2b08-fc0df9000000\n\ - Time:2017-07-13T18:44:24.0822994Z"} + \ specified blob does not exist.\nRequestId:d43975fa-0001-0136-1e02-fdbfd3000000\n\ + Time:2017-07-15T00:33:42.2100868Z"} headers: Content-Length: ['215'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:44:23 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [86582a68-0001-0033-2b08-fc0df9000000] + x-ms-request-id: [d43975fa-0001-0136-1e02-fdbfd3000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified blob does not exist.} version: 1 diff --git a/tests/recordings/test_common_blob.test_delete_blob_with_snapshots.yaml b/tests/recordings/test_common_blob.test_delete_blob_with_snapshots.yaml index 50a60f47..c9888407 100644 --- a/tests/recordings/test_common_blob.test_delete_blob_with_snapshots.yaml +++ b/tests/recordings/test_common_blob.test_delete_blob_with_snapshots.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4abc8e64-67fb-11e7-8c5a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:24 GMT'] + x-ms-client-request-id: [3fd4da7e-68f5-11e7-96c8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere11313c2/blobe11313c2 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [Px8ilXSpWo0wLM9uSFaC8Q==] - Date: ['Thu, 13 Jul 2017 18:44:23 GMT'] - ETag: ['"0x8D4CA1F2ED2F599"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:39 GMT'] + ETag: ['"0x8D4CB19249FE523"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [23a96ee8-0001-0047-7808-fc8bbf000000] + x-ms-request-id: [420ed0c3-0001-008e-7d02-fd1b75000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,22 +47,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4ad05ad4-67fb-11e7-bbe6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:24 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3fea23de-68f5-11e7-9cce-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere11313c2/blobe11313c2?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:23 GMT'] - ETag: ['"0x8D4CA1F2ED2F599"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:39 GMT'] + ETag: ['"0x8D4CB19249FE523"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [23a96ef5-0001-0047-0208-fc8bbf000000] - x-ms-snapshot: ['2017-07-13T18:44:24.4837121Z'] + x-ms-request-id: [420ed0d2-0001-008e-0b02-fd1b75000000] + x-ms-snapshot: ['2017-07-15T00:33:41.5522407Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -70,9 +70,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4ad5faa2-67fb-11e7-9fa4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:24 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3fefdb1c-68f5-11e7-8042-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:40 GMT'] x-ms-delete-snapshots: [include] x-ms-version: ['2017-04-17'] method: DELETE @@ -80,19 +80,19 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:23 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [23a96f01-0001-0047-0e08-fc8bbf000000] + x-ms-request-id: [420ed0e2-0001-008e-1902-fd1b75000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4adf3fc2-67fb-11e7-bbfe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:24 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3ff5bf78-68f5-11e7-b915-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:40 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainere11313c2?restype=container&comp=list&include=snapshots @@ -102,11 +102,11 @@ interactions: utcontainere11313c2\">"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:44:23 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [23a96f1e-0001-0047-2708-fc8bbf000000] + x-ms-request-id: [420ed0f8-0001-008e-2c02-fd1b75000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_common_blob.test_get_blob_metadata.yaml b/tests/recordings/test_common_blob.test_get_blob_metadata.yaml index 92e639d9..cbd6cb51 100644 --- a/tests/recordings/test_common_blob.test_get_blob_metadata.yaml +++ b/tests/recordings/test_common_blob.test_get_blob_metadata.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4b23c34a-67fb-11e7-890a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:25 GMT'] + x-ms-client-request-id: [402af8a8-68f5-11e7-bc63-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer3ed10fd2/blob3ed10fd2 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [/AW9xj3GIWESabWAR32eiA==] - Date: ['Thu, 13 Jul 2017 18:44:24 GMT'] - ETag: ['"0x8D4CA1F2F3A558C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:42 GMT'] + ETag: ['"0x8D4CB1924FC2009"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c410be20-0001-0097-0f08-fc371d000000] + x-ms-request-id: [11ac5ba9-0001-0125-4e02-fd8a32000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -46,22 +46,22 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4b37c598-67fb-11e7-af46-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [40489c98-68f5-11e7-a7ca-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:41 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer3ed10fd2/blob3ed10fd2?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:24 GMT'] - ETag: ['"0x8D4CA1F2F3A558C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:42 GMT'] + ETag: ['"0x8D4CB1924FC2009"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [c410be25-0001-0097-1308-fc371d000000] + x-ms-request-id: [11ac5bc1-0001-0125-6402-fd8a32000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_common_blob.test_get_blob_properties.yaml b/tests/recordings/test_common_blob.test_get_blob_properties.yaml index 48e6bcfd..810eea9f 100644 --- a/tests/recordings/test_common_blob.test_get_blob_properties.yaml +++ b/tests/recordings/test_common_blob.test_get_blob_properties.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4b66e4c2-67fb-11e7-9131-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:25 GMT'] + x-ms-client-request-id: [407e7b38-68f5-11e7-a588-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer60f910de/blob60f910de @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [LmRTI//vjFoYYvbxXFX0iQ==] - Date: ['Thu, 13 Jul 2017 18:44:25 GMT'] - ETag: ['"0x8D4CA1F2F7FF6A3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:41 GMT'] + ETag: ['"0x8D4CB1925482B2E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7204d4df-0001-00bf-2708-fc40a2000000] + x-ms-request-id: [565921b7-0001-0005-6d02-fda0ab000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -46,9 +46,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4b7eef7a-67fb-11e7-9ae2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4092a8f6-68f5-11e7-82b0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:41 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer60f910de/blob60f910de @@ -59,15 +59,15 @@ interactions: Content-Length: ['1024'] Content-MD5: [LmRTI//vjFoYYvbxXFX0iQ==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:25 GMT'] - ETag: ['"0x8D4CA1F2F7FF6A3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:41 GMT'] + ETag: ['"0x8D4CB1925482B2E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [7204d50b-0001-00bf-5008-fc40a2000000] + x-ms-request-id: [565921c2-0001-0005-7502-fda0ab000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_common_blob.test_get_blob_properties_server_encryption.yaml b/tests/recordings/test_common_blob.test_get_blob_properties_server_encryption.yaml index 6b6bfe96..936e74dc 100644 --- a/tests/recordings/test_common_blob.test_get_blob_properties_server_encryption.yaml +++ b/tests/recordings/test_common_blob.test_get_blob_properties_server_encryption.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4bb113d0-67fb-11e7-9d4d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:26 GMT'] + x-ms-client-request-id: [40c3c768-68f5-11e7-8a27-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd858187e/blobd858187e @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [OBx8RJS6KdR7vbJn8WwVfQ==] - Date: ['Thu, 13 Jul 2017 18:44:26 GMT'] - ETag: ['"0x8D4CA1F2FC8302B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:41 GMT'] + ETag: ['"0x8D4CB19258FC8C1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3b61d436-0001-00ab-1c08-fc83c6000000] + x-ms-request-id: [48076b7a-0001-0089-2702-fdedf0000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -46,9 +46,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4bc5e898-67fb-11e7-90d7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [40da74c6-68f5-11e7-9982-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:42 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerd858187e/blobd858187e @@ -59,15 +59,15 @@ interactions: Content-Length: ['1024'] Content-MD5: [OBx8RJS6KdR7vbJn8WwVfQ==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:26 GMT'] - ETag: ['"0x8D4CA1F2FC8302B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:41 GMT'] + ETag: ['"0x8D4CB19258FC8C1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [3b61d44b-0001-00ab-3008-fc83c6000000] + x-ms-request-id: [48076ba0-0001-0089-4402-fdedf0000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_common_blob.test_get_blob_properties_with_leased_blob.yaml b/tests/recordings/test_common_blob.test_get_blob_properties_with_leased_blob.yaml index 5107932b..42245f4c 100644 --- a/tests/recordings/test_common_blob.test_get_blob_properties_with_leased_blob.yaml +++ b/tests/recordings/test_common_blob.test_get_blob_properties_with_leased_blob.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4bf640b8-67fb-11e7-8edb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:26 GMT'] + x-ms-client-request-id: [410ada42-68f5-11e7-a8a5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbe5917c4/blobbe5917c4 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [PYGnvowoF/OfIFuboPcBeQ==] - Date: ['Thu, 13 Jul 2017 18:44:26 GMT'] - ETag: ['"0x8D4CA1F300C233C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:43 GMT'] + ETag: ['"0x8D4CB1925D4CDCE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7f004b6a-0001-00d3-0d08-fceb71000000] + x-ms-request-id: [e51231fb-0001-00d1-3f02-fde98b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4c0bb38a-67fb-11e7-9b67-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [411f90d8-68f5-11e7-99a5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:42 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -58,22 +58,22 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:26 GMT'] - ETag: ['"0x8D4CA1F300C233C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:43 GMT'] + ETag: ['"0x8D4CB1925D4CDCE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [c7f20a3d-8110-4a41-876f-ad01f84339b2] - x-ms-request-id: [7f004b6e-0001-00d3-1008-fceb71000000] + x-ms-lease-id: [ff0c28ea-7448-4709-902c-05198402d4a0] + x-ms-request-id: [e5123225-0001-00d1-6302-fde98b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4c1568f8-67fb-11e7-8612-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [412e16f6-68f5-11e7-b6eb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:42 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerbe5917c4/blobbe5917c4 @@ -84,16 +84,16 @@ interactions: Content-Length: ['1024'] Content-MD5: [PYGnvowoF/OfIFuboPcBeQ==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:26 GMT'] - ETag: ['"0x8D4CA1F300C233C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:43 GMT'] + ETag: ['"0x8D4CB1925D4CDCE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-duration: [infinite] x-ms-lease-state: [leased] x-ms-lease-status: [locked] - x-ms-request-id: [7f004b7c-0001-00d3-1b08-fceb71000000] + x-ms-request-id: [e5123233-0001-00d1-6f02-fde98b000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_common_blob.test_get_blob_properties_with_snapshot.yaml b/tests/recordings/test_common_blob.test_get_blob_properties_with_snapshot.yaml index ec76bf96..ae6bb876 100644 --- a/tests/recordings/test_common_blob.test_get_blob_properties_with_snapshot.yaml +++ b/tests/recordings/test_common_blob.test_get_blob_properties_with_snapshot.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4c4fde48-67fb-11e7-ba1a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:27 GMT'] + x-ms-client-request-id: [415f302e-68f5-11e7-915b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer791e16c8/blob791e16c8 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [rjX7WmUWl1rySy+GI6P8tQ==] - Date: ['Thu, 13 Jul 2017 18:44:26 GMT'] - ETag: ['"0x8D4CA1F3066AF9F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:43 GMT'] + ETag: ['"0x8D4CB1926287B85"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e82e3fdc-0001-0083-3108-fcf479000000] + x-ms-request-id: [24664ba8-0001-00b4-2602-fd58d6000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,64 +47,64 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4c646b38-67fb-11e7-9686-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [417668d4-68f5-11e7-b718-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer791e16c8/blob791e16c8?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:26 GMT'] - ETag: ['"0x8D4CA1F3066AF9F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:43 GMT'] + ETag: ['"0x8D4CB1926287B85"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e82e4007-0001-0083-5408-fcf479000000] - x-ms-snapshot: ['2017-07-13T18:44:27.2026269Z'] + x-ms-request-id: [24664be0-0001-00b4-5a02-fd58d6000000] + x-ms-snapshot: ['2017-07-15T00:33:44.1491196Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4c7511b8-67fb-11e7-8a96-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [417c02ee-68f5-11e7-a295-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:43 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer791e16c8?restype=container&comp=list&include=snapshots response: body: {string: "\uFEFFblob791e16c82017-07-13T18:44:27.2026269ZThu,\ - \ 13 Jul 2017 18:44:27 GMT0x8D4CA1F3066AF9F1024application/octet-streamblob791e16c82017-07-15T00:33:44.1491196ZSat,\ + \ 15 Jul 2017 00:33:44 GMT0x8D4CB1926287B851024application/octet-streamrjX7WmUWl1rySy+GI6P8tQ==BlockBlobtrueblob791e16c8Thu,\ - \ 13 Jul 2017 18:44:27 GMT0x8D4CA1F3066AF9F1024application/octet-streamBlockBlobtrueblob791e16c8Sat,\ + \ 15 Jul 2017 00:33:44 GMT0x8D4CB1926287B851024application/octet-streamrjX7WmUWl1rySy+GI6P8tQ==BlockBlobunlockedavailabletrue"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:44:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [e82e4025-0001-0083-6d08-fcf479000000] + x-ms-request-id: [24664bff-0001-00b4-7602-fd58d6000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4c7a3788-67fb-11e7-952d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4181203a-68f5-11e7-95e4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:43 GMT'] x-ms-version: ['2017-04-17'] method: HEAD - uri: https://storagename.blob.core.windows.net/utcontainer791e16c8/blob791e16c8?snapshot=2017-07-13T18%3A44%3A27.2026269Z + uri: https://storagename.blob.core.windows.net/utcontainer791e16c8/blob791e16c8?snapshot=2017-07-15T00%3A33%3A44.1491196Z response: body: {string: ''} headers: @@ -112,13 +112,13 @@ interactions: Content-Length: ['1024'] Content-MD5: [rjX7WmUWl1rySy+GI6P8tQ==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:27 GMT'] - ETag: ['"0x8D4CA1F3066AF9F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:43 GMT'] + ETag: ['"0x8D4CB1926287B85"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] - x-ms-request-id: [e82e4032-0001-0083-7908-fcf479000000] + x-ms-request-id: [24664c0f-0001-00b4-0402-fd58d6000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_common_blob.test_get_blob_server_encryption.yaml b/tests/recordings/test_common_blob.test_get_blob_server_encryption.yaml index 15fe4e6b..cfc4d1ab 100644 --- a/tests/recordings/test_common_blob.test_get_blob_server_encryption.yaml +++ b/tests/recordings/test_common_blob.test_get_blob_server_encryption.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4cc1e7e8-67fb-11e7-88a9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:28 GMT'] + x-ms-client-request-id: [41b28ed8-68f5-11e7-a1fc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainere22c13d2/blobe22c13d2 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [IWdbi5pGUaG/BkyHQ3/xtA==] - Date: ['Thu, 13 Jul 2017 18:44:27 GMT'] - ETag: ['"0x8D4CA1F30D8E6F7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:44 GMT'] + ETag: ['"0x8D4CB19268244EB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3ded0aed-0001-00d4-8008-fc1df4000000] + x-ms-request-id: [d4c89192-0001-00ac-0a02-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -46,9 +46,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4cd8f00c-67fb-11e7-a18e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:28 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [41cc88cc-68f5-11e7-8817-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:43 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -79,16 +79,16 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:27 GMT'] - ETag: ['"0x8D4CA1F30D8E6F7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:44 GMT'] + ETag: ['"0x8D4CB19268244EB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [IWdbi5pGUaG/BkyHQ3/xtA==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [3ded0b01-0001-00d4-1108-fc1df4000000] + x-ms-request-id: [d4c891ad-0001-00ac-2102-fd7543000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_common_blob.test_get_blob_with_existing_blob.yaml b/tests/recordings/test_common_blob.test_get_blob_with_existing_blob.yaml index 43b22ba1..7063a1d8 100644 --- a/tests/recordings/test_common_blob.test_get_blob_with_existing_blob.yaml +++ b/tests/recordings/test_common_blob.test_get_blob_with_existing_blob.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4d17a0b8-67fb-11e7-a207-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:28 GMT'] + x-ms-client-request-id: [41fe2a46-68f5-11e7-8fd6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf6091415/blobf6091415 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [FuOwYXjXLx6JPbo+rK8aaA==] - Date: ['Thu, 13 Jul 2017 18:44:27 GMT'] - ETag: ['"0x8D4CA1F312E6966"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:44 GMT'] + ETag: ['"0x8D4CB1926C7E64C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b90b7fa5-0001-005c-5008-fca52d000000] + x-ms-request-id: [b751d683-0001-002c-1502-fdd6e9000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -46,9 +46,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4d2ba9be-67fb-11e7-9a2d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:28 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4212cf8a-68f5-11e7-939f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:44 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -79,16 +79,16 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:27 GMT'] - ETag: ['"0x8D4CA1F312E6966"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:44 GMT'] + ETag: ['"0x8D4CB1926C7E64C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [FuOwYXjXLx6JPbo+rK8aaA==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [b90b7fad-0001-005c-5708-fca52d000000] + x-ms-request-id: [b751d697-0001-002c-2202-fdd6e9000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_common_blob.test_get_blob_with_lease.yaml b/tests/recordings/test_common_blob.test_get_blob_with_lease.yaml index 56eb7cc5..5ca221ed 100644 --- a/tests/recordings/test_common_blob.test_get_blob_with_lease.yaml +++ b/tests/recordings/test_common_blob.test_get_blob_with_lease.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4d5bd2f6-67fb-11e7-b40d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:29 GMT'] + x-ms-client-request-id: [4249bd1a-68f5-11e7-b1a3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer605610b6/blob605610b6 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [fD4GDD+drcGwWdyS/7FdNg==] - Date: ['Thu, 13 Jul 2017 18:44:27 GMT'] - ETag: ['"0x8D4CA1F31728389"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:45 GMT'] + ETag: ['"0x8D4CB1927143FB9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [abab4a5e-0001-0034-4808-fcfb7c000000] + x-ms-request-id: [d3d401ed-0001-0114-2702-fdd1e5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4d6fc3ec-67fb-11e7-9a18-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [425eb238-68f5-11e7-a6c3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:44 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -58,23 +58,23 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:27 GMT'] - ETag: ['"0x8D4CA1F31728389"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:45 GMT'] + ETag: ['"0x8D4CB1927143FB9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [3e05c4db-42ae-48cb-a400-c0528eeb58e3] - x-ms-request-id: [abab4a69-0001-0034-5108-fcfb7c000000] + x-ms-lease-id: [b38a6170-aaa9-4971-96dd-9230f264afa4] + x-ms-request-id: [d3d40207-0001-0114-3d02-fdd1e5000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4d75050a-67fb-11e7-8a6d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:29 GMT'] - x-ms-lease-id: [3e05c4db-42ae-48cb-a400-c0528eeb58e3] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [42651b6e-68f5-11e7-bc65-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:44 GMT'] + x-ms-lease-id: [b38a6170-aaa9-4971-96dd-9230f264afa4] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -105,9 +105,9 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:27 GMT'] - ETag: ['"0x8D4CA1F31728389"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:45 GMT'] + ETag: ['"0x8D4CB1927143FB9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [fD4GDD+drcGwWdyS/7FdNg==] @@ -115,7 +115,7 @@ interactions: x-ms-lease-duration: [infinite] x-ms-lease-state: [leased] x-ms-lease-status: [locked] - x-ms-request-id: [abab4a74-0001-0034-5908-fcfb7c000000] + x-ms-request-id: [d3d40211-0001-0114-4302-fdd1e5000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -124,23 +124,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4d79e980-67fb-11e7-9a5b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [426a3ffe-68f5-11e7-8acf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:44 GMT'] x-ms-lease-action: [release] - x-ms-lease-id: [3e05c4db-42ae-48cb-a400-c0528eeb58e3] + x-ms-lease-id: [b38a6170-aaa9-4971-96dd-9230f264afa4] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer605610b6/blob605610b6?comp=lease response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:27 GMT'] - ETag: ['"0x8D4CA1F31728389"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:28 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:45 GMT'] + ETag: ['"0x8D4CB1927143FB9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [abab4a77-0001-0034-5c08-fcfb7c000000] + x-ms-request-id: [d3d4021b-0001-0114-4c02-fdd1e5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_common_blob.test_get_blob_with_non_existing_blob.yaml b/tests/recordings/test_common_blob.test_get_blob_with_non_existing_blob.yaml index 629772db..0ff74e85 100644 --- a/tests/recordings/test_common_blob.test_get_blob_with_non_existing_blob.yaml +++ b/tests/recordings/test_common_blob.test_get_blob_with_non_existing_blob.yaml @@ -3,24 +3,24 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4daab0ec-67fb-11e7-b704-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [429f3cfe-68f5-11e7-ba9d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:45 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer4aaa15bf/blob4aaa15bf response: body: {string: "\uFEFFBlobNotFoundThe\ - \ specified blob does not exist.\nRequestId:c45fbeed-0001-0055-5808-fcbfa3000000\n\ - Time:2017-07-13T18:44:29.7825881Z"} + \ specified blob does not exist.\nRequestId:5c57c530-0001-00bc-2402-fd43a5000000\n\ + Time:2017-07-15T00:33:45.8108347Z"} headers: Content-Length: ['215'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:44:29 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:45 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [c45fbeed-0001-0055-5808-fcbfa3000000] + x-ms-request-id: [5c57c530-0001-00bc-2402-fd43a5000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified blob does not exist.} version: 1 diff --git a/tests/recordings/test_common_blob.test_get_blob_with_range.yaml b/tests/recordings/test_common_blob.test_get_blob_with_range.yaml index d10ecb15..1c07235a 100644 --- a/tests/recordings/test_common_blob.test_get_blob_with_range.yaml +++ b/tests/recordings/test_common_blob.test_get_blob_with_range.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4dea21be-67fb-11e7-88ec-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:29 GMT'] + x-ms-client-request-id: [42dea19e-68f5-11e7-8e74-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer607310b9/blob607310b9 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [nxJ9JCiexwjpmD26eg+7Jg==] - Date: ['Thu, 13 Jul 2017 18:44:29 GMT'] - ETag: ['"0x8D4CA1F3200D375"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:29 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:46 GMT'] + ETag: ['"0x8D4CB1927A9213C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [64c3902c-0001-0019-3208-fc78bc000000] + x-ms-request-id: [6d6f98a0-0001-009f-1502-fd2c6e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -46,9 +46,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4dfe68d8-67fb-11e7-98aa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:30 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [42f397e8-68f5-11e7-9464-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:45 GMT'] x-ms-range: [bytes=0-5] x-ms-version: ['2017-04-17'] method: GET @@ -62,16 +62,16 @@ interactions: Content-Length: ['6'] Content-Range: [bytes 0-5/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:29 GMT'] - ETag: ['"0x8D4CA1F3200D375"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:29 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:46 GMT'] + ETag: ['"0x8D4CB1927A9213C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [nxJ9JCiexwjpmD26eg+7Jg==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [64c3903e-0001-0019-4208-fc78bc000000] + x-ms-request-id: [6d6f98aa-0001-009f-1d02-fd2c6e000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_common_blob.test_get_blob_with_snapshot.yaml b/tests/recordings/test_common_blob.test_get_blob_with_snapshot.yaml index 02cee276..91dfec0c 100644 --- a/tests/recordings/test_common_blob.test_get_blob_with_snapshot.yaml +++ b/tests/recordings/test_common_blob.test_get_blob_with_snapshot.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4e2e053a-67fb-11e7-9b43-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:30 GMT'] + x-ms-client-request-id: [432532b4-68f5-11e7-80f7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer95a2121c/blob95a2121c @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [2VsPlqEM6bTAFHoTQMDpyA==] - Date: ['Thu, 13 Jul 2017 18:44:30 GMT'] - ETag: ['"0x8D4CA1F3244513C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:47 GMT'] + ETag: ['"0x8D4CB1927EF37E3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [763d0adf-0001-00b9-1c08-fcb7da000000] + x-ms-request-id: [81a2af7e-0001-0097-5102-fd371d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,35 +47,35 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4e41c05e-67fb-11e7-b472-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:30 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [433abd46-68f5-11e7-8f74-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer95a2121c/blob95a2121c?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:30 GMT'] - ETag: ['"0x8D4CA1F3244513C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:47 GMT'] + ETag: ['"0x8D4CB1927EF37E3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [763d0af8-0001-00b9-3208-fcb7da000000] - x-ms-snapshot: ['2017-07-13T18:44:30.2607807Z'] + x-ms-request-id: [81a2af95-0001-0097-6602-fd371d000000] + x-ms-snapshot: ['2017-07-15T00:33:47.1152656Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4e476a0c-67fb-11e7-b2a4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:30 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4340ae90-68f5-11e7-af7e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:46 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET - uri: https://storagename.blob.core.windows.net/utcontainer95a2121c/blob95a2121c?snapshot=2017-07-13T18%3A44%3A30.2607807Z + uri: https://storagename.blob.core.windows.net/utcontainer95a2121c/blob95a2121c?snapshot=2017-07-15T00%3A33%3A47.1152656Z response: body: string: !!binary | @@ -102,14 +102,14 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:30 GMT'] - ETag: ['"0x8D4CA1F3244513C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:47 GMT'] + ETag: ['"0x8D4CB1927EF37E3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [2VsPlqEM6bTAFHoTQMDpyA==] x-ms-blob-type: [BlockBlob] - x-ms-request-id: [763d0b04-0001-00b9-3d08-fcb7da000000] + x-ms-request-id: [81a2afa3-0001-0097-7302-fd371d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_common_blob.test_get_blob_with_snapshot_previous.yaml b/tests/recordings/test_common_blob.test_get_blob_with_snapshot_previous.yaml index 085f74b7..94b0d4c1 100644 --- a/tests/recordings/test_common_blob.test_get_blob_with_snapshot_previous.yaml +++ b/tests/recordings/test_common_blob.test_get_blob_with_snapshot_previous.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4e79db06-67fb-11e7-b6d1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:30 GMT'] + x-ms-client-request-id: [436fee08-68f5-11e7-814c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer4b9c15f8/blob4b9c15f8 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [0q1JWSCH+FCgYAsT0W0ZsA==] - Date: ['Thu, 13 Jul 2017 18:44:29 GMT'] - ETag: ['"0x8D4CA1F329390F6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:47 GMT'] + ETag: ['"0x8D4CB192839E34C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [745e4ab6-0001-011d-6708-fccb6b000000] + x-ms-request-id: [328d8e81-0001-0107-3002-fde404000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,22 +47,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4e90dee6-67fb-11e7-b519-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [43845bb8-68f5-11e7-9a5a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer4b9c15f8/blob4b9c15f8?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:29 GMT'] - ETag: ['"0x8D4CA1F329390F6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:47 GMT'] + ETag: ['"0x8D4CB192839E34C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [745e4acc-0001-011d-7908-fccb6b000000] - x-ms-snapshot: ['2017-07-13T18:44:30.7801469Z'] + x-ms-request-id: [328d8e8e-0001-0107-3802-fde404000000] + x-ms-snapshot: ['2017-07-15T00:33:47.5976146Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -70,10 +70,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['17'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4e97171e-67fb-11e7-b9ec-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:31 GMT'] + x-ms-client-request-id: [438a4514-68f5-11e7-a0f1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer4b9c15f8/blob4b9c15f8 @@ -81,12 +81,12 @@ interactions: body: {string: ''} headers: Content-MD5: [ADIaUHvbQg271PU8czsVBQ==] - Date: ['Thu, 13 Jul 2017 18:44:29 GMT'] - ETag: ['"0x8D4CA1F329F7A00"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:47 GMT'] + ETag: ['"0x8D4CB192845CC58"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [745e4adf-0001-011d-0808-fccb6b000000] + x-ms-request-id: [328d8e95-0001-0107-3e02-fde404000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -94,13 +94,13 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4e9cc5d0-67fb-11e7-95b9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [43911c54-68f5-11e7-98e7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:46 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET - uri: https://storagename.blob.core.windows.net/utcontainer4b9c15f8/blob4b9c15f8?snapshot=2017-07-13T18%3A44%3A30.7801469Z + uri: https://storagename.blob.core.windows.net/utcontainer4b9c15f8/blob4b9c15f8?snapshot=2017-07-15T00%3A33%3A47.5976146Z response: body: string: !!binary | @@ -127,14 +127,14 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:29 GMT'] - ETag: ['"0x8D4CA1F329390F6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:47 GMT'] + ETag: ['"0x8D4CB192839E34C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [0q1JWSCH+FCgYAsT0W0ZsA==] x-ms-blob-type: [BlockBlob] - x-ms-request-id: [745e4aed-0001-011d-1508-fccb6b000000] + x-ms-request-id: [328d8ea8-0001-0107-4f02-fde404000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} @@ -142,9 +142,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4ea2cc3a-67fb-11e7-ae1c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [43971c1c-68f5-11e7-8472-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:46 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -156,16 +156,16 @@ interactions: Content-Length: ['17'] Content-Range: [bytes 0-16/17] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:29 GMT'] - ETag: ['"0x8D4CA1F329F7A00"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:47 GMT'] + ETag: ['"0x8D4CB192845CC58"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [ADIaUHvbQg271PU8czsVBQ==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [745e4b0a-0001-011d-2e08-fccb6b000000] + x-ms-request-id: [328d8eb3-0001-0107-5702-fde404000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_common_blob.test_lease_blob_acquire_and_release.yaml b/tests/recordings/test_common_blob.test_lease_blob_acquire_and_release.yaml index 5f2a0efc..07383895 100644 --- a/tests/recordings/test_common_blob.test_lease_blob_acquire_and_release.yaml +++ b/tests/recordings/test_common_blob.test_lease_blob_acquire_and_release.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4ed3e72c-67fb-11e7-95ef-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:31 GMT'] + x-ms-client-request-id: [43cccc22-68f5-11e7-9669-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer31231517/blob31231517 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [ZVwDAfszmFz0WfZvXQShAw==] - Date: ['Thu, 13 Jul 2017 18:44:30 GMT'] - ETag: ['"0x8D4CA1F32EAC15A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:48 GMT'] + ETag: ['"0x8D4CB1928992BF2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8e381ba7-0001-00cd-2508-fc319c000000] + x-ms-request-id: [b4a8479b-0001-00ef-0d02-fd5faa000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4ee91b42-67fb-11e7-b2ec-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [43e42a86-68f5-11e7-8cba-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:47 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -58,13 +58,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:30 GMT'] - ETag: ['"0x8D4CA1F32EAC15A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:48 GMT'] + ETag: ['"0x8D4CB1928992BF2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [1f66a556-5174-4726-abfe-1b0f7838a543] - x-ms-request-id: [8e381bd5-0001-00cd-4a08-fc319c000000] + x-ms-lease-id: [8c9efeb2-09e3-4dfe-9eee-04e9293b8bd5] + x-ms-request-id: [b4a847ab-0001-00ef-1b02-fd5faa000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -72,23 +72,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4eeeb854-67fb-11e7-b162-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [43f0c910-68f5-11e7-8ef5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:47 GMT'] x-ms-lease-action: [release] - x-ms-lease-id: [1f66a556-5174-4726-abfe-1b0f7838a543] + x-ms-lease-id: [8c9efeb2-09e3-4dfe-9eee-04e9293b8bd5] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer31231517/blob31231517?comp=lease response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:30 GMT'] - ETag: ['"0x8D4CA1F32EAC15A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:48 GMT'] + ETag: ['"0x8D4CB1928992BF2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8e381bfb-0001-00cd-6d08-fc319c000000] + x-ms-request-id: [b4a847c1-0001-00ef-2c02-fd5faa000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -96,9 +96,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4ef404a8-67fb-11e7-a6e3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [43fcca3a-68f5-11e7-b7c2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:47 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -107,13 +107,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:30 GMT'] - ETag: ['"0x8D4CA1F32EAC15A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:48 GMT'] + ETag: ['"0x8D4CB1928992BF2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [19c84324-4d93-4569-84f7-31b98509d49b] - x-ms-request-id: [8e381c11-0001-00cd-0308-fc319c000000] + x-ms-lease-id: [afda2d68-cbc9-4f90-a030-6327ffdda982] + x-ms-request-id: [b4a847d5-0001-00ef-3c02-fd5faa000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_common_blob.test_lease_blob_acquire_and_renew.yaml b/tests/recordings/test_common_blob.test_lease_blob_acquire_and_renew.yaml index b799cc68..9470260f 100644 --- a/tests/recordings/test_common_blob.test_lease_blob_acquire_and_renew.yaml +++ b/tests/recordings/test_common_blob.test_lease_blob_acquire_and_renew.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4f24895c-67fb-11e7-9862-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:32 GMT'] + x-ms-client-request-id: [44312a78-68f5-11e7-8a15-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer7761457/blob7761457 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [EZ85fA9oEsAQDRqdx1mw/Q==] - Date: ['Thu, 13 Jul 2017 18:44:32 GMT'] - ETag: ['"0x8D4CA1F333C4B87"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:48 GMT'] + ETag: ['"0x8D4CB1928FA70C6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9316dba9-0001-0042-7408-fc7fc0000000] + x-ms-request-id: [9a77b32f-0001-010f-5702-fdff77000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4f39c36c-67fb-11e7-b527-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [44464a5c-68f5-11e7-a802-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:47 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -58,13 +58,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:32 GMT'] - ETag: ['"0x8D4CA1F333C4B87"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:48 GMT'] + ETag: ['"0x8D4CB1928FA70C6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [64137b60-5e1c-4c29-9b6d-d280228c87de] - x-ms-request-id: [9316dbc2-0001-0042-0a08-fc7fc0000000] + x-ms-lease-id: [ddc0be3f-2d05-42b4-8746-c738d175105c] + x-ms-request-id: [9a77b33e-0001-010f-6502-fdff77000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -72,24 +72,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4f3f9828-67fb-11e7-be1c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [444c5ac8-68f5-11e7-a759-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:48 GMT'] x-ms-lease-action: [renew] - x-ms-lease-id: [64137b60-5e1c-4c29-9b6d-d280228c87de] + x-ms-lease-id: [ddc0be3f-2d05-42b4-8746-c738d175105c] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer7761457/blob7761457?comp=lease response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:32 GMT'] - ETag: ['"0x8D4CA1F333C4B87"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:48 GMT'] + ETag: ['"0x8D4CB1928FA70C6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [64137b60-5e1c-4c29-9b6d-d280228c87de] - x-ms-request-id: [9316dbd1-0001-0042-1708-fc7fc0000000] + x-ms-lease-id: [ddc0be3f-2d05-42b4-8746-c738d175105c] + x-ms-request-id: [9a77b34d-0001-010f-7202-fdff77000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_common_blob.test_lease_blob_acquire_twice_fails.yaml b/tests/recordings/test_common_blob.test_lease_blob_acquire_twice_fails.yaml index c843673f..ae824f13 100644 --- a/tests/recordings/test_common_blob.test_lease_blob_acquire_twice_fails.yaml +++ b/tests/recordings/test_common_blob.test_lease_blob_acquire_twice_fails.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4f71de00-67fb-11e7-8777-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:32 GMT'] + x-ms-client-request-id: [447f084c-68f5-11e7-935f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer3206152e/blob3206152e @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [0MFjogpwYgcDVOptrLM9FA==] - Date: ['Thu, 13 Jul 2017 18:44:31 GMT'] - ETag: ['"0x8D4CA1F338792D8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:48 GMT'] + ETag: ['"0x8D4CB192949FF12"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a8375234-0001-010a-2408-fc0b08000000] + x-ms-request-id: [1fbb04c5-0001-007a-4302-fd3e99000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4f85fc28-67fb-11e7-a11a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [449463a4-68f5-11e7-94e3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:48 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -58,13 +58,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:31 GMT'] - ETag: ['"0x8D4CA1F338792D8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:48 GMT'] + ETag: ['"0x8D4CB192949FF12"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [2f50dc40-5b5c-4124-8cce-427620d718fb] - x-ms-request-id: [a837524e-0001-010a-3b08-fc0b08000000] + x-ms-lease-id: [c709df1b-5ae5-4501-95b4-66bff13ffcab] + x-ms-request-id: [1fbb04d6-0001-007a-5302-fd3e99000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -72,9 +72,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4f8b946c-67fb-11e7-b72b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4499b430-68f5-11e7-b362-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:48 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -82,14 +82,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainer3206152e/blob3206152e?comp=lease response: body: {string: "\uFEFFLeaseAlreadyPresentThere\ - \ is already a lease present.\nRequestId:a837525d-0001-010a-4808-fc0b08000000\n\ - Time:2017-07-13T18:44:32.3529044Z"} + \ is already a lease present.\nRequestId:1fbb04e6-0001-007a-5e02-fd3e99000000\n\ + Time:2017-07-15T00:33:49.3730780Z"} headers: Content-Length: ['221'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:44:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [a837525d-0001-010a-4808-fc0b08000000] + x-ms-request-id: [1fbb04e6-0001-007a-5e02-fd3e99000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: There is already a lease present.} - request: @@ -97,23 +97,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4f926ed8-67fb-11e7-a46a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [449eb9ee-68f5-11e7-978b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:48 GMT'] x-ms-lease-action: [release] - x-ms-lease-id: [2f50dc40-5b5c-4124-8cce-427620d718fb] + x-ms-lease-id: [c709df1b-5ae5-4501-95b4-66bff13ffcab] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer3206152e/blob3206152e?comp=lease response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:31 GMT'] - ETag: ['"0x8D4CA1F338792D8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:49 GMT'] + ETag: ['"0x8D4CB192949FF12"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a837526c-0001-010a-5608-fc0b08000000] + x-ms-request-id: [1fbb04ee-0001-007a-6602-fd3e99000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_common_blob.test_lease_blob_break_period.yaml b/tests/recordings/test_common_blob.test_lease_blob_break_period.yaml index a4aa5b6f..f1358545 100644 --- a/tests/recordings/test_common_blob.test_lease_blob_break_period.yaml +++ b/tests/recordings/test_common_blob.test_lease_blob_break_period.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4fc6e7b0-67fb-11e7-874d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:33 GMT'] + x-ms-client-request-id: [44dab930-68f5-11e7-9c79-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:48 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera5c01242/bloba5c01242 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [lRKVglIdAX07llwzsejMJQ==] - Date: ['Thu, 13 Jul 2017 18:44:32 GMT'] - ETag: ['"0x8D4CA1F33DD1550"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:50 GMT'] + ETag: ['"0x8D4CB1929A50129"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [689b45f4-0001-00f6-1c08-fc73c2000000] + x-ms-request-id: [4a1ec0dd-0001-0072-7302-fd25ea000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4fdad428-67fb-11e7-93e9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [44ef32f4-68f5-11e7-9b84-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:49 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['15'] x-ms-version: ['2017-04-17'] @@ -58,13 +58,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:32 GMT'] - ETag: ['"0x8D4CA1F33DD1550"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:50 GMT'] + ETag: ['"0x8D4CB1929A50129"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [1c212d20-4257-4313-ab3f-11bda137eac5] - x-ms-request-id: [689b4607-0001-00f6-2b08-fc73c2000000] + x-ms-lease-id: [50a2e515-ade4-47c5-9b87-dbdadee52caf] + x-ms-request-id: [4a1ec0e8-0001-0072-7c02-fd25ea000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -72,9 +72,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4fe00f4c-67fb-11e7-9e75-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [44f642b8-68f5-11e7-9676-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:49 GMT'] x-ms-lease-action: [break] x-ms-lease-break-period: ['5'] x-ms-version: ['2017-04-17'] @@ -83,13 +83,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:32 GMT'] - ETag: ['"0x8D4CA1F33DD1550"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:50 GMT'] + ETag: ['"0x8D4CB1929A50129"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:49 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-time: ['5'] - x-ms-request-id: [689b461a-0001-00f6-3808-fc73c2000000] + x-ms-request-id: [4a1ec0ff-0001-0072-0f02-fd25ea000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -97,11 +97,11 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [4fed89ec-67fb-11e7-a05b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:33 GMT'] - x-ms-lease-id: [1c212d20-4257-4313-ab3f-11bda137eac5] + x-ms-client-request-id: [44fb57a8-68f5-11e7-a7e5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:49 GMT'] + x-ms-lease-id: [50a2e515-ade4-47c5-9b87-dbdadee52caf] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera5c01242/bloba5c01242 @@ -109,12 +109,12 @@ interactions: body: {string: ''} headers: Content-MD5: [uyHsg5S3V5ViL2FhOnd6iw==] - Date: ['Thu, 13 Jul 2017 18:44:32 GMT'] - ETag: ['"0x8D4CA1F33F86A5C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:50 GMT'] + ETag: ['"0x8D4CB1929B6B7C6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [689b462e-0001-00f6-4808-fc73c2000000] + x-ms-request-id: [4a1ec10c-0001-0072-1b02-fd25ea000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -123,24 +123,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [52f17362-67fb-11e7-b4af-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:38 GMT'] - x-ms-lease-id: [1c212d20-4257-4313-ab3f-11bda137eac5] + x-ms-client-request-id: [47fcb9e2-68f5-11e7-9b72-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:54 GMT'] + x-ms-lease-id: [50a2e515-ade4-47c5-9b87-dbdadee52caf] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainera5c01242/bloba5c01242 response: body: {string: "\uFEFFLeaseLostA\ - \ lease ID was specified, but the lease for the blob has expired.\nRequestId:689b4a10-0001-00f6-1f08-fc73c2000000\n\ - Time:2017-07-13T18:44:38.0673306Z"} + \ lease ID was specified, but the lease for the blob has expired.\nRequestId:4a1ec624-0001-0072-0602-fd25ea000000\n\ + Time:2017-07-15T00:33:55.6488500Z"} headers: Content-Length: ['243'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:44:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [689b4a10-0001-00f6-1f08-fc73c2000000] + x-ms-request-id: [4a1ec624-0001-0072-0602-fd25ea000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: 'A lease ID was specified, but the lease for the blob has expired.'} diff --git a/tests/recordings/test_common_blob.test_lease_blob_change_lease_id.yaml b/tests/recordings/test_common_blob.test_lease_blob_change_lease_id.yaml index 09d05f9a..b2ba0680 100644 --- a/tests/recordings/test_common_blob.test_lease_blob_change_lease_id.yaml +++ b/tests/recordings/test_common_blob.test_lease_blob_change_lease_id.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [53315f66-67fb-11e7-92f2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:38 GMT'] + x-ms-client-request-id: [482f8bb0-68f5-11e7-8f1b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerde001356/blobde001356 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [hP8cll30Xuh0hRwADPNv9w==] - Date: ['Thu, 13 Jul 2017 18:44:36 GMT'] - ETag: ['"0x8D4CA1F3748A37A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:55 GMT'] + ETag: ['"0x8D4CB192CF984FF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [66e66b54-0001-013f-6608-fca55d000000] + x-ms-request-id: [7dac887b-0001-011e-6e02-fdc86c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [53461564-67fb-11e7-95e9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4843e5ba-68f5-11e7-b0b4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:54 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -58,13 +58,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:36 GMT'] - ETag: ['"0x8D4CA1F3748A37A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:55 GMT'] + ETag: ['"0x8D4CB192CF984FF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [636da6c7-ed6f-463e-93d1-44c59aa1e07e] - x-ms-request-id: [66e66b6b-0001-013f-7808-fca55d000000] + x-ms-lease-id: [5c52bc46-5e65-4d9f-b08c-b56d34572bbe] + x-ms-request-id: [7dac887f-0001-011e-7102-fdc86c000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -72,11 +72,11 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [534bcb94-67fb-11e7-ae46-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [484beb1e-68f5-11e7-8677-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:54 GMT'] x-ms-lease-action: [change] - x-ms-lease-id: [636da6c7-ed6f-463e-93d1-44c59aa1e07e] + x-ms-lease-id: [5c52bc46-5e65-4d9f-b08c-b56d34572bbe] x-ms-proposed-lease-id: [a0e6c241-96ea-45a3-a44b-6ae868bc14d0] x-ms-version: ['2017-04-17'] method: PUT @@ -84,13 +84,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:36 GMT'] - ETag: ['"0x8D4CA1F3748A37A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:55 GMT'] + ETag: ['"0x8D4CB192CF984FF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-id: [a0e6c241-96ea-45a3-a44b-6ae868bc14d0] - x-ms-request-id: [66e66b77-0001-013f-0208-fca55d000000] + x-ms-request-id: [7dac8889-0001-011e-7902-fdc86c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -98,9 +98,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [53515f9e-67fb-11e7-b03e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4851d546-68f5-11e7-88b2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:54 GMT'] x-ms-lease-action: [renew] x-ms-lease-id: [a0e6c241-96ea-45a3-a44b-6ae868bc14d0] x-ms-version: ['2017-04-17'] @@ -109,13 +109,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:36 GMT'] - ETag: ['"0x8D4CA1F3748A37A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:55 GMT'] + ETag: ['"0x8D4CB192CF984FF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:55 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-id: [a0e6c241-96ea-45a3-a44b-6ae868bc14d0] - x-ms-request-id: [66e66b81-0001-013f-0c08-fca55d000000] + x-ms-request-id: [7dac8892-0001-011e-7f02-fdc86c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_common_blob.test_lease_blob_with_duration.yaml b/tests/recordings/test_common_blob.test_lease_blob_with_duration.yaml index 1f4423c8..c27809e0 100644 --- a/tests/recordings/test_common_blob.test_lease_blob_with_duration.yaml +++ b/tests/recordings/test_common_blob.test_lease_blob_with_duration.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [5387d008-67fb-11e7-94cc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:39 GMT'] + x-ms-client-request-id: [488382ba-68f5-11e7-9cc3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerba0812dc/blobba0812dc @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [Jkp/n/YLpNqiWxoNCEUcaA==] - Date: ['Thu, 13 Jul 2017 18:44:38 GMT'] - ETag: ['"0x8D4CA1F379F378B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:55 GMT'] + ETag: ['"0x8D4CB192D523CBE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:56 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [157b1bb6-0001-00c7-5b08-fc2815000000] + x-ms-request-id: [0eb7776a-0001-003a-7c02-fd1777000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [539cd868-67fb-11e7-af68-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [489eb18c-68f5-11e7-b8b7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:55 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['15'] x-ms-version: ['2017-04-17'] @@ -58,13 +58,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:38 GMT'] - ETag: ['"0x8D4CA1F379F378B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:55 GMT'] + ETag: ['"0x8D4CB192D523CBE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:56 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [332e67af-a865-454c-b750-b5e87096626b] - x-ms-request-id: [157b1bbc-0001-00c7-6008-fc2815000000] + x-ms-lease-id: [fa25a799-1867-4cfe-a1d6-4ebef9ddf46e] + x-ms-request-id: [0eb77779-0001-003a-0702-fd1777000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -72,11 +72,11 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [53a2faf4-67fb-11e7-aae7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:39 GMT'] - x-ms-lease-id: [332e67af-a865-454c-b750-b5e87096626b] + x-ms-client-request-id: [48a4e824-68f5-11e7-8475-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:33:55 GMT'] + x-ms-lease-id: [fa25a799-1867-4cfe-a1d6-4ebef9ddf46e] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerba0812dc/blobba0812dc @@ -84,12 +84,12 @@ interactions: body: {string: ''} headers: Content-MD5: [uyHsg5S3V5ViL2FhOnd6iw==] - Date: ['Thu, 13 Jul 2017 18:44:38 GMT'] - ETag: ['"0x8D4CA1F37AB95D1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:33:55 GMT'] + ETag: ['"0x8D4CB192D609747"'] + Last-Modified: ['Sat, 15 Jul 2017 00:33:56 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [157b1bc3-0001-00c7-6508-fc2815000000] + x-ms-request-id: [0eb77785-0001-003a-1102-fd1777000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -98,24 +98,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['7'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [5c9a6a34-67fb-11e7-8c23-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:54 GMT'] - x-ms-lease-id: [332e67af-a865-454c-b750-b5e87096626b] + x-ms-client-request-id: [519c01ba-68f5-11e7-a6c9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:10 GMT'] + x-ms-lease-id: [fa25a799-1867-4cfe-a1d6-4ebef9ddf46e] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerba0812dc/blobba0812dc response: body: {string: "\uFEFFLeaseLostA\ - \ lease ID was specified, but the lease for the blob has expired.\nRequestId:157b2754-0001-00c7-3f08-fc2815000000\n\ - Time:2017-07-13T18:44:54.6873310Z"} + \ lease ID was specified, but the lease for the blob has expired.\nRequestId:0eb7887e-0001-003a-1302-fd1777000000\n\ + Time:2017-07-15T00:34:11.0901278Z"} headers: Content-Length: ['243'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:44:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:10 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [157b2754-0001-00c7-3f08-fc2815000000] + x-ms-request-id: [0eb7887e-0001-003a-1302-fd1777000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: 'A lease ID was specified, but the lease for the blob has expired.'} diff --git a/tests/recordings/test_common_blob.test_lease_blob_with_proposed_lease_id.yaml b/tests/recordings/test_common_blob.test_lease_blob_with_proposed_lease_id.yaml index 70e6463b..db251ad9 100644 --- a/tests/recordings/test_common_blob.test_lease_blob_with_proposed_lease_id.yaml +++ b/tests/recordings/test_common_blob.test_lease_blob_with_proposed_lease_id.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [5ccbc7c8-67fb-11e7-b3fe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:54 GMT'] + x-ms-client-request-id: [51d0aa5a-68f5-11e7-8564-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:10 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer765f1677/blob765f1677 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [3X9UPhghWABA+mJkV09cQw==] - Date: ['Thu, 13 Jul 2017 18:44:53 GMT'] - ETag: ['"0x8D4CA1F40E26C96"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:11 GMT'] + ETag: ['"0x8D4CB19369B23D8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:11 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ed4ade11-0001-005d-0508-fca4d0000000] + x-ms-request-id: [109167d2-0001-00aa-0b02-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5cdfa7c0-67fb-11e7-b60c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [51e5f20c-68f5-11e7-8838-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:10 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-proposed-lease-id: [a0e6c241-96ea-45a3-a44b-6ae868bc14d0] @@ -59,13 +59,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:53 GMT'] - ETag: ['"0x8D4CA1F40E26C96"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:12 GMT'] + ETag: ['"0x8D4CB19369B23D8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:11 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-id: [a0e6c241-96ea-45a3-a44b-6ae868bc14d0] - x-ms-request-id: [ed4ade18-0001-005d-0b08-fca4d0000000] + x-ms-request-id: [109167ef-0001-00aa-2502-fd823b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_common_blob.test_list_blobs_server_encryption.yaml b/tests/recordings/test_common_blob.test_list_blobs_server_encryption.yaml index a8d373e0..eecd9ef7 100644 --- a/tests/recordings/test_common_blob.test_list_blobs_server_encryption.yaml +++ b/tests/recordings/test_common_blob.test_list_blobs_server_encryption.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [5d1e6492-67fb-11e7-b8c0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:55 GMT'] + x-ms-client-request-id: [52aa9dc8-68f5-11e7-8ba9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:12 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd5c14c1/blobd5c14c1 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [aOG7BwoVnqXtYVNoSIat1Q==] - Date: ['Thu, 13 Jul 2017 18:44:54 GMT'] - ETag: ['"0x8D4CA1F4135088B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:13 GMT'] + ETag: ['"0x8D4CB193773F8CA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:13 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c433702c-0001-0035-0608-fcfa81000000] + x-ms-request-id: [18526d82-0001-00b5-6402-fd592b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -65,10 +65,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [5d331018-67fb-11e7-9d67-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:55 GMT'] + x-ms-client-request-id: [52be6e86-68f5-11e7-b0db-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:12 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerd5c14c1/blobd5c14c1 @@ -76,12 +76,12 @@ interactions: body: {string: ''} headers: Content-MD5: [aOG7BwoVnqXtYVNoSIat1Q==] - Date: ['Thu, 13 Jul 2017 18:44:54 GMT'] - ETag: ['"0x8D4CA1F413B992E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:13 GMT'] + ETag: ['"0x8D4CB193779780A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:13 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c4337034-0001-0035-0d08-fcfa81000000] + x-ms-request-id: [18526d91-0001-00b5-7202-fd592b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -89,27 +89,27 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5d38feb0-67fb-11e7-8367-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [52c41136-68f5-11e7-88ad-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:12 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerd5c14c1?restype=container&comp=list response: body: {string: "\uFEFFblobd5c14c1Thu,\ - \ 13 Jul 2017 18:44:55 GMT0x8D4CA1F413B992E1024application/octet-streamblobd5c14c1Sat,\ + \ 15 Jul 2017 00:34:13 GMT0x8D4CB193779780A1024application/octet-streamaOG7BwoVnqXtYVNoSIat1Q==BlockBlobunlockedavailabletrue"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:44:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:13 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [c433703f-0001-0035-1708-fcfa81000000] + x-ms-request-id: [18526da3-0001-00b5-0102-fd592b000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_common_blob.test_no_sas_private_blob.yaml b/tests/recordings/test_common_blob.test_no_sas_private_blob.yaml index bc900f61..e22b27b0 100644 --- a/tests/recordings/test_common_blob.test_no_sas_private_blob.yaml +++ b/tests/recordings/test_common_blob.test_no_sas_private_blob.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [5dfcdc7a-67fb-11e7-8404-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:56 GMT'] + x-ms-client-request-id: [53849226-68f5-11e7-9576-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:13 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer61f810cf/blob61f810cf @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [tW3r4DhkDAivU4SsCDvltg==] - Date: ['Thu, 13 Jul 2017 18:44:56 GMT'] - ETag: ['"0x8D4CA1F42135B7A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:14 GMT'] + ETag: ['"0x8D4CB19384D1BE1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:14 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [db020ca3-0001-009f-4708-fc2c6e000000] + x-ms-request-id: [58aa1e51-0001-0071-2802-fd26ed000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -48,20 +48,20 @@ interactions: Accept: ['*/*'] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - User-Agent: [python-requests/2.17.3] + User-Agent: [python-requests/2.18.1] method: GET uri: https://storagename.blob.core.windows.net/utcontainer61f810cf/blob61f810cf response: body: {string: "\uFEFFResourceNotFoundThe\ - \ specified resource does not exist.\nRequestId:ba9d5444-0001-0021-2508-fc39e5000000\n\ - Time:2017-07-13T18:44:57.2504573Z"} + \ specified resource does not exist.\nRequestId:4b0e9022-0001-00c5-3e02-fd2aef000000\n\ + Time:2017-07-15T00:34:14.2186514Z"} headers: Content-Length: ['223'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:44:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:13 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [ba9d5444-0001-0021-2508-fc39e5000000] + x-ms-request-id: [4b0e9022-0001-00c5-3e02-fd2aef000000] x-ms-version: ['2014-02-14'] status: {code: 404, message: The specified resource does not exist.} version: 1 diff --git a/tests/recordings/test_common_blob.test_no_sas_public_blob.yaml b/tests/recordings/test_common_blob.test_no_sas_public_blob.yaml index 4176e5d7..d584b287 100644 --- a/tests/recordings/test_common_blob.test_no_sas_public_blob.yaml +++ b/tests/recordings/test_common_blob.test_no_sas_public_blob.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-public-access: [blob] - x-ms-client-request-id: [5e4fd686-67fb-11e7-979b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:57 GMT'] + x-ms-client-request-id: [547422e6-68f5-11e7-82ba-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:15 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container508f1053?restype=container response: body: {string: "\uFEFFContainerAlreadyExistsThe\ - \ specified container already exists.\nRequestId:e64636f2-0001-008e-4e08-fc1b75000000\n\ - Time:2017-07-13T18:44:57.0906341Z"} + \ specified container already exists.\nRequestId:0b89c5d4-0001-010c-2102-fdfc70000000\n\ + Time:2017-07-15T00:34:15.9325975Z"} headers: Content-Length: ['230'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:44:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:15 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [e64636f2-0001-008e-4e08-fc1b75000000] + x-ms-request-id: [0b89c5d4-0001-010c-2102-fdfc70000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: The specified container already exists.} - request: @@ -28,10 +28,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['59'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [5e6af270-67fb-11e7-905d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:57 GMT'] + x-ms-client-request-id: [5490cb6c-68f5-11e7-9a71-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:15 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container508f1053/blob1.txt @@ -39,12 +39,12 @@ interactions: body: {string: ''} headers: Content-MD5: [j6l0UPTGPwk/3tcnDpRzcQ==] - Date: ['Thu, 13 Jul 2017 18:44:56 GMT'] - ETag: ['"0x8D4CA1F427C4242"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:15 GMT'] + ETag: ['"0x8D4CB19395C2605"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:16 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e6463707-0001-008e-6008-fc1b75000000] + x-ms-request-id: [0b89c609-0001-010c-4f02-fdfc70000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -54,7 +54,7 @@ interactions: Accept: ['*/*'] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - User-Agent: [python-requests/2.17.3] + User-Agent: [python-requests/2.18.1] method: GET uri: https://storagename.blob.core.windows.net/container508f1053/blob1.txt response: @@ -64,15 +64,15 @@ interactions: Content-Length: ['59'] Content-MD5: [j6l0UPTGPwk/3tcnDpRzcQ==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:56 GMT'] - ETag: ['"0x8D4CA1F427C4242"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:16 GMT'] + ETag: ['"0x8D4CB19395C2605"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:16 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [f1846f78-0001-00d7-1f08-fc1ef3000000] + x-ms-request-id: [d6b40d47-0001-00c0-5302-fdde90000000] x-ms-version: ['2014-02-14'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_common_blob.test_no_server_encryption.yaml b/tests/recordings/test_common_blob.test_no_server_encryption.yaml index 13bf45db..9f93fde7 100644 --- a/tests/recordings/test_common_blob.test_no_server_encryption.yaml +++ b/tests/recordings/test_common_blob.test_no_server_encryption.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [5eb7cd3e-67fb-11e7-9b9d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:58 GMT'] + x-ms-client-request-id: [55096234-68f5-11e7-9a17-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:16 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer74531171/blob74531171 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [wFjnl6x0mNp4zNEYZtLODw==] - Date: ['Thu, 13 Jul 2017 18:44:57 GMT'] - ETag: ['"0x8D4CA1F42D2FD65"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:16 GMT'] + ETag: ['"0x8D4CB1939D38F03"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:17 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1495ef6a-0001-0058-5308-fc50af000000] + x-ms-request-id: [6ce89eae-0001-0018-5502-fd7941000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -46,9 +46,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5ed08a06-67fb-11e7-81e3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [551e0cc0-68f5-11e7-8e0f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:16 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer74531171/blob74531171 @@ -59,15 +59,15 @@ interactions: Content-Length: ['1024'] Content-MD5: [wFjnl6x0mNp4zNEYZtLODw==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:57 GMT'] - ETag: ['"0x8D4CA1F42D2FD65"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:16 GMT'] + ETag: ['"0x8D4CB1939D38F03"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:17 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [1495ef80-0001-0058-6808-fc50af000000] + x-ms-request-id: [6ce89ed9-0001-0018-7e02-fd7941000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_common_blob.test_public_access_blob.yaml b/tests/recordings/test_common_blob.test_public_access_blob.yaml index eca074a0..43175e87 100644 --- a/tests/recordings/test_common_blob.test_public_access_blob.yaml +++ b/tests/recordings/test_common_blob.test_public_access_blob.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-public-access: [blob] - x-ms-client-request-id: [5f01738a-67fb-11e7-9fff-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:58 GMT'] + x-ms-client-request-id: [55908446-68f5-11e7-8f06-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:16 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container4f9e1042?restype=container response: body: {string: "\uFEFFContainerAlreadyExistsThe\ - \ specified container already exists.\nRequestId:9188a653-0001-010c-7808-fcfc70000000\n\ - Time:2017-07-13T18:44:58.7721454Z"} + \ specified container already exists.\nRequestId:e52ecaa5-0001-0038-5b02-fd158d000000\n\ + Time:2017-07-15T00:34:17.9775099Z"} headers: Content-Length: ['230'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:44:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:17 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [9188a653-0001-010c-7808-fcfc70000000] + x-ms-request-id: [e52ecaa5-0001-0038-5b02-fd158d000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: The specified container already exists.} - request: @@ -28,10 +28,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['18'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [5f14fe28-67fb-11e7-9992-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:58 GMT'] + x-ms-client-request-id: [55a44740-68f5-11e7-9852-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:17 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container4f9e1042/blob1.txt @@ -39,12 +39,12 @@ interactions: body: {string: ''} headers: Content-MD5: [YIoE3eRVzuvL/cOPyRsCGw==] - Date: ['Thu, 13 Jul 2017 18:44:58 GMT'] - ETag: ['"0x8D4CA1F431D0C10"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:17 GMT'] + ETag: ['"0x8D4CB193A5FBC55"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9188a65a-0001-010c-7c08-fcfc70000000] + x-ms-request-id: [e52ecaaa-0001-0038-5e02-fd158d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,9 +52,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5f1a518c-67fb-11e7-bcd5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [55aa0252-68f5-11e7-8644-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:17 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -66,16 +66,16 @@ interactions: Content-Length: ['18'] Content-Range: [bytes 0-17/18] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:58 GMT'] - ETag: ['"0x8D4CA1F431D0C10"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:25 GMT'] + ETag: ['"0x8D4CB193A5FBC55"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:18 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [YIoE3eRVzuvL/cOPyRsCGw==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [033f617b-0001-003e-0208-fce2f5000000] + x-ms-request-id: [c6299a47-0001-00a0-6802-fd9bb2000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_common_blob.test_set_blob_metadata_with_upper_case.yaml b/tests/recordings/test_common_blob.test_set_blob_metadata_with_upper_case.yaml index 7943c5d9..ee0cb247 100644 --- a/tests/recordings/test_common_blob.test_set_blob_metadata_with_upper_case.yaml +++ b/tests/recordings/test_common_blob.test_set_blob_metadata_with_upper_case.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [5f8fefde-67fb-11e7-83d9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:59 GMT'] + x-ms-client-request-id: [56c630de-68f5-11e7-b6a7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:19 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer7652167f/blob7652167f @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [/98m4h2V+l1drAU0Yfwf2w==] - Date: ['Thu, 13 Jul 2017 18:44:58 GMT'] - ETag: ['"0x8D4CA1F43A651FF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:19 GMT'] + ETag: ['"0x8D4CB193B90103F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f39474db-0001-00a9-6d08-fc813c000000] + x-ms-request-id: [393e6c3b-0001-006b-3302-fd0982000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5fa49588-67fb-11e7-8070-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [56dd1236-68f5-11e7-a3a2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:19 GMT'] x-ms-meta-UP: [UPval] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] @@ -59,12 +59,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:58 GMT'] - ETag: ['"0x8D4CA1F43AD3140"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:19 GMT'] + ETag: ['"0x8D4CB193B98C470"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f39474ef-0001-00a9-7b08-fc813c000000] + x-ms-request-id: [393e6c52-0001-006b-4802-fd0982000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -72,25 +72,25 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5faaca98-67fb-11e7-9c38-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:44:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [56e550d8-68f5-11e7-87b0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:19 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer7652167f/blob7652167f?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:58 GMT'] - ETag: ['"0x8D4CA1F43AD3140"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:19 GMT'] + ETag: ['"0x8D4CB193B98C470"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-UP: [UPval] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [f39474f9-0001-00a9-0408-fc813c000000] + x-ms-request-id: [393e6c61-0001-006b-5202-fd0982000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_common_blob.test_set_blob_properties_with_blob_settings_param.yaml b/tests/recordings/test_common_blob.test_set_blob_properties_with_blob_settings_param.yaml index 74043888..4edb57b9 100644 --- a/tests/recordings/test_common_blob.test_set_blob_properties_with_blob_settings_param.yaml +++ b/tests/recordings/test_common_blob.test_set_blob_properties_with_blob_settings_param.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [5fdb3e58-67fb-11e7-81d5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:00 GMT'] + x-ms-client-request-id: [571d248c-68f5-11e7-9d1a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:19 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8f2c1b43/blob8f2c1b43 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [8YmER1/4FuD4Hs1WdDDhsQ==] - Date: ['Thu, 13 Jul 2017 18:44:59 GMT'] - ETag: ['"0x8D4CA1F43F1E78C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:20 GMT'] + ETag: ['"0x8D4CB193BEB125E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [989d45a3-0001-001d-5e08-fc8d3e000000] + x-ms-request-id: [f65580ba-0001-0027-6102-fdce9d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -46,9 +46,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5fef9134-67fb-11e7-90b6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [57358b64-68f5-11e7-8c14-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:19 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer8f2c1b43/blob8f2c1b43 @@ -59,15 +59,15 @@ interactions: Content-Length: ['1024'] Content-MD5: [8YmER1/4FuD4Hs1WdDDhsQ==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:59 GMT'] - ETag: ['"0x8D4CA1F43F1E78C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:44:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:20 GMT'] + ETag: ['"0x8D4CB193BEB125E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [989d45c3-0001-001d-7708-fc8d3e000000] + x-ms-request-id: [f65580e3-0001-0027-0402-fdce9d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -76,34 +76,34 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-disposition: [inline] x-ms-blob-content-language: [spanish] x-ms-blob-content-md5: [8YmER1/4FuD4Hs1WdDDhsQ==] x-ms-blob-content-type: [application/octet-stream] - x-ms-client-request-id: [60008f34-67fb-11e7-b599-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:00 GMT'] + x-ms-client-request-id: [573aff4a-68f5-11e7-8e69-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:19 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8f2c1b43/blob8f2c1b43?comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:44:59 GMT'] - ETag: ['"0x8D4CA1F4408A7FA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:20 GMT'] + ETag: ['"0x8D4CB193BF610E8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [989d45cb-0001-001d-7c08-fc8d3e000000] + x-ms-request-id: [f65580f9-0001-0027-1702-fdce9d000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [60066dba-67fb-11e7-a10a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [57408870-68f5-11e7-851e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:19 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer8f2c1b43/blob8f2c1b43 @@ -116,15 +116,15 @@ interactions: Content-Length: ['1024'] Content-MD5: [8YmER1/4FuD4Hs1WdDDhsQ==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:44:59 GMT'] - ETag: ['"0x8D4CA1F4408A7FA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:20 GMT'] + ETag: ['"0x8D4CB193BF610E8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [989d45d4-0001-001d-0308-fc8d3e000000] + x-ms-request-id: [f6558111-0001-0027-2d02-fdce9d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_common_blob.test_set_blob_properties_with_existing_blob.yaml b/tests/recordings/test_common_blob.test_set_blob_properties_with_existing_blob.yaml index 1176ffb7..d04bdad9 100644 --- a/tests/recordings/test_common_blob.test_set_blob_properties_with_existing_blob.yaml +++ b/tests/recordings/test_common_blob.test_set_blob_properties_with_existing_blob.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [603be06e-67fb-11e7-9566-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:00 GMT'] + x-ms-client-request-id: [577e7040-68f5-11e7-a33a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf2a918cd/blobf2a918cd @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [Sb7/CcGV4ZuqnaVm3paLSQ==] - Date: ['Thu, 13 Jul 2017 18:45:00 GMT'] - ETag: ['"0x8D4CA1F44532BE5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:21 GMT'] + ETag: ['"0x8D4CB193C49E5BE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ed4c7590-0001-00d1-4008-fce98b000000] + x-ms-request-id: [5d94e607-0001-010e-1802-fdfe8a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,32 +47,32 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-disposition: [inline] x-ms-blob-content-language: [spanish] - x-ms-client-request-id: [6050f008-67fb-11e7-b8f1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:00 GMT'] + x-ms-client-request-id: [579459e6-68f5-11e7-bfb1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf2a918cd/blobf2a918cd?comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:00 GMT'] - ETag: ['"0x8D4CA1F44596E9A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:21 GMT'] + ETag: ['"0x8D4CB193C5076AA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ed4c759c-0001-00d1-4a08-fce98b000000] + x-ms-request-id: [5d94e623-0001-010e-2d02-fdfe8a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6056cd5c-67fb-11e7-92ed-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [579aca10-68f5-11e7-b286-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:20 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerf2a918cd/blobf2a918cd @@ -83,15 +83,15 @@ interactions: Content-Disposition: [inline] Content-Language: [spanish] Content-Length: ['1024'] - Date: ['Thu, 13 Jul 2017 18:45:00 GMT'] - ETag: ['"0x8D4CA1F44596E9A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:21 GMT'] + ETag: ['"0x8D4CB193C5076AA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [ed4c75ae-0001-00d1-5708-fce98b000000] + x-ms-request-id: [5d94e632-0001-010e-3b02-fdfe8a000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_common_blob.test_snapshot_blob.yaml b/tests/recordings/test_common_blob.test_snapshot_blob.yaml index 39a69dcd..76675fae 100644 --- a/tests/recordings/test_common_blob.test_snapshot_blob.yaml +++ b/tests/recordings/test_common_blob.test_snapshot_blob.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [60eeb8b0-67fb-11e7-84a7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:01 GMT'] + x-ms-client-request-id: [583e36c8-68f5-11e7-9c0f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:21 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer39b0e62/blob39b0e62 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [DlxLOUl8OUkStPvaWfEyHQ==] - Date: ['Thu, 13 Jul 2017 18:45:01 GMT'] - ETag: ['"0x8D4CA1F45047370"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:21 GMT'] + ETag: ['"0x8D4CB193D084FF7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [de5fded6-0001-0016-5808-fc954a000000] + x-ms-request-id: [80fa2ba3-0001-0062-3f02-fd130c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,22 +47,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6102e9fa-67fb-11e7-ad9a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5852e276-68f5-11e7-ab03-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:21 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer39b0e62/blob39b0e62?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:01 GMT'] - ETag: ['"0x8D4CA1F45047370"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:21 GMT'] + ETag: ['"0x8D4CB193D084FF7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [de5fdee0-0001-0016-6108-fc954a000000] - x-ms-snapshot: ['2017-07-13T18:45:01.7259408Z'] + x-ms-request-id: [80fa2bbd-0001-0062-5602-fd130c000000] + x-ms-snapshot: ['2017-07-15T00:34:22.5078727Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_common_blob.test_unicode_get_blob_unicode_name.yaml b/tests/recordings/test_common_blob.test_unicode_get_blob_unicode_name.yaml index 15a5c655..258ec974 100644 --- a/tests/recordings/test_common_blob.test_unicode_get_blob_unicode_name.yaml +++ b/tests/recordings/test_common_blob.test_unicode_get_blob_unicode_name.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [61347800-67fb-11e7-90f9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:02 GMT'] + x-ms-client-request-id: [588e5108-68f5-11e7-a1ac-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1e3014be/%E5%95%8A%E9%BD%84%E4%B8%82%E7%8B%9B%E7%8B%9C @@ -15,12 +15,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:45:02 GMT'] - ETag: ['"0x8D4CA1F454CFB34"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:23 GMT'] + ETag: ['"0x8D4CB193D58C8CF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ee613924-0001-012e-1c08-fc9246000000] + x-ms-request-id: [1ab8746c-0001-0082-4d02-fdf584000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [614ace1e-67fb-11e7-bf18-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [58a38eb0-68f5-11e7-af1a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:22 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -42,16 +42,16 @@ interactions: Content-Length: ['11'] Content-Range: [bytes 0-10/11] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:45:02 GMT'] - ETag: ['"0x8D4CA1F454CFB34"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:23 GMT'] + ETag: ['"0x8D4CB193D58C8CF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [XrY7u+Ae7tCTyyK7j1rNww==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [ee61392b-0001-012e-2108-fc9246000000] + x-ms-request-id: [1ab8747a-0001-0082-5702-fdf584000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_container.test_container_exists.yaml b/tests/recordings/test_container.test_container_exists.yaml index 53f85663..ce57e84e 100644 --- a/tests/recordings/test_container.test_container_exists.yaml +++ b/tests/recordings/test_container.test_container_exists.yaml @@ -4,45 +4,45 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6176941a-67fb-11e7-ac09-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [58c0b7f6-68f5-11e7-8d25-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container12fe0ef2?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:01 GMT'] - ETag: ['"0x8D4CA1F45C1421D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:22 GMT'] + ETag: ['"0x8D4CB193D6EFD03"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [791be54d-0001-0121-0608-fc7fb0000000] + x-ms-request-id: [0ab1b996-0001-004e-5102-fd9131000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6191ca28-67fb-11e7-8d9b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [58d536a4-68f5-11e7-a10d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:22 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container12fe0ef2?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:02 GMT'] - ETag: ['"0x8D4CA1F45C1421D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:22 GMT'] + ETag: ['"0x8D4CB193D6EFD03"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [791be55a-0001-0121-0f08-fc7fb0000000] + x-ms-request-id: [0ab1b9ad-0001-004e-6602-fd9131000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_container_exists_with_lease.yaml b/tests/recordings/test_container.test_container_exists_with_lease.yaml index c694ee2a..11aa2970 100644 --- a/tests/recordings/test_container.test_container_exists_with_lease.yaml +++ b/tests/recordings/test_container.test_container_exists_with_lease.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [61aa3c98-67fb-11e7-9736-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [58ef949a-68f5-11e7-89e5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerd2a01376?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:03 GMT'] - ETag: ['"0x8D4CA1F4645066C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:23 GMT'] + ETag: ['"0x8D4CB193DE83622"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a86d1173-0001-013c-2908-fca65a000000] + x-ms-request-id: [50ed6330-0001-00b9-7702-fdb7da000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [61bf5f9c-67fb-11e7-98eb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5909507e-68f5-11e7-b775-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:22 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -37,38 +37,38 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:03 GMT'] - ETag: ['"0x8D4CA1F4645066C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:23 GMT'] + ETag: ['"0x8D4CB193DE83622"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [b80dd87c-0fd8-4959-8741-df1bf1f8bfa8] - x-ms-request-id: [a86d119c-0001-013c-4c08-fca65a000000] + x-ms-lease-id: [9103a600-df0a-4f31-b98e-86eee887e91c] + x-ms-request-id: [50ed6353-0001-00b9-1202-fdb7da000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [61c4c7f4-67fb-11e7-8914-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [590efb34-68f5-11e7-bced-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:22 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/containerd2a01376?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:03 GMT'] - ETag: ['"0x8D4CA1F4645066C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:23 GMT'] + ETag: ['"0x8D4CB193DE83622"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-lease-duration: [infinite] x-ms-lease-state: [leased] x-ms-lease-status: [locked] - x-ms-request-id: [a86d11a9-0001-013c-5908-fca65a000000] + x-ms-request-id: [50ed635d-0001-00b9-1b02-fdb7da000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_container_not_exists.yaml b/tests/recordings/test_container.test_container_not_exists.yaml index a733d63a..1eb6f68a 100644 --- a/tests/recordings/test_container.test_container_not_exists.yaml +++ b/tests/recordings/test_container.test_container_not_exists.yaml @@ -3,23 +3,23 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [61ee2af4-67fb-11e7-9e8f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [593bb708-68f5-11e7-8f6c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:23 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container52b210a2?restype=container response: body: {string: "\uFEFFContainerNotFoundThe\ - \ specified container does not exist.\nRequestId:1d37945f-0001-00b6-2108-fc5a2c000000\n\ - Time:2017-07-13T18:45:03.4252889Z"} + \ specified container does not exist.\nRequestId:e0af9823-0001-00d5-4002-fd1c09000000\n\ + Time:2017-07-15T00:34:24.1901894Z"} headers: Content-Length: ['225'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [1d37945f-0001-00b6-2108-fc5a2c000000] + x-ms-request-id: [e0af9823-0001-00d5-4002-fd1c09000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified container does not exist.} version: 1 diff --git a/tests/recordings/test_container.test_create_container.yaml b/tests/recordings/test_container.test_create_container.yaml index bd69de3d..48e5b595 100644 --- a/tests/recordings/test_container.test_create_container.yaml +++ b/tests/recordings/test_container.test_create_container.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6216ae46-67fb-11e7-9986-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [59646478-68f5-11e7-8e2e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container11d00ec6?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:03 GMT'] - ETag: ['"0x8D4CA1F465868BE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:23 GMT'] + ETag: ['"0x8D4CB193DCBECD1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [abd441ea-0001-0031-3008-fc0f03000000] + x-ms-request-id: [acafd5c1-0001-00c9-6f02-fdc41e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_container.test_create_container_fail_on_exist.yaml b/tests/recordings/test_container.test_create_container_fail_on_exist.yaml index 1fa20f42..4f691ebb 100644 --- a/tests/recordings/test_container.test_create_container_fail_on_exist.yaml +++ b/tests/recordings/test_container.test_create_container_fail_on_exist.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [62422198-67fb-11e7-b794-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5992410c-68f5-11e7-84fe-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerad31489?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:03 GMT'] - ETag: ['"0x8D4CA1F467C6EE7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:24 GMT'] + ETag: ['"0x8D4CB193E5B3B99"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4c7868ff-0001-0010-2a08-fc6232000000] + x-ms-request-id: [e7a37bf9-0001-0121-0602-fd7fb0000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_container.test_create_container_with_already_existing_container.yaml b/tests/recordings/test_container.test_create_container_with_already_existing_container.yaml index 328939b6..e61857c1 100644 --- a/tests/recordings/test_container.test_create_container_with_already_existing_container.yaml +++ b/tests/recordings/test_container.test_create_container_with_already_existing_container.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [626b36f0-67fb-11e7-a27f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [59bc3e14-68f5-11e7-9e3a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerc5151c0e?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:03 GMT'] - ETag: ['"0x8D4CA1F4682E0A2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:24 GMT'] + ETag: ['"0x8D4CB193EA90214"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f773b7e-0001-00a3-2f08-fc98b5000000] + x-ms-request-id: [bfe863f3-0001-0115-4102-fdd018000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [62800f62-67fb-11e7-8364-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [59d167c6-68f5-11e7-b23c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerc5151c0e?restype=container response: body: {string: "\uFEFFContainerAlreadyExistsThe\ - \ specified container already exists.\nRequestId:4f773b94-0001-00a3-4208-fc98b5000000\n\ - Time:2017-07-13T18:45:04.2232073Z"} + \ specified container already exists.\nRequestId:bfe8640a-0001-0115-5502-fdd018000000\n\ + Time:2017-07-15T00:34:25.2367287Z"} headers: Content-Length: ['230'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [4f773b94-0001-00a3-4208-fc98b5000000] + x-ms-request-id: [bfe8640a-0001-0115-5502-fdd018000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: The specified container already exists.} version: 1 diff --git a/tests/recordings/test_container.test_create_container_with_already_existing_container_fail_on_exist.yaml b/tests/recordings/test_container.test_create_container_with_already_existing_container_fail_on_exist.yaml index 67922da4..9bb073e3 100644 --- a/tests/recordings/test_container.test_create_container_with_already_existing_container_fail_on_exist.yaml +++ b/tests/recordings/test_container.test_create_container_with_already_existing_container_fail_on_exist.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [629b3ca6-67fb-11e7-b3e4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [59ed6c50-68f5-11e7-89a4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container781721d1?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:04 GMT'] - ETag: ['"0x8D4CA1F46A3D9D3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:24 GMT'] + ETag: ['"0x8D4CB193E964293"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [be30685f-0001-010d-3008-fcfd8d000000] + x-ms-request-id: [101d83ae-0001-0109-0402-fd080f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [62b080a2-67fb-11e7-88f1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5a02d338-68f5-11e7-8654-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container781721d1?restype=container response: body: {string: "\uFEFFContainerAlreadyExistsThe\ - \ specified container already exists.\nRequestId:be306867-0001-010d-3508-fcfd8d000000\n\ - Time:2017-07-13T18:45:04.4402975Z"} + \ specified container already exists.\nRequestId:101d83bb-0001-0109-0d02-fd080f000000\n\ + Time:2017-07-15T00:34:25.1368784Z"} headers: Content-Length: ['230'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [be306867-0001-010d-3508-fcfd8d000000] + x-ms-request-id: [101d83bb-0001-0109-0d02-fd080f000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: The specified container already exists.} version: 1 diff --git a/tests/recordings/test_container.test_create_container_with_metadata.yaml b/tests/recordings/test_container.test_create_container_with_metadata.yaml index b9b1251f..a2c4464b 100644 --- a/tests/recordings/test_container.test_create_container_with_metadata.yaml +++ b/tests/recordings/test_container.test_create_container_with_metadata.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [62ca9f64-67fb-11e7-bf58-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5a2a20dc-68f5-11e7-a42c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:24 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -15,36 +15,36 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:04 GMT'] - ETag: ['"0x8D4CA1F46E00876"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:25 GMT'] + ETag: ['"0x8D4CB193F9A87DA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f604d0df-0001-0114-3c08-fcd1e5000000] + x-ms-request-id: [00484631-0001-0110-4602-fd2467000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [62df9858-67fb-11e7-bd67-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5a3e5dae-68f5-11e7-987b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:24 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/containerc031481?restype=container&comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:04 GMT'] - ETag: ['"0x8D4CA1F46E00876"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:25 GMT'] + ETag: ['"0x8D4CB193F9A87DA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [f604d0f7-0001-0114-5208-fcd1e5000000] + x-ms-request-id: [00484648-0001-0110-5902-fd2467000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_create_container_with_public_access_blob.yaml b/tests/recordings/test_container.test_create_container_with_public_access_blob.yaml index 92f60475..e72c7c21 100644 --- a/tests/recordings/test_container.test_create_container_with_public_access_blob.yaml +++ b/tests/recordings/test_container.test_create_container_with_public_access_blob.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-public-access: [blob] - x-ms-client-request-id: [63005b0c-67fb-11e7-b886-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:05 GMT'] + x-ms-client-request-id: [5a5cf99e-68f5-11e7-8b35-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:25 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containeref7b188e?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:04 GMT'] - ETag: ['"0x8D4CA1F470503A5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:24 GMT'] + ETag: ['"0x8D4CB193EC8D383"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7e330250-0001-011b-0408-fc3c13000000] + x-ms-request-id: [5e8c1841-0001-0118-2902-fd3f14000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -27,10 +27,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [63145962-67fb-11e7-a8b8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:05 GMT'] + x-ms-client-request-id: [5a72305c-68f5-11e7-ba9c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:25 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containeref7b188e/blob1 @@ -38,12 +38,12 @@ interactions: body: {string: ''} headers: Content-MD5: [0W+zbwkR+HiZjBNhka9wXg==] - Date: ['Thu, 13 Jul 2017 18:45:04 GMT'] - ETag: ['"0x8D4CA1F471F01F5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:24 GMT'] + ETag: ['"0x8D4CB193F2F8DAC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7e330254-0001-011b-0608-fc3c13000000] + x-ms-request-id: [5e8c1852-0001-0118-3802-fd3f14000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [631c5fb6-67fb-11e7-b5c3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5a7a5234-68f5-11e7-96ee-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:25 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -65,16 +65,16 @@ interactions: Content-Length: ['3'] Content-Range: [bytes 0-2/3] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:45:05 GMT'] - ETag: ['"0x8D4CA1F471F01F5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:25 GMT'] + ETag: ['"0x8D4CB193F2F8DAC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [0W+zbwkR+HiZjBNhka9wXg==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [7449abbd-0001-0060-1e08-fc11f6000000] + x-ms-request-id: [f23733a7-0001-0130-6602-fd48ab000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_container.test_create_container_with_public_access_container.yaml b/tests/recordings/test_container.test_create_container_with_public_access_container.yaml index 182399cc..aa0803f1 100644 --- a/tests/recordings/test_container.test_create_container_with_public_access_container.yaml +++ b/tests/recordings/test_container.test_create_container_with_public_access_container.yaml @@ -4,31 +4,31 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-public-access: [container] - x-ms-client-request-id: [634fabf0-67fb-11e7-aa5f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:05 GMT'] + x-ms-client-request-id: [5ac00a3e-68f5-11e7-9d50-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:25 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container70e51ab2?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:05 GMT'] - ETag: ['"0x8D4CA1F4744BF97"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:27 GMT'] + ETag: ['"0x8D4CB19400106D0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a6368ec4-0001-0067-1008-fce773000000] + x-ms-request-id: [66ec511e-0001-0138-3502-fd53d8000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6364713e-67fb-11e7-88a3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5ad4bbfa-68f5-11e7-b6d9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:25 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container70e51ab2?restype=container&comp=list @@ -38,11 +38,11 @@ interactions: container70e51ab2\">"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [d4409c60-0001-0038-0208-fc158d000000] + x-ms-request-id: [738df71b-0001-0088-7502-fdec0d000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_delete_container_with_existing_container.yaml b/tests/recordings/test_container.test_delete_container_with_existing_container.yaml index fa4888a8..7798a1e4 100644 --- a/tests/recordings/test_container.test_delete_container_with_existing_container.yaml +++ b/tests/recordings/test_container.test_delete_container_with_existing_container.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6391f44c-67fb-11e7-9881-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5b053dac-68f5-11e7-b0e2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:26 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerf19d18cc?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:05 GMT'] - ETag: ['"0x8D4CA1F479EA75D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:26 GMT'] + ETag: ['"0x8D4CB193FBD340C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3e947acb-0001-002b-0408-fc206c000000] + x-ms-request-id: [0be309c8-0001-007c-0802-fdc9e1000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,42 +26,42 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [63b7143e-67fb-11e7-abaf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5b1cb0cc-68f5-11e7-a254-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:26 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/containerf19d18cc?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3e947b13-0001-002b-3c08-fc206c000000] + x-ms-request-id: [0be309ee-0001-007c-2b02-fdc9e1000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [63bea01e-67fb-11e7-981b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5b22b0d0-68f5-11e7-b640-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:26 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/containerf19d18cc?restype=container response: body: {string: "\uFEFFContainerNotFoundThe\ - \ specified container does not exist.\nRequestId:3e947b35-0001-002b-5c08-fc206c000000\n\ - Time:2017-07-13T18:45:06.1920503Z"} + \ specified container does not exist.\nRequestId:0be30a00-0001-007c-3d02-fdc9e1000000\n\ + Time:2017-07-15T00:34:27.1118495Z"} headers: Content-Length: ['225'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [3e947b35-0001-002b-5c08-fc206c000000] + x-ms-request-id: [0be30a00-0001-007c-3d02-fdc9e1000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified container does not exist.} version: 1 diff --git a/tests/recordings/test_container.test_delete_container_with_existing_container_fail_not_exist.yaml b/tests/recordings/test_container.test_delete_container_with_existing_container_fail_not_exist.yaml index 5b3c3371..62792454 100644 --- a/tests/recordings/test_container.test_delete_container_with_existing_container_fail_not_exist.yaml +++ b/tests/recordings/test_container.test_delete_container_with_existing_container_fail_not_exist.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [63dadbb4-67fb-11e7-bbdc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5b3d6c0c-68f5-11e7-8138-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:26 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container96311f03?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:06 GMT'] - ETag: ['"0x8D4CA1F481AFA9F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:26 GMT'] + ETag: ['"0x8D4CB1940077FFE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1ab11bb1-0001-006d-3d08-fcfefa000000] + x-ms-request-id: [21b8826d-0001-0098-0702-fddaeb000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,42 +26,42 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [63f096dc-67fb-11e7-b9a2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5b51b79a-68f5-11e7-b116-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:26 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/container96311f03?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1ab11bea-0001-006d-7208-fcfefa000000] + x-ms-request-id: [21b88284-0001-0098-1702-fddaeb000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [63f5b20c-67fb-11e7-8a65-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5b57664a-68f5-11e7-aec2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:26 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container96311f03?restype=container response: body: {string: "\uFEFFContainerNotFoundThe\ - \ specified container does not exist.\nRequestId:1ab11c1b-0001-006d-1f08-fcfefa000000\n\ - Time:2017-07-13T18:45:06.9377674Z"} + \ specified container does not exist.\nRequestId:21b88294-0001-0098-2602-fddaeb000000\n\ + Time:2017-07-15T00:34:27.5667350Z"} headers: Content-Length: ['225'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [1ab11c1b-0001-006d-1f08-fcfefa000000] + x-ms-request-id: [21b88294-0001-0098-2602-fddaeb000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified container does not exist.} version: 1 diff --git a/tests/recordings/test_container.test_delete_container_with_lease_id.yaml b/tests/recordings/test_container.test_delete_container_with_lease_id.yaml index f8979a48..1760b14f 100644 --- a/tests/recordings/test_container.test_delete_container_with_lease_id.yaml +++ b/tests/recordings/test_container.test_delete_container_with_lease_id.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [64143934-67fb-11e7-997f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5b71d976-68f5-11e7-b089-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:26 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerba31475?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:06 GMT'] - ETag: ['"0x8D4CA1F482A88D7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:26 GMT'] + ETag: ['"0x8D4CB193FA2983E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3249156e-0001-0088-7408-fcec0d000000] + x-ms-request-id: [9724a0d8-0001-0028-5a02-fd236b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6428f82e-67fb-11e7-9d26-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5b88d63a-68f5-11e7-90a5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:27 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['15'] x-ms-version: ['2017-04-17'] @@ -37,13 +37,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:06 GMT'] - ETag: ['"0x8D4CA1F482A88D7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:26 GMT'] + ETag: ['"0x8D4CB193FA2983E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [f5a5a314-f58c-4e7a-9ca6-f1c57599f304] - x-ms-request-id: [3249157f-0001-0088-7f08-fcec0d000000] + x-ms-lease-id: [62e6bbda-f844-4777-8798-da5918ce6b65] + x-ms-request-id: [9724a0fe-0001-0028-7802-fd236b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -51,43 +51,43 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [642f2e7e-67fb-11e7-817e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:07 GMT'] - x-ms-lease-id: [f5a5a314-f58c-4e7a-9ca6-f1c57599f304] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5b8ede90-68f5-11e7-9f35-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:27 GMT'] + x-ms-lease-id: [62e6bbda-f844-4777-8798-da5918ce6b65] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/containerba31475?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [32491590-0001-0088-0c08-fcec0d000000] + x-ms-request-id: [9724a10f-0001-0028-0902-fd236b000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6438655c-67fb-11e7-9914-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5b95ecba-68f5-11e7-a552-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:27 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/containerba31475?restype=container response: body: {string: "\uFEFFContainerNotFoundThe\ - \ specified container does not exist.\nRequestId:3249159d-0001-0088-1508-fcec0d000000\n\ - Time:2017-07-13T18:45:07.1027830Z"} + \ specified container does not exist.\nRequestId:9724a125-0001-0028-1e02-fd236b000000\n\ + Time:2017-07-15T00:34:26.9614798Z"} headers: Content-Length: ['225'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [3249159d-0001-0088-1508-fcec0d000000] + x-ms-request-id: [9724a125-0001-0028-1e02-fd236b000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified container does not exist.} version: 1 diff --git a/tests/recordings/test_container.test_delete_container_with_non_existing_container.yaml b/tests/recordings/test_container.test_delete_container_with_non_existing_container.yaml index 0bb01ce9..047b7783 100644 --- a/tests/recordings/test_container.test_delete_container_with_non_existing_container.yaml +++ b/tests/recordings/test_container.test_delete_container_with_non_existing_container.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6454be46-67fb-11e7-9dec-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5bb263e2-68f5-11e7-a2f0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:27 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/container58dc1a76?restype=container response: body: {string: "\uFEFFContainerNotFoundThe\ - \ specified container does not exist.\nRequestId:8cde39ef-0001-007b-1b08-fc3f64000000\n\ - Time:2017-07-13T18:45:07.3381919Z"} + \ specified container does not exist.\nRequestId:ab236264-0001-010b-0302-fd0af5000000\n\ + Time:2017-07-15T00:34:28.6425854Z"} headers: Content-Length: ['225'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [8cde39ef-0001-007b-1b08-fc3f64000000] + x-ms-request-id: [ab236264-0001-010b-0302-fd0af5000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified container does not exist.} version: 1 diff --git a/tests/recordings/test_container.test_delete_container_with_non_existing_container_fail_not_exist.yaml b/tests/recordings/test_container.test_delete_container_with_non_existing_container_fail_not_exist.yaml index 7438560c..09c1ba91 100644 --- a/tests/recordings/test_container.test_delete_container_with_non_existing_container_fail_not_exist.yaml +++ b/tests/recordings/test_container.test_delete_container_with_non_existing_container_fail_not_exist.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [647ecb28-67fb-11e7-820b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5bdaf78a-68f5-11e7-b0ba-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:27 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/container166620ad?restype=container response: body: {string: "\uFEFFContainerNotFoundThe\ - \ specified container does not exist.\nRequestId:b95a6768-0001-00e6-1808-fc4524000000\n\ - Time:2017-07-13T18:45:08.0563098Z"} + \ specified container does not exist.\nRequestId:9e708f45-0001-00ff-6102-fd694c000000\n\ + Time:2017-07-15T00:34:28.4073184Z"} headers: Content-Length: ['225'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [b95a6768-0001-00e6-1808-fc4524000000] + x-ms-request-id: [9e708f45-0001-00ff-6102-fd694c000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified container does not exist.} version: 1 diff --git a/tests/recordings/test_container.test_get_container_acl.yaml b/tests/recordings/test_container.test_get_container_acl.yaml index 364e43cd..518dc82a 100644 --- a/tests/recordings/test_container.test_get_container_acl.yaml +++ b/tests/recordings/test_container.test_get_container_acl.yaml @@ -4,30 +4,30 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [64a79030-67fb-11e7-b302-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5c0c7968-68f5-11e7-bea3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container21340f21?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:07 GMT'] - ETag: ['"0x8D4CA1F48AFB6FF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:27 GMT'] + ETag: ['"0x8D4CB1940D30BE2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6185c747-0001-004c-7908-fc93cb000000] + x-ms-request-id: [eb1ed5e6-0001-00cb-6302-fdc6e4000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [64bcea70-67fb-11e7-a5c3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5c2f8f1e-68f5-11e7-8d27-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:28 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container21340f21?restype=container&comp=acl @@ -36,13 +36,13 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:07 GMT'] - ETag: ['"0x8D4CA1F48AFB6FF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:28 GMT'] + ETag: ['"0x8D4CB1940D30BE2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [6185c75a-0001-004c-0908-fc93cb000000] + x-ms-request-id: [eb1ed5f3-0001-00cb-6e02-fdc6e4000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_get_container_acl_with_lease_id.yaml b/tests/recordings/test_container.test_get_container_acl_with_lease_id.yaml index 032e08a2..5c3ecbce 100644 --- a/tests/recordings/test_container.test_get_container_acl_with_lease_id.yaml +++ b/tests/recordings/test_container.test_get_container_acl_with_lease_id.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [64de7d7a-67fb-11e7-b63a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5c4b3a40-68f5-11e7-84e8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container202c14d1?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:08 GMT'] - ETag: ['"0x8D4CA1F48F9D931"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:28 GMT'] + ETag: ['"0x8D4CB19412C072A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e47cf663-0001-00f3-3008-fc87bd000000] + x-ms-request-id: [fef1b9ee-0001-0033-1d02-fd0df9000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [64f74198-67fb-11e7-b35d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5c62c50c-68f5-11e7-8bde-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:28 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -37,23 +37,23 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:08 GMT'] - ETag: ['"0x8D4CA1F48F9D931"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:28 GMT'] + ETag: ['"0x8D4CB19412C072A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [90349e30-2178-4b1e-a2f0-6eb6e7c86a5d] - x-ms-request-id: [e47cf67f-0001-00f3-4808-fc87bd000000] + x-ms-lease-id: [a4533d1a-43bb-4865-8c3c-652a405b474d] + x-ms-request-id: [fef1ba02-0001-0033-2c02-fd0df9000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [64fc9a6c-67fb-11e7-8928-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:08 GMT'] - x-ms-lease-id: [90349e30-2178-4b1e-a2f0-6eb6e7c86a5d] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5c6843d8-68f5-11e7-be7f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:28 GMT'] + x-ms-lease-id: [a4533d1a-43bb-4865-8c3c-652a405b474d] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container202c14d1?restype=container&comp=acl @@ -62,13 +62,13 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:08 GMT'] - ETag: ['"0x8D4CA1F48F9D931"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:28 GMT'] + ETag: ['"0x8D4CB19412C072A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [e47cf68e-0001-00f3-5708-fc87bd000000] + x-ms-request-id: [fef1ba0d-0001-0033-3702-fd0df9000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_get_container_metadata.yaml b/tests/recordings/test_container.test_get_container_metadata.yaml index 38794508..c48f3c50 100644 --- a/tests/recordings/test_container.test_get_container_metadata.yaml +++ b/tests/recordings/test_container.test_get_container_metadata.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [65268b92-67fb-11e7-af8f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5c94d062-68f5-11e7-a209-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container73581132?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:08 GMT'] - ETag: ['"0x8D4CA1F495396B3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:29 GMT'] + ETag: ['"0x8D4CB19419071AF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [de353f74-0001-000a-2008-fc4d5d000000] + x-ms-request-id: [f71d8bc2-0001-0013-4002-fd6135000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [653a8264-67fb-11e7-a35e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5caa4cf6-68f5-11e7-a4a4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:28 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -37,36 +37,36 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:08 GMT'] - ETag: ['"0x8D4CA1F495396B4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:29 GMT'] + ETag: ['"0x8D4CB19419071B0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [de353f89-0001-000a-3208-fc4d5d000000] + x-ms-request-id: [f71d8bcc-0001-0013-4802-fd6135000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [653ff712-67fb-11e7-9fef-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5cafa4f8-68f5-11e7-b7f9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:28 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container73581132?restype=container&comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:08 GMT'] - ETag: ['"0x8D4CA1F495396B4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:29 GMT'] + ETag: ['"0x8D4CB19419071B0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [de353f90-0001-000a-3908-fc4d5d000000] + x-ms-request-id: [f71d8bdb-0001-0013-5402-fd6135000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_get_container_metadata_with_lease_id.yaml b/tests/recordings/test_container.test_get_container_metadata_with_lease_id.yaml index c0307cea..7de2004f 100644 --- a/tests/recordings/test_container.test_get_container_metadata_with_lease_id.yaml +++ b/tests/recordings/test_container.test_get_container_metadata_with_lease_id.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [655ff3be-67fb-11e7-980d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5ccc7b28-68f5-11e7-b247-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container8f3e16e2?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:08 GMT'] - ETag: ['"0x8D4CA1F499366DE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:29 GMT'] + ETag: ['"0x8D4CB19419418F8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [de633610-0001-009c-4e08-fc2f69000000] + x-ms-request-id: [5ad02b8e-0001-002f-6502-fdd5ee000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [657664dc-67fb-11e7-8fe2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5ce1e738-68f5-11e7-b7ef-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:29 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -37,12 +37,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:08 GMT'] - ETag: ['"0x8D4CA1F499366DF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:29 GMT'] + ETag: ['"0x8D4CB19419418F9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [de633634-0001-009c-6a08-fc2f69000000] + x-ms-request-id: [5ad02b9a-0001-002f-6f02-fdd5ee000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -50,9 +50,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [657cb13e-67fb-11e7-895f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5ce97234-68f5-11e7-accd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:29 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -61,38 +61,38 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:08 GMT'] - ETag: ['"0x8D4CA1F499366DF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:29 GMT'] + ETag: ['"0x8D4CB19419418F9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [32ec7093-31bc-4a03-bb30-55f17d20461a] - x-ms-request-id: [de633650-0001-009c-0308-fc2f69000000] + x-ms-lease-id: [3bc33805-95b1-4551-a6a5-7b4fec73118e] + x-ms-request-id: [5ad02ba9-0001-002f-7b02-fdd5ee000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [65820012-67fb-11e7-8e5c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:09 GMT'] - x-ms-lease-id: [32ec7093-31bc-4a03-bb30-55f17d20461a] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5cefe5c2-68f5-11e7-86a0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:29 GMT'] + x-ms-lease-id: [3bc33805-95b1-4551-a6a5-7b4fec73118e] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container8f3e16e2?restype=container&comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:08 GMT'] - ETag: ['"0x8D4CA1F499366DF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:29 GMT'] + ETag: ['"0x8D4CB19419418F9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [de63365f-0001-009c-1208-fc2f69000000] + x-ms-request-id: [5ad02bb2-0001-002f-0302-fdd5ee000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_get_container_properties.yaml b/tests/recordings/test_container.test_get_container_properties.yaml index 46b34ef3..633e80c3 100644 --- a/tests/recordings/test_container.test_get_container_properties.yaml +++ b/tests/recordings/test_container.test_get_container_properties.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [65af56ac-67fb-11e7-b38c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5d19aa7e-68f5-11e7-8c8e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container9840123e?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:09 GMT'] - ETag: ['"0x8D4CA1F49D92F9D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:29 GMT'] + ETag: ['"0x8D4CB1941DAE3C8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1d0330d3-0001-00cb-4108-fcc6e4000000] + x-ms-request-id: [987b004e-0001-0127-6102-fd88c8000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [65c36886-67fb-11e7-8ea6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5d30042c-68f5-11e7-9080-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:29 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -37,12 +37,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:09 GMT'] - ETag: ['"0x8D4CA1F49D92F9E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:29 GMT'] + ETag: ['"0x8D4CB1941DAE3C9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1d0330e8-0001-00cb-5108-fcc6e4000000] + x-ms-request-id: [987b0061-0001-0127-6f02-fd88c8000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -50,9 +50,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [65c836e2-67fb-11e7-a2f6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5d3af094-68f5-11e7-b1a2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:29 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -61,31 +61,31 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:09 GMT'] - ETag: ['"0x8D4CA1F49D92F9E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:29 GMT'] + ETag: ['"0x8D4CB1941DAE3C9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [9e11bda3-b27a-42fe-a20b-3e2054c66aeb] - x-ms-request-id: [1d0330f9-0001-00cb-6108-fcc6e4000000] + x-ms-lease-id: [9721d5d7-0060-4d63-a7f4-783b8d8180ca] + x-ms-request-id: [987b008c-0001-0127-1702-fd88c8000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [65cd39ba-67fb-11e7-81c9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5d48504a-68f5-11e7-8485-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:29 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container9840123e?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:09 GMT'] - ETag: ['"0x8D4CA1F49D92F9E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:29 GMT'] + ETag: ['"0x8D4CB1941DAE3C9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] @@ -94,7 +94,7 @@ interactions: x-ms-lease-status: [locked] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [1d033117-0001-00cb-7b08-fcc6e4000000] + x-ms-request-id: [987b0092-0001-0127-1d02-fd88c8000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_get_container_properties_with_lease_id.yaml b/tests/recordings/test_container.test_get_container_properties_with_lease_id.yaml index 2fa5c1db..073c8bf7 100644 --- a/tests/recordings/test_container.test_get_container_properties_with_lease_id.yaml +++ b/tests/recordings/test_container.test_get_container_properties_with_lease_id.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [65f44246-67fb-11e7-9e10-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5d73d1ac-68f5-11e7-a1da-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerc2ce17ee?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:10 GMT'] - ETag: ['"0x8D4CA1F4A661ADC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:30 GMT'] + ETag: ['"0x8D4CB1942324697"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [61d85ddb-0001-0136-7c08-fcbfd3000000] + x-ms-request-id: [b690c856-0001-00a3-0402-fd98b5000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [66089366-67fb-11e7-9a3e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5d8868c6-68f5-11e7-b589-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:30 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -37,12 +37,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:10 GMT'] - ETag: ['"0x8D4CA1F4A661ADD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:30 GMT'] + ETag: ['"0x8D4CB1942324698"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [61d85df1-0001-0136-0f08-fcbfd3000000] + x-ms-request-id: [b690c86e-0001-00a3-1602-fd98b5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -50,9 +50,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [660e7bb4-67fb-11e7-97df-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5d90253a-68f5-11e7-b3b9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:30 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -61,32 +61,32 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:10 GMT'] - ETag: ['"0x8D4CA1F4A661ADD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:30 GMT'] + ETag: ['"0x8D4CB1942324698"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [a064a124-b2e3-4dd3-ab25-a3b194efadb6] - x-ms-request-id: [61d85dff-0001-0136-1b08-fcbfd3000000] + x-ms-lease-id: [e636a955-507e-4a44-b319-a5a875a84b1d] + x-ms-request-id: [b690c89e-0001-00a3-3c02-fd98b5000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [66139dc6-67fb-11e7-913a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:10 GMT'] - x-ms-lease-id: [a064a124-b2e3-4dd3-ab25-a3b194efadb6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5da79f1e-68f5-11e7-b7f7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:30 GMT'] + x-ms-lease-id: [e636a955-507e-4a44-b319-a5a875a84b1d] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/containerc2ce17ee?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:10 GMT'] - ETag: ['"0x8D4CA1F4A661ADD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:30 GMT'] + ETag: ['"0x8D4CB1942324698"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] @@ -95,7 +95,7 @@ interactions: x-ms-lease-status: [locked] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [61d85e09-0001-0136-2308-fcbfd3000000] + x-ms-request-id: [b690c8a6-0001-00a3-4302-fd98b5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -103,9 +103,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6618c428-67fb-11e7-a1ca-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5daccb88-68f5-11e7-ba58-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:30 GMT'] x-ms-lease-action: [break] x-ms-version: ['2017-04-17'] method: PUT @@ -113,13 +113,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:10 GMT'] - ETag: ['"0x8D4CA1F4A661ADD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:30 GMT'] + ETag: ['"0x8D4CB1942324698"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-time: ['0'] - x-ms-request-id: [61d85e18-0001-0136-3008-fcbfd3000000] + x-ms-request-id: [b690c8b0-0001-00a3-4d02-fd98b5000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_container.test_lease_container_acquire_and_release.yaml b/tests/recordings/test_container.test_lease_container_acquire_and_release.yaml index a9121454..c7f82c7b 100644 --- a/tests/recordings/test_container.test_lease_container_acquire_and_release.yaml +++ b/tests/recordings/test_container.test_lease_container_acquire_and_release.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [663f145e-67fb-11e7-a6c8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5dcd72c0-68f5-11e7-99fd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container77341677?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:10 GMT'] - ETag: ['"0x8D4CA1F4A6111BC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:30 GMT'] + ETag: ['"0x8D4CB19428E49F2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7db7975b-0001-0075-7308-fcd36f000000] + x-ms-request-id: [daffb1ee-0001-0046-5302-fd8a42000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [665573a2-67fb-11e7-80c7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5de6257a-68f5-11e7-a612-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:30 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -37,13 +37,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:10 GMT'] - ETag: ['"0x8D4CA1F4A6111BC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:30 GMT'] + ETag: ['"0x8D4CB19428E49F2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [17e09c60-c89c-492b-8fdd-924118d7414f] - x-ms-request-id: [7db7976b-0001-0075-7f08-fcd36f000000] + x-ms-lease-id: [79e148b8-d66e-4c47-92fb-2ef3e539e17c] + x-ms-request-id: [daffb205-0001-0046-6602-fd8a42000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -51,23 +51,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [665c3de2-67fb-11e7-bc68-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5deb7b94-68f5-11e7-8b44-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:31 GMT'] x-ms-lease-action: [release] - x-ms-lease-id: [17e09c60-c89c-492b-8fdd-924118d7414f] + x-ms-lease-id: [79e148b8-d66e-4c47-92fb-2ef3e539e17c] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container77341677?restype=container&comp=lease response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:10 GMT'] - ETag: ['"0x8D4CA1F4A6111BC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:30 GMT'] + ETag: ['"0x8D4CB19428E49F2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7db79774-0001-0075-0608-fcd36f000000] + x-ms-request-id: [daffb20e-0001-0046-6f02-fd8a42000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_lease_container_break_period.yaml b/tests/recordings/test_container.test_lease_container_break_period.yaml index 9ffad609..f54a4163 100644 --- a/tests/recordings/test_container.test_lease_container_break_period.yaml +++ b/tests/recordings/test_container.test_lease_container_break_period.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6692fba8-67fb-11e7-9458-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5e0716c6-68f5-11e7-a41d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containere23113a2?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:10 GMT'] - ETag: ['"0x8D4CA1F4A9D526F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:31 GMT'] + ETag: ['"0x8D4CB19431C8AFD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [707a82f1-0001-0003-2408-fc57d3000000] + x-ms-request-id: [05dc967c-0001-0076-5302-fdd068000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [66acebfa-67fb-11e7-bb95-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5e1b5e74-68f5-11e7-8e44-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:31 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['15'] x-ms-version: ['2017-04-17'] @@ -37,13 +37,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:10 GMT'] - ETag: ['"0x8D4CA1F4A9D526F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:31 GMT'] + ETag: ['"0x8D4CB19431C8AFD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [cdc1dd31-c0ee-4c0f-8a32-0f7076de36c0] - x-ms-request-id: [707a831b-0001-0003-4708-fc57d3000000] + x-ms-lease-id: [b421d636-2449-4db7-a54a-f2726d17bb8c] + x-ms-request-id: [05dc9682-0001-0076-5602-fdd068000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [66b28d3a-67fb-11e7-a718-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [5e205e54-68f5-11e7-a461-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:31 GMT'] x-ms-lease-action: [break] x-ms-lease-break-period: ['5'] x-ms-version: ['2017-04-17'] @@ -62,13 +62,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:10 GMT'] - ETag: ['"0x8D4CA1F4A9D526F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:31 GMT'] + ETag: ['"0x8D4CB19431C8AFD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-time: ['5'] - x-ms-request-id: [707a8334-0001-0003-5f08-fc57d3000000] + x-ms-request-id: [05dc968a-0001-0076-5e02-fdd068000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -76,23 +76,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6a58e69e-67fb-11e7-b871-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:17 GMT'] - x-ms-lease-id: [cdc1dd31-c0ee-4c0f-8a32-0f7076de36c0] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [61b90e80-68f5-11e7-b62d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:37 GMT'] + x-ms-lease-id: [b421d636-2449-4db7-a54a-f2726d17bb8c] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/containere23113a2?restype=container response: body: {string: "\uFEFFLeaseLostA\ - \ lease ID was specified, but the lease for the container has expired.\nRequestId:707a9088-0001-0003-3708-fc57d3000000\n\ - Time:2017-07-13T18:45:17.2802322Z"} + \ lease ID was specified, but the lease for the container has expired.\nRequestId:05dc9ae3-0001-0076-6302-fdd068000000\n\ + Time:2017-07-15T00:34:38.7711756Z"} headers: Content-Length: ['248'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [707a9088-0001-0003-3708-fc57d3000000] + x-ms-request-id: [05dc9ae3-0001-0076-6302-fdd068000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: 'A lease ID was specified, but the lease for the container has expired.'} diff --git a/tests/recordings/test_container.test_lease_container_break_released_lease_fails.yaml b/tests/recordings/test_container.test_lease_container_break_released_lease_fails.yaml index c6eb80d2..0f7d2498 100644 --- a/tests/recordings/test_container.test_lease_container_break_released_lease_fails.yaml +++ b/tests/recordings/test_container.test_lease_container_break_released_lease_fails.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6a7436f8-67fb-11e7-a0e4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [61d4f38c-68f5-11e7-9ad2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container1e4e193b?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:17 GMT'] - ETag: ['"0x8D4CA1F4E91ACAF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:38 GMT'] + ETag: ['"0x8D4CB1946E9D563"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [072e558f-0001-0096-5408-fc36e0000000] + x-ms-request-id: [c16ce043-0001-0132-6502-fd4a51000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6a87e5ae-67fb-11e7-ba77-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [61e81fcc-68f5-11e7-bdd2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:37 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -37,13 +37,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:17 GMT'] - ETag: ['"0x8D4CA1F4E91ACAF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:38 GMT'] + ETag: ['"0x8D4CB1946E9D563"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [5617295c-1b51-4f3e-ba9e-1ef7af2f52ae] - x-ms-request-id: [072e5597-0001-0096-5a08-fc36e0000000] + x-ms-lease-id: [76b358c3-7008-4be3-9b44-7f37efb32711] + x-ms-request-id: [c16ce04b-0001-0132-6b02-fd4a51000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -51,23 +51,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6a8d4ea4-67fb-11e7-831c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [61ed6bda-68f5-11e7-b45c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:37 GMT'] x-ms-lease-action: [release] - x-ms-lease-id: [5617295c-1b51-4f3e-ba9e-1ef7af2f52ae] + x-ms-lease-id: [76b358c3-7008-4be3-9b44-7f37efb32711] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container1e4e193b?restype=container&comp=lease response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:17 GMT'] - ETag: ['"0x8D4CA1F4E91ACAF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:38 GMT'] + ETag: ['"0x8D4CB1946E9D563"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [072e559f-0001-0096-6208-fc36e0000000] + x-ms-request-id: [c16ce057-0001-0132-7502-fd4a51000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -75,23 +75,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6a92f658-67fb-11e7-b62a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [61f2bd62-68f5-11e7-8307-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:37 GMT'] x-ms-lease-action: [break] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container1e4e193b?restype=container&comp=lease response: body: {string: "\uFEFFLeaseNotPresentWithLeaseOperationThere\ - \ is currently no lease on the container.\nRequestId:072e55a8-0001-0096-6b08-fc36e0000000\n\ - Time:2017-07-13T18:45:17.8440231Z"} + \ is currently no lease on the container.\nRequestId:c16ce066-0001-0132-0402-fd4a51000000\n\ + Time:2017-07-15T00:34:39.1493860Z"} headers: Content-Length: ['247'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [072e55a8-0001-0096-6b08-fc36e0000000] + x-ms-request-id: [c16ce066-0001-0132-0402-fd4a51000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: There is currently no lease on the container.} version: 1 diff --git a/tests/recordings/test_container.test_lease_container_change_lease_id.yaml b/tests/recordings/test_container.test_lease_container_change_lease_id.yaml index 28b08949..b92a56c9 100644 --- a/tests/recordings/test_container.test_lease_container_change_lease_id.yaml +++ b/tests/recordings/test_container.test_lease_container_change_lease_id.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6ab3c7be-67fb-11e7-8a38-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [620dc16e-68f5-11e7-8f4c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container1ea014b6?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:17 GMT'] - ETag: ['"0x8D4CA1F4EFFDFA1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:39 GMT'] + ETag: ['"0x8D4CB1947525E68"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [96ab8ae8-0001-0011-5508-fc63cf000000] + x-ms-request-id: [1964a02e-0001-013a-0c02-fd5122000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6ac7f90a-67fb-11e7-912d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [6221900c-68f5-11e7-bd42-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:38 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -37,13 +37,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:17 GMT'] - ETag: ['"0x8D4CA1F4EFFDFA1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:39 GMT'] + ETag: ['"0x8D4CB1947525E68"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [b65a5d70-3caa-4355-8d2f-ee2ad50befae] - x-ms-request-id: [96ab8af0-0001-0011-5b08-fc63cf000000] + x-ms-lease-id: [d2e2db16-2881-44df-b459-c545079cf856] + x-ms-request-id: [1964a04a-0001-013a-1d02-fd5122000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -51,11 +51,11 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6acd4e64-67fb-11e7-990a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [6229447a-68f5-11e7-916f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:38 GMT'] x-ms-lease-action: [change] - x-ms-lease-id: [b65a5d70-3caa-4355-8d2f-ee2ad50befae] + x-ms-lease-id: [d2e2db16-2881-44df-b459-c545079cf856] x-ms-proposed-lease-id: [29e0b239-ecda-4f69-bfa3-95f6af91464c] x-ms-version: ['2017-04-17'] method: PUT @@ -63,13 +63,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:17 GMT'] - ETag: ['"0x8D4CA1F4EFFDFA1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:39 GMT'] + ETag: ['"0x8D4CB1947525E68"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-id: [29e0b239-ecda-4f69-bfa3-95f6af91464c] - x-ms-request-id: [96ab8af7-0001-0011-6108-fc63cf000000] + x-ms-request-id: [1964a05c-0001-013a-2c02-fd5122000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -77,9 +77,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6ad89ff8-67fb-11e7-8dff-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [6232cdc6-68f5-11e7-9669-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:38 GMT'] x-ms-lease-action: [renew] x-ms-lease-id: [29e0b239-ecda-4f69-bfa3-95f6af91464c] x-ms-version: ['2017-04-17'] @@ -88,13 +88,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:17 GMT'] - ETag: ['"0x8D4CA1F4EFFDFA1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:39 GMT'] + ETag: ['"0x8D4CB1947525E68"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-id: [29e0b239-ecda-4f69-bfa3-95f6af91464c] - x-ms-request-id: [96ab8b08-0001-0011-6c08-fc63cf000000] + x-ms-request-id: [1964a078-0001-013a-4602-fd5122000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_lease_container_renew.yaml b/tests/recordings/test_container.test_lease_container_renew.yaml index 71df983e..3c26cba0 100644 --- a/tests/recordings/test_container.test_lease_container_renew.yaml +++ b/tests/recordings/test_container.test_lease_container_renew.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6b2eb73a-67fb-11e7-9a01-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [625c1c1a-68f5-11e7-ae6a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container61c510dc?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:17 GMT'] - ETag: ['"0x8D4CA1F4F0BC47E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:38 GMT'] + ETag: ['"0x8D4CB19470D59E3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78c0d60-0001-0017-1708-fc94b7000000] + x-ms-request-id: [9c3a905e-0001-0052-1102-fd4926000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6b432f08-67fb-11e7-8808-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [6270701e-68f5-11e7-8c5d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:38 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['15'] x-ms-version: ['2017-04-17'] @@ -37,13 +37,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:17 GMT'] - ETag: ['"0x8D4CA1F4F0BC47E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:38 GMT'] + ETag: ['"0x8D4CB19470D59E3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [14700912-d142-46c9-a914-f3c7d8bf6b1a] - x-ms-request-id: [f78c0d71-0001-0017-2508-fc94b7000000] + x-ms-lease-id: [1610a789-2b7b-46c9-8c90-adbbe31dd3db] + x-ms-request-id: [9c3a9072-0001-0052-2302-fd4926000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -51,24 +51,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [714b1d98-67fb-11e7-984e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [686c1918-68f5-11e7-bf10-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:48 GMT'] x-ms-lease-action: [renew] - x-ms-lease-id: [14700912-d142-46c9-a914-f3c7d8bf6b1a] + x-ms-lease-id: [1610a789-2b7b-46c9-8c90-adbbe31dd3db] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container61c510dc?restype=container&comp=lease response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:27 GMT'] - ETag: ['"0x8D4CA1F4F0BC47E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:48 GMT'] + ETag: ['"0x8D4CB19470D59E3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:34:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [14700912-d142-46c9-a914-f3c7d8bf6b1a] - x-ms-request-id: [f78c1d15-0001-0017-5308-fc94b7000000] + x-ms-lease-id: [1610a789-2b7b-46c9-8c90-adbbe31dd3db] + x-ms-request-id: [9c3aa18f-0001-0052-7902-fd4926000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -76,22 +76,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [74513f2c-67fb-11e7-9655-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [6b72e2a2-68f5-11e7-9a41-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:34:53 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/container61c510dc?restype=container response: body: {string: "\uFEFFLeaseIdMissingThere\ \ is currently a lease on the container and no lease ID was specified in the\ - \ request.\nRequestId:f78c251b-0001-0017-1e08-fc94b7000000\nTime:2017-07-13T18:45:33.7958371Z"} + \ request.\nRequestId:9c3aab07-0001-0052-6c02-fd4926000000\nTime:2017-07-15T00:34:54.4307805Z"} headers: Content-Length: ['272'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:34:53 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [f78c251b-0001-0017-1e08-fc94b7000000] + x-ms-request-id: [9c3aab07-0001-0052-6c02-fd4926000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: There is currently a lease on the container and no lease ID was specified in the request.} @@ -100,19 +100,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7a556c18-67fb-11e7-9faf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [716ed792-68f5-11e7-b3c3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:03 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/container61c510dc?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:03 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78c3439-0001-0017-7e08-fc94b7000000] + x-ms-request-id: [9c3abb03-0001-0052-3202-fd4926000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_container.test_lease_container_with_duration.yaml b/tests/recordings/test_container.test_lease_container_with_duration.yaml index d28aec27..9e951d2c 100644 --- a/tests/recordings/test_container.test_lease_container_with_duration.yaml +++ b/tests/recordings/test_container.test_lease_container_with_duration.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7a74d9f4-67fb-11e7-8c34-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [718a560c-68f5-11e7-9ec6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerf7d9143c?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:44 GMT'] - ETag: ['"0x8D4CA1F5E944A70"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:04 GMT'] + ETag: ['"0x8D4CB19569F6D36"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f163726-0001-0129-7608-fc64c3000000] + x-ms-request-id: [56ae3d51-0001-0041-5e02-fd7cc7000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7a8b0bac-67fb-11e7-b1c9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [71a022d4-68f5-11e7-b3c5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:04 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['15'] x-ms-version: ['2017-04-17'] @@ -37,13 +37,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:44 GMT'] - ETag: ['"0x8D4CA1F5E944A70"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:04 GMT'] + ETag: ['"0x8D4CB19569F6D36"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [cd748add-5692-4219-91cc-2e9db598c7ca] - x-ms-request-id: [4f163733-0001-0129-0108-fc64c3000000] + x-ms-lease-id: [498a51d4-ab25-479d-be07-fec40fc3623a] + x-ms-request-id: [56ae3d65-0001-0041-6e02-fd7cc7000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7a96d568-67fb-11e7-b86c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [71a8c970-68f5-11e7-9d10-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:04 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -61,14 +61,14 @@ interactions: uri: https://storagename.blob.core.windows.net/containerf7d9143c?restype=container&comp=lease response: body: {string: "\uFEFFLeaseAlreadyPresentThere\ - \ is already a lease present.\nRequestId:4f163746-0001-0129-1008-fc64c3000000\n\ - Time:2017-07-13T18:45:44.6787040Z"} + \ is already a lease present.\nRequestId:56ae3d73-0001-0041-7902-fd7cc7000000\n\ + Time:2017-07-15T00:35:05.4952949Z"} headers: Content-Length: ['221'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:45:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [4f163746-0001-0129-1008-fc64c3000000] + x-ms-request-id: [56ae3d73-0001-0041-7902-fd7cc7000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: There is already a lease present.} - request: @@ -76,9 +76,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [838cf1b6-67fb-11e7-848a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:45:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7a9f475c-68f5-11e7-94d1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:19 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -87,13 +87,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:59 GMT'] - ETag: ['"0x8D4CA1F5E944A70"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:19 GMT'] + ETag: ['"0x8D4CB19569F6D36"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:05 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [92eeff94-8263-408e-80f2-0db7add84aa7] - x-ms-request-id: [4f164410-0001-0129-1c08-fc64c3000000] + x-ms-lease-id: [51ef28b0-6502-49b6-b680-b5b4704f1047] + x-ms-request-id: [56ae50a1-0001-0041-5302-fd7cc7000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_container.test_lease_container_with_proposed_lease_id.yaml b/tests/recordings/test_container.test_lease_container_with_proposed_lease_id.yaml index be0a39b4..ff209a2a 100644 --- a/tests/recordings/test_container.test_lease_container_with_proposed_lease_id.yaml +++ b/tests/recordings/test_container.test_lease_container_with_proposed_lease_id.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [83b8a112-67fb-11e7-a1ea-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7ace9a66-68f5-11e7-8ff1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:19 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerc09017d7?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:59 GMT'] - ETag: ['"0x8D4CA1F67C3A443"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:19 GMT'] + ETag: ['"0x8D4CB195FA38C30"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [937a59bd-0001-0046-2608-fc8a42000000] + x-ms-request-id: [80b5e206-0001-00a1-6a02-fd9a4f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [83cb9862-67fb-11e7-beba-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7ae62f14-68f5-11e7-9fd1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:19 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-proposed-lease-id: [55e97f64-73e8-4390-838d-d9e84a374321] @@ -38,13 +38,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:45:59 GMT'] - ETag: ['"0x8D4CA1F67C3A443"'] - Last-Modified: ['Thu, 13 Jul 2017 18:45:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:19 GMT'] + ETag: ['"0x8D4CB195FA38C30"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-lease-id: [55e97f64-73e8-4390-838d-d9e84a374321] - x-ms-request-id: [937a59d1-0001-0046-3508-fc8a42000000] + x-ms-request-id: [80b5e228-0001-00a1-0502-fd9a4f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_container.test_list_blobs.yaml b/tests/recordings/test_container.test_list_blobs.yaml index b1618480..4549208a 100644 --- a/tests/recordings/test_container.test_list_blobs.yaml +++ b/tests/recordings/test_container.test_list_blobs.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [83f3dcc8-67fb-11e7-adce-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7b127d08-68f5-11e7-b00f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:19 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerc01c0c5d?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:00 GMT'] - ETag: ['"0x8D4CA1F681DAE99"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:20 GMT'] + ETag: ['"0x8D4CB195FDD58E8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e27091aa-0001-0061-4508-fc100b000000] + x-ms-request-id: [e50c45ba-0001-0045-7402-fd8945000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [84076d62-67fb-11e7-a8ae-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:00 GMT'] + x-ms-client-request-id: [7b300d8c-68f5-11e7-92d6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerc01c0c5d/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:00 GMT'] - ETag: ['"0x8D4CA1F6863E08A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:20 GMT'] + ETag: ['"0x8D4CB195FEB7CB8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e27091b9-0001-0061-4d08-fc100b000000] + x-ms-request-id: [e50c45f4-0001-0045-2202-fd8945000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [842a6c02-67fb-11e7-bdd8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:00 GMT'] + x-ms-client-request-id: [7b36134c-68f5-11e7-9c66-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerc01c0c5d/blob2 @@ -62,12 +62,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:00 GMT'] - ETag: ['"0x8D4CA1F686938C1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:20 GMT'] + ETag: ['"0x8D4CB195FF17147"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e27091ee-0001-0061-7108-fc100b000000] + x-ms-request-id: [e50c45ff-0001-0045-2c02-fd8945000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -75,30 +75,30 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [842ff19a-67fb-11e7-908b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7b3ceb2e-68f5-11e7-a54f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:20 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/containerc01c0c5d?restype=container&comp=list response: body: {string: "\uFEFFblob1Thu,\ - \ 13 Jul 2017 18:46:01 GMT0x8D4CA1F6863E08A11application/octet-streamblob1Sat,\ + \ 15 Jul 2017 00:35:20 GMT0x8D4CB195FEB7CB811application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletrueblob2Thu,\ - \ 13 Jul 2017 18:46:01 GMT0x8D4CA1F686938C111application/octet-streamBlockBlobunlockedavailabletrueblob2Sat,\ + \ 15 Jul 2017 00:35:21 GMT0x8D4CB195FF1714711application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletrue"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [e27091f6-0001-0061-7808-fc100b000000] + x-ms-request-id: [e50c4612-0001-0045-3b02-fd8945000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_list_blobs_leased_blob.yaml b/tests/recordings/test_container.test_list_blobs_leased_blob.yaml index 2075f42d..58fc7ba7 100644 --- a/tests/recordings/test_container.test_list_blobs_leased_blob.yaml +++ b/tests/recordings/test_container.test_list_blobs_leased_blob.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [844b1100-67fb-11e7-a3f7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7b590f28-68f5-11e7-99de-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container73941128?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:00 GMT'] - ETag: ['"0x8D4CA1F687772FD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:20 GMT'] + ETag: ['"0x8D4CB19604BEA96"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [04135ffa-0001-007c-6708-fcc9e1000000] + x-ms-request-id: [9627bab3-0001-0039-4e02-fd1470000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [8463693a-67fb-11e7-afce-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:01 GMT'] + x-ms-client-request-id: [7b6edea4-68f5-11e7-8c9f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container73941128/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:00 GMT'] - ETag: ['"0x8D4CA1F68A25518"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:20 GMT'] + ETag: ['"0x8D4CB19602A1813"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [04136017-0001-007c-7f08-fcc9e1000000] + x-ms-request-id: [9627bac1-0001-0039-5802-fd1470000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8468df9e-67fb-11e7-bcee-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7b74960a-68f5-11e7-a77a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:20 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -62,40 +62,40 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:00 GMT'] - ETag: ['"0x8D4CA1F68A25518"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:20 GMT'] + ETag: ['"0x8D4CB19602A1813"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [c48d2e2e-9e2f-4ba7-893c-acfdcb6c315f] - x-ms-request-id: [04136029-0001-007c-0f08-fcc9e1000000] + x-ms-lease-id: [7f21db3e-5a73-4469-bfbc-019b6ef9e359] + x-ms-request-id: [9627bac5-0001-0039-5c02-fd1470000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [846f58c6-67fb-11e7-ba56-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7b7ab85a-68f5-11e7-b91d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:20 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container73941128?restype=container&comp=list response: body: {string: "\uFEFFblob1Thu,\ - \ 13 Jul 2017 18:46:01 GMT0x8D4CA1F68A2551811application/octet-streamblob1Sat,\ + \ 15 Jul 2017 00:35:21 GMT0x8D4CB19602A181311application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBloblockedleasedinfinitetrue"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:20 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [04136040-0001-007c-2108-fcc9e1000000] + x-ms-request-id: [9627bad4-0001-0039-6802-fd1470000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_list_blobs_with_delimiter.yaml b/tests/recordings/test_container.test_list_blobs_with_delimiter.yaml index 182e0893..a203c340 100644 --- a/tests/recordings/test_container.test_list_blobs_with_delimiter.yaml +++ b/tests/recordings/test_container.test_list_blobs_with_delimiter.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8489fd98-67fb-11e7-923f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7b976946-68f5-11e7-ae25-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerab171296?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:01 GMT'] - ETag: ['"0x8D4CA1F68B471A1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:21 GMT'] + ETag: ['"0x8D4CB19606A3338"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e583b42e-0001-010f-5e08-fcff77000000] + x-ms-request-id: [e512c012-0001-00d1-3902-fde98b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [849e5fae-67fb-11e7-9bcf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:01 GMT'] + x-ms-client-request-id: [7bb56554-68f5-11e7-8bf2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:20 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerab171296/a/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:01 GMT'] - ETag: ['"0x8D4CA1F68FBF7FE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:21 GMT'] + ETag: ['"0x8D4CB1960733C71"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e583b434-0001-010f-6208-fcff77000000] + x-ms-request-id: [e512c02a-0001-00d1-4c02-fde98b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [84c2c51a-67fb-11e7-8d34-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:01 GMT'] + x-ms-client-request-id: [7bbddfb8-68f5-11e7-a71d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:21 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerab171296/a/blob2 @@ -62,12 +62,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:01 GMT'] - ETag: ['"0x8D4CA1F6901C59D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:21 GMT'] + ETag: ['"0x8D4CB19608196F5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e583b45d-0001-010f-0208-fcff77000000] + x-ms-request-id: [e512c056-0001-00d1-7002-fde98b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -76,10 +76,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [84c82064-67fb-11e7-9a6c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:02 GMT'] + x-ms-client-request-id: [7bcc60b0-68f5-11e7-9f0c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:21 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerab171296/b/blob1 @@ -87,12 +87,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:01 GMT'] - ETag: ['"0x8D4CA1F690744C5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:21 GMT'] + ETag: ['"0x8D4CB196087D9AE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e583b461-0001-010f-0608-fcff77000000] + x-ms-request-id: [e512c078-0001-00d1-0c02-fde98b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -101,10 +101,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [84cdc31e-67fb-11e7-9646-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:02 GMT'] + x-ms-client-request-id: [7bd2381e-68f5-11e7-a181-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:21 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerab171296/blob1 @@ -112,12 +112,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:01 GMT'] - ETag: ['"0x8D4CA1F690C75E4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:21 GMT'] + ETag: ['"0x8D4CB19608D58F3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e583b46d-0001-010f-0e08-fcff77000000] + x-ms-request-id: [e512c08b-0001-00d1-1d02-fde98b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -125,27 +125,27 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [84d2eb48-67fb-11e7-b7a9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7bd7ec0a-68f5-11e7-907e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:21 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/containerab171296?restype=container&comp=list&delimiter=%2F response: body: {string: "\uFEFF/a/b/blob1Thu,\ - \ 13 Jul 2017 18:46:02 GMT0x8D4CA1F690C75E411application/octet-stream/a/b/blob1Sat,\ + \ 15 Jul 2017 00:35:22 GMT0x8D4CB19608D58F311application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletrue"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:21 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [e583b47c-0001-010f-1c08-fcff77000000] + x-ms-request-id: [e512c09f-0001-00d1-3002-fde98b000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_list_blobs_with_include_copy.yaml b/tests/recordings/test_container.test_list_blobs_with_include_copy.yaml index f2601d1e..84e4b124 100644 --- a/tests/recordings/test_container.test_list_blobs_with_include_copy.yaml +++ b/tests/recordings/test_container.test_list_blobs_with_include_copy.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [84efc83a-67fb-11e7-9aa9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7bf55588-68f5-11e7-b3bf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:21 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containere54813d5?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:01 GMT'] - ETag: ['"0x8D4CA1F68E97C1B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:22 GMT'] + ETag: ['"0x8D4CB196135B233"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [610aed19-0001-009d-6c08-fc2e94000000] + x-ms-request-id: [e420a51a-0001-0011-1e02-fd63cf000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [85043e9e-67fb-11e7-a6da-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:02 GMT'] + x-ms-client-request-id: [7c0958da-68f5-11e7-8b9f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:21 GMT'] x-ms-meta-status: [original] x-ms-version: ['2017-04-17'] method: PUT @@ -38,12 +38,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:01 GMT'] - ETag: ['"0x8D4CA1F6963320F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:22 GMT'] + ETag: ['"0x8D4CB1960C478B8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [610aed21-0001-009d-7008-fc2e94000000] + x-ms-request-id: [e420a52a-0001-0011-2a02-fd63cf000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,10 +52,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [852fa068-67fb-11e7-9770-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7c104c26-68f5-11e7-b5bf-b8e8564491f6] x-ms-copy-source: ['https://xclientdev3.blob.core.windows.net/containere54813d5/blob1'] - x-ms-date: ['Thu, 13 Jul 2017 18:46:02 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:35:21 GMT'] x-ms-meta-status: [copy] x-ms-version: ['2017-04-17'] method: PUT @@ -63,45 +63,45 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:02 GMT'] - ETag: ['"0x8D4CA1F6977CF75"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:22 GMT'] + ETag: ['"0x8D4CB1960CCB79F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-copy-id: [d7d98e36-8771-4e2d-95a3-2c8aa09fca1f] + x-ms-copy-id: [376bfc6e-5546-4440-9c28-865106e0d95e] x-ms-copy-status: [success] - x-ms-request-id: [610aed6f-0001-009d-3308-fc2e94000000] + x-ms-request-id: [e420a53f-0001-0011-3d02-fd63cf000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8548c8f4-67fb-11e7-821b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7c175f5c-68f5-11e7-ac39-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:21 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/containere54813d5?restype=container&comp=list&include=copy response: body: {string: "\uFEFFblob1Thu,\ - \ 13 Jul 2017 18:46:02 GMT0x8D4CA1F6963320F11application/octet-streamblob1Sat,\ + \ 15 Jul 2017 00:35:22 GMT0x8D4CB1960C478B811application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletrueblob1copyThu,\ - \ 13 Jul 2017 18:46:02 GMT0x8D4CA1F6977CF7511application/octet-streamBlockBlobunlockedavailabletrueblob1copySat,\ + \ 15 Jul 2017 00:35:22 GMT0x8D4CB1960CCB79F11application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabled7d98e36-8771-4e2d-95a3-2c8aa09fca1fhttps://storagename.blob.core.windows.net/containere54813d5/blob1success11/11Thu,\ - \ 13 Jul 2017 18:46:02 GMTtrueBlockBlobunlockedavailable376bfc6e-5546-4440-9c28-865106e0d95ehttps://storagename.blob.core.windows.net/containere54813d5/blob1success11/11Sat,\ + \ 15 Jul 2017 00:35:23 GMTtrue"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [610aed8b-0001-009d-4908-fc2e94000000] + x-ms-request-id: [e420a54f-0001-0011-4a02-fd63cf000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_list_blobs_with_include_metadata.yaml b/tests/recordings/test_container.test_list_blobs_with_include_metadata.yaml index 0ccb3f4b..76ff859e 100644 --- a/tests/recordings/test_container.test_list_blobs_with_include_metadata.yaml +++ b/tests/recordings/test_container.test_list_blobs_with_include_metadata.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8567c7f4-67fb-11e7-8d49-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7c342c0c-68f5-11e7-b64a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:21 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container3851155b?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:02 GMT'] - ETag: ['"0x8D4CA1F6996DE34"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:21 GMT'] + ETag: ['"0x8D4CB1960E926D4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dfba7833-0001-002c-7108-fcd6e9000000] + x-ms-request-id: [c65fa1d6-0001-00f4-6a02-fd7138000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [857e4646-67fb-11e7-aeb3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + x-ms-client-request-id: [7c4a95e8-68f5-11e7-af59-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:21 GMT'] x-ms-meta-name: [bob] x-ms-meta-number: ['1'] x-ms-version: ['2017-04-17'] @@ -39,12 +39,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:02 GMT'] - ETag: ['"0x8D4CA1F69BD4A3C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:21 GMT'] + ETag: ['"0x8D4CB1961081DF4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dfba7849-0001-002c-0208-fcd6e9000000] + x-ms-request-id: [c65fa1e6-0001-00f4-7702-fd7138000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -53,10 +53,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [8583ad0c-67fb-11e7-b1fa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + x-ms-client-request-id: [7c52f468-68f5-11e7-8b6a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:22 GMT'] x-ms-meta-name: [car] x-ms-meta-number: ['2'] x-ms-version: ['2017-04-17'] @@ -66,12 +66,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:02 GMT'] - ETag: ['"0x8D4CA1F69C27B5F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:22 GMT'] + ETag: ['"0x8D4CB19610E60BA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dfba7852-0001-002c-0b08-fcd6e9000000] + x-ms-request-id: [c65fa200-0001-00f4-0d02-fd7138000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -80,52 +80,52 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [85890ebe-67fb-11e7-9d39-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7c58f0ac-68f5-11e7-8090-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container3851155b/blob1?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:02 GMT'] - ETag: ['"0x8D4CA1F69BD4A3C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:22 GMT'] + ETag: ['"0x8D4CB1961081DF4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dfba785a-0001-002c-1208-fcd6e9000000] - x-ms-snapshot: ['2017-07-13T18:46:03.3593005Z'] + x-ms-request-id: [c65fa212-0001-00f4-1e02-fd7138000000] + x-ms-snapshot: ['2017-07-15T00:35:22.9425971Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [858e739a-67fb-11e7-a5a6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7c5e9c28-68f5-11e7-bfbc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:22 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container3851155b?restype=container&comp=list&include=metadata response: body: {string: "\uFEFFblob1Thu,\ - \ 13 Jul 2017 18:46:03 GMT0x8D4CA1F69BD4A3C11application/octet-streamblob1Sat,\ + \ 15 Jul 2017 00:35:22 GMT0x8D4CB1961081DF411application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletrue1bobblob2Thu,\ - \ 13 Jul 2017 18:46:03 GMT0x8D4CA1F69C27B5F11application/octet-streamBlockBlobunlockedavailabletrue1bobblob2Sat,\ + \ 15 Jul 2017 00:35:22 GMT0x8D4CB19610E60BA11application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletrue2car"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [dfba7862-0001-002c-1808-fcd6e9000000] + x-ms-request-id: [c65fa22e-0001-00f4-3602-fd7138000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_list_blobs_with_include_multiple.yaml b/tests/recordings/test_container.test_list_blobs_with_include_multiple.yaml index 8b098964..a60b90b8 100644 --- a/tests/recordings/test_container.test_list_blobs_with_include_multiple.yaml +++ b/tests/recordings/test_container.test_list_blobs_with_include_multiple.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [85abf2ee-67fb-11e7-a9d7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7c7f7a88-68f5-11e7-b29e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container39251586?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] - ETag: ['"0x8D4CA1F69BE7595"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:23 GMT'] + ETag: ['"0x8D4CB1961BBB06E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9499e31e-0001-001f-6a08-fc8fc4000000] + x-ms-request-id: [d4c936fd-0001-00ac-6702-fd7543000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [85c06618-67fb-11e7-bd06-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + x-ms-client-request-id: [7c933b68-68f5-11e7-8681-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:22 GMT'] x-ms-meta-name: [bob] x-ms-meta-number: ['1'] x-ms-version: ['2017-04-17'] @@ -39,12 +39,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] - ETag: ['"0x8D4CA1F6A1C938C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:23 GMT'] + ETag: ['"0x8D4CB196150F44E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9499e32d-0001-001f-7408-fc8fc4000000] + x-ms-request-id: [d4c93716-0001-00ac-7d02-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -53,10 +53,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [85e2f674-67fb-11e7-b91b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + x-ms-client-request-id: [7c9baadc-68f5-11e7-9241-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:22 GMT'] x-ms-meta-name: [car] x-ms-meta-number: ['2'] x-ms-version: ['2017-04-17'] @@ -66,12 +66,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] - ETag: ['"0x8D4CA1F6A2212D5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:23 GMT'] + ETag: ['"0x8D4CB196157AC3C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9499e387-0001-001f-4108-fc8fc4000000] + x-ms-request-id: [d4c93736-0001-00ac-1c02-fd7543000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -80,55 +80,55 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [85e85428-67fb-11e7-ad4f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7ca316b4-68f5-11e7-a6f4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container39251586/blob1?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] - ETag: ['"0x8D4CA1F6A1C938C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:23 GMT'] + ETag: ['"0x8D4CB196150F44E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9499e394-0001-001f-4c08-fc8fc4000000] - x-ms-snapshot: ['2017-07-13T18:46:03.9847701Z'] + x-ms-request-id: [d4c93757-0001-00ac-3702-fd7543000000] + x-ms-snapshot: ['2017-07-15T00:35:23.4289490Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [85ee1002-67fb-11e7-8fcd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7ca907b8-68f5-11e7-b6e2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:22 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container39251586?restype=container&comp=list&include=snapshots%2Cmetadata response: body: {string: "\uFEFFblob12017-07-13T18:46:03.9847701ZThu,\ - \ 13 Jul 2017 18:46:03 GMT0x8D4CA1F6A1C938C11application/octet-streamblob12017-07-15T00:35:23.4289490ZSat,\ + \ 15 Jul 2017 00:35:23 GMT0x8D4CB196150F44E11application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobtrue1bobblob1Thu,\ - \ 13 Jul 2017 18:46:03 GMT0x8D4CA1F6A1C938C11application/octet-streamBlockBlobtrue1bobblob1Sat,\ + \ 15 Jul 2017 00:35:23 GMT0x8D4CB196150F44E11application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletrue1bobblob2Thu,\ - \ 13 Jul 2017 18:46:03 GMT0x8D4CA1F6A2212D511application/octet-streamBlockBlobunlockedavailabletrue1bobblob2Sat,\ + \ 15 Jul 2017 00:35:23 GMT0x8D4CB196157AC3C11application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletrue2car"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [9499e39e-0001-001f-5608-fc8fc4000000] + x-ms-request-id: [d4c93763-0001-00ac-4102-fd7543000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_list_blobs_with_include_snapshots.yaml b/tests/recordings/test_container.test_list_blobs_with_include_snapshots.yaml index 8c4ef20d..1734d8e3 100644 --- a/tests/recordings/test_container.test_list_blobs_with_include_snapshots.yaml +++ b/tests/recordings/test_container.test_list_blobs_with_include_snapshots.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [860b329a-67fb-11e7-9327-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7cc6b7e8-68f5-11e7-89a2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container4ef015fd?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] - ETag: ['"0x8D4CA1F69E25F3D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:22 GMT'] + ETag: ['"0x8D4CB1960EE274A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [06a17c82-0001-00ed-3708-fc5d50000000] + x-ms-request-id: [2e2db61e-0001-008c-7a02-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [86203bf4-67fb-11e7-a8b6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:04 GMT'] + x-ms-client-request-id: [7cdc2b52-68f5-11e7-858a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container4ef015fd/blob1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] - ETag: ['"0x8D4CA1F6A5F4EA7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:22 GMT'] + ETag: ['"0x8D4CB196197802E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [06a17ca1-0001-00ed-5308-fc5d50000000] + x-ms-request-id: [2e2db639-0001-008c-1302-fd198f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [86268dd8-67fb-11e7-9127-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:04 GMT'] + x-ms-client-request-id: [7ce2cb88-68f5-11e7-8f6f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container4ef015fd/blob2 @@ -62,12 +62,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] - ETag: ['"0x8D4CA1F6A65916B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:22 GMT'] + ETag: ['"0x8D4CB19619E1116"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [06a17cc4-0001-00ed-7508-fc5d50000000] + x-ms-request-id: [2e2db651-0001-008c-2902-fd198f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -76,55 +76,55 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [862db04a-67fb-11e7-97ce-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7ce87c86-68f5-11e7-8c6c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:22 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container4ef015fd/blob1?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] - ETag: ['"0x8D4CA1F6A5F4EA7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:22 GMT'] + ETag: ['"0x8D4CB196197802E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [06a17ce5-0001-00ed-1608-fc5d50000000] - x-ms-snapshot: ['2017-07-13T18:46:04.4391100Z'] + x-ms-request-id: [2e2db673-0001-008c-4b02-fd198f000000] + x-ms-snapshot: ['2017-07-15T00:35:23.9062943Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [86331a8a-67fb-11e7-828b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7cf18a1a-68f5-11e7-bff5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:23 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container4ef015fd?restype=container&comp=list&include=snapshots response: body: {string: "\uFEFFblob12017-07-13T18:46:04.4391100ZThu,\ - \ 13 Jul 2017 18:46:04 GMT0x8D4CA1F6A5F4EA711application/octet-streamblob12017-07-15T00:35:23.9062943ZSat,\ + \ 15 Jul 2017 00:35:23 GMT0x8D4CB196197802E11application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobtrueblob1Thu,\ - \ 13 Jul 2017 18:46:04 GMT0x8D4CA1F6A5F4EA711application/octet-streamBlockBlobtrueblob1Sat,\ + \ 15 Jul 2017 00:35:23 GMT0x8D4CB196197802E11application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletrueblob2Thu,\ - \ 13 Jul 2017 18:46:04 GMT0x8D4CA1F6A65916B11application/octet-streamBlockBlobunlockedavailabletrueblob2Sat,\ + \ 15 Jul 2017 00:35:23 GMT0x8D4CB19619E111611application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletrue"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:22 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [06a17cfe-0001-00ed-2e08-fc5d50000000] + x-ms-request-id: [2e2db689-0001-008c-6002-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_list_blobs_with_include_uncommittedblobs.yaml b/tests/recordings/test_container.test_list_blobs_with_include_uncommittedblobs.yaml index d8c95f7d..9758acbc 100644 --- a/tests/recordings/test_container.test_list_blobs_with_include_uncommittedblobs.yaml +++ b/tests/recordings/test_container.test_list_blobs_with_include_uncommittedblobs.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8651234a-67fb-11e7-a69e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7d14a14c-68f5-11e7-9a5d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerf3fe18d5?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] - ETag: ['"0x8D4CA1F6A682AF2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:23 GMT'] + ETag: ['"0x8D4CB1961BF7EDE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b65ebaa4-0001-00b8-1008-fcb627000000] + x-ms-request-id: [a1667381-0001-0094-5202-fd341a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [866692a2-67fb-11e7-917e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7d2ac2d0-68f5-11e7-9ed3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerf3fe18d5/blob1?comp=block&blockid=MQ%3D%3D @@ -36,10 +36,10 @@ interactions: body: {string: ''} headers: Content-MD5: [4fr/s+YU5sL7p0KWliOGtw==] - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b65ebab9-0001-00b8-1e08-fcb627000000] + x-ms-request-id: [a16673a5-0001-0094-6e02-fd341a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -48,9 +48,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [866bd906-67fb-11e7-aa27-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7d306b7a-68f5-11e7-8903-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerf3fe18d5/blob1?comp=block&blockid=Mg%3D%3D @@ -58,10 +58,10 @@ interactions: body: {string: ''} headers: Content-MD5: [K7Il8LqaWJMHV6ho7VfZow==] - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b65ebac5-0001-00b8-2a08-fcb627000000] + x-ms-request-id: [a16673b1-0001-0094-7902-fd341a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -70,9 +70,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['3'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [86713fc2-67fb-11e7-a613-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7d365ffa-68f5-11e7-b4dd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerf3fe18d5/blob1?comp=block&blockid=Mw%3D%3D @@ -80,10 +80,10 @@ interactions: body: {string: ''} headers: Content-MD5: [3vuZ5pqfH24G8VAGsfFmrg==] - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b65ebad9-0001-00b8-3a08-fcb627000000] + x-ms-request-id: [a16673c9-0001-0094-1002-fd341a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -92,10 +92,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [86769238-67fb-11e7-8cb8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:04 GMT'] + x-ms-client-request-id: [7d3c497e-68f5-11e7-8950-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:23 GMT'] x-ms-meta-name: [car] x-ms-meta-number: ['2'] x-ms-version: ['2017-04-17'] @@ -105,12 +105,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] - ETag: ['"0x8D4CA1F6AB5BC9F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:23 GMT'] + ETag: ['"0x8D4CB1961F78C44"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b65ebae4-0001-00b8-4308-fcb627000000] + x-ms-request-id: [a16673db-0001-0094-1f02-fd341a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -118,27 +118,27 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [867c5c7a-67fb-11e7-ac1e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7d44c27a-68f5-11e7-b3c5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:23 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/containerf3fe18d5?restype=container&comp=list&include=uncommittedblobs response: body: {string: "\uFEFFblob10BlockBlobunlockedavailablefalseblob2Thu,\ - \ 13 Jul 2017 18:46:04 GMT0x8D4CA1F6AB5BC9F11application/octet-streamblob10BlockBlobunlockedavailablefalseblob2Sat,\ + \ 15 Jul 2017 00:35:24 GMT0x8D4CB1961F78C4411application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletrue"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:23 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [b65ebaf8-0001-00b8-5508-fcb627000000] + x-ms-request-id: [a16673fe-0001-0094-3d02-fd341a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_list_blobs_with_num_results.yaml b/tests/recordings/test_container.test_list_blobs_with_num_results.yaml index 050cd2b9..22848965 100644 --- a/tests/recordings/test_container.test_list_blobs_with_num_results.yaml +++ b/tests/recordings/test_container.test_list_blobs_with_num_results.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8698df1e-67fb-11e7-962b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7d637cd8-68f5-11e7-b837-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerd2991398?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:03 GMT'] - ETag: ['"0x8D4CA1F6AA99256"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:24 GMT'] + ETag: ['"0x8D4CB19628ABC75"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5ec1156f-0001-00fb-2a08-fc9cce000000] + x-ms-request-id: [d3d4c77d-0001-0114-2202-fdd1e5000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [86ace45a-67fb-11e7-8733-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:05 GMT'] + x-ms-client-request-id: [7d7ad27a-68f5-11e7-bb4b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerd2991398/bloba1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:04 GMT'] - ETag: ['"0x8D4CA1F6B104A0E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:24 GMT'] + ETag: ['"0x8D4CB196236006A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5ec1157d-0001-00fb-3508-fc9cce000000] + x-ms-request-id: [d3d4c7a7-0001-0114-4702-fdd1e5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [86e4ecc6-67fb-11e7-bfd7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:05 GMT'] + x-ms-client-request-id: [7d80979e-68f5-11e7-8122-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:23 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerd2991398/bloba2 @@ -62,12 +62,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:04 GMT'] - ETag: ['"0x8D4CA1F6B23D5D3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:24 GMT'] + ETag: ['"0x8D4CB19623BCDDD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5ec11609-0001-00fb-2a08-fc9cce000000] + x-ms-request-id: [d3d4c7ba-0001-0114-5802-fdd1e5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -76,10 +76,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [86ea731a-67fb-11e7-9809-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:05 GMT'] + x-ms-client-request-id: [7d866fd8-68f5-11e7-8f65-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerd2991398/bloba3 @@ -87,12 +87,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:04 GMT'] - ETag: ['"0x8D4CA1F6B297C39"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:24 GMT'] + ETag: ['"0x8D4CB196241C267"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5ec11620-0001-00fb-3d08-fc9cce000000] + x-ms-request-id: [d3d4c7d8-0001-0114-7002-fdd1e5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -101,10 +101,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [86efd2e2-67fb-11e7-9c63-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:05 GMT'] + x-ms-client-request-id: [7d8c504a-68f5-11e7-9db6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerd2991398/blobb1 @@ -112,12 +112,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:04 GMT'] - ETag: ['"0x8D4CA1F6B2F49CB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:24 GMT'] + ETag: ['"0x8D4CB196247DE05"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5ec1162e-0001-00fb-4908-fc9cce000000] + x-ms-request-id: [d3d4c805-0001-0114-1a02-fdd1e5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -125,29 +125,29 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [86f60fb8-67fb-11e7-ab75-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7d928730-68f5-11e7-8f97-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:24 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/containerd2991398?restype=container&comp=list&maxresults=2 response: body: {string: "\uFEFF2bloba1Thu,\ - \ 13 Jul 2017 18:46:05 GMT0x8D4CA1F6B104A0E11application/octet-stream2bloba1Sat,\ + \ 15 Jul 2017 00:35:24 GMT0x8D4CB196236006A11application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletruebloba2Thu,\ - \ 13 Jul 2017 18:46:05 GMT0x8D4CA1F6B23D5D311application/octet-streamBlockBlobunlockedavailabletruebloba2Sat,\ + \ 15 Jul 2017 00:35:24 GMT0x8D4CB19623BCDDD11application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletrue2!68!MDAwMDA2IWJsb2JhMyEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [5ec11640-0001-00fb-5a08-fc9cce000000] + x-ms-request-id: [d3d4c81a-0001-0114-2e02-fdd1e5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_list_blobs_with_prefix.yaml b/tests/recordings/test_container.test_list_blobs_with_prefix.yaml index 6dd18577..a158cd3a 100644 --- a/tests/recordings/test_container.test_list_blobs_with_prefix.yaml +++ b/tests/recordings/test_container.test_list_blobs_with_prefix.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [871269a6-67fb-11e7-aa93-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7dc4e19e-68f5-11e7-bc17-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container75091165?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:05 GMT'] - ETag: ['"0x8D4CA1F6B6C3836"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:25 GMT'] + ETag: ['"0x8D4CB1962BB8DB9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b51195-0001-0026-1f08-fccf60000000] + x-ms-request-id: [9e3b8e8c-0001-00a4-2202-fd6e30000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [8726d7d8-67fb-11e7-a6ee-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:06 GMT'] + x-ms-client-request-id: [7dd9dd7e-68f5-11e7-8662-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container75091165/bloba1 @@ -37,12 +37,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:05 GMT'] - ETag: ['"0x8D4CA1F6B65A666"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:25 GMT'] + ETag: ['"0x8D4CB196294FAE1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b511bb-0001-0026-4108-fccf60000000] + x-ms-request-id: [9e3b8ea5-0001-00a4-3802-fd6e30000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [872c425e-67fb-11e7-8322-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:06 GMT'] + x-ms-client-request-id: [7ddfd9a4-68f5-11e7-930a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container75091165/bloba2 @@ -62,12 +62,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:05 GMT'] - ETag: ['"0x8D4CA1F6B6B25B8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:25 GMT'] + ETag: ['"0x8D4CB19629B1683"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b511e4-0001-0026-6608-fccf60000000] + x-ms-request-id: [9e3b8eae-0001-00a4-4002-fd6e30000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -76,10 +76,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [8731b630-67fb-11e7-904f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:06 GMT'] + x-ms-client-request-id: [7de5b8d8-68f5-11e7-a449-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container75091165/blobb1 @@ -87,12 +87,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:46:05 GMT'] - ETag: ['"0x8D4CA1F6B727A1C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:25 GMT'] + ETag: ['"0x8D4CB1962A0BCDA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5b511ff-0001-0026-7c08-fccf60000000] + x-ms-request-id: [9e3b8ec2-0001-00a4-5102-fd6e30000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -100,30 +100,30 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [87390ce6-67fb-11e7-89e0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7deb2e76-68f5-11e7-86a9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:24 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container75091165?restype=container&comp=list&prefix=bloba response: body: {string: "\uFEFFblobabloba1Thu,\ - \ 13 Jul 2017 18:46:06 GMT0x8D4CA1F6B65A66611application/octet-streamblobabloba1Sat,\ + \ 15 Jul 2017 00:35:25 GMT0x8D4CB196294FAE111application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletruebloba2Thu,\ - \ 13 Jul 2017 18:46:06 GMT0x8D4CA1F6B6B25B811application/octet-streamBlockBlobunlockedavailabletruebloba2Sat,\ + \ 15 Jul 2017 00:35:25 GMT0x8D4CB19629B168311application/octet-streamXrY7u+Ae7tCTyyK7j1rNww==BlockBlobunlockedavailabletrue"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [e5b51223-0001-0026-1908-fccf60000000] + x-ms-request-id: [9e3b8eec-0001-00a4-7702-fd6e30000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_list_containers.yaml b/tests/recordings/test_container.test_list_containers.yaml index dd8e4a12..e134e985 100644 --- a/tests/recordings/test_container.test_list_containers.yaml +++ b/tests/recordings/test_container.test_list_containers.yaml @@ -4,30 +4,30 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [875bbe8a-67fb-11e7-a27e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7e116b06-68f5-11e7-9fdd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container4760e81?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:06 GMT'] - ETag: ['"0x8D4CA1F6B7E9B31"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:25 GMT'] + ETag: ['"0x8D4CB1962C07F9D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5cece0a1-0001-0130-6808-fc48ab000000] + x-ms-request-id: [5ca01633-0001-005c-5f02-fda52d000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [87735ca2-67fb-11e7-9088-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7e25a68c-68f5-11e7-a597-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:25 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?comp=list @@ -165,7 +165,8 @@ interactions: \ 06 Apr 2017 23:19:11 GMT\"0x8D47D435581C4FC\"unlockedavailable6b121b7fe849435e871c16ae98f1e32f-lease-testsWed,\ \ 03 Aug 2016 06:22:36 GMT\"0x8D3BB668FBC8E32\"unlockedavailable6b3a3a2102e242c58f8517d8c0a58da5-lease-testsFri,\ \ 17 Mar 2017 21:04:22 GMT\"0x8D46D792F80FAC7\"unlockedavailable6b662d19682148188743147991a686f7-lease-testsWed,\ - \ 15 Feb 2017 01:26:24 GMT\"0x8D45541A8377173\"unlockedavailable6d472e90af414f6d9e17a40cbe2ef813-lease-testsThu,\ + \ 15 Feb 2017 01:26:24 GMT\"0x8D45541A8377173\"unlockedavailable6cd697a94ee54a7cb9e8dd163d75c64f-lease-testsThu,\ + \ 13 Jul 2017 20:09:17 GMT\"0x8D4CA2B0A41F725\"unlockedavailable6d472e90af414f6d9e17a40cbe2ef813-lease-testsThu,\ \ 04 Aug 2016 18:56:19 GMT\"0x8D3BC99051A50D7\"unlockedavailable705fbd9ceb8f4b92b87637044a628bed-lease-testsFri,\ \ 17 Mar 2017 21:13:00 GMT\"0x8D46D7A64BEFAF1\"unlockedavailable728ab1940bcb4d03bc5d12d4bc41d5a7-lease-testsMon,\ \ 19 Dec 2016 21:18:21 GMT\"0x8D428548F9BD68F\"unlockedavailable73ef1cee3fcc4f0d94996d7c85f2b9ba-lease-testsWed,\ @@ -415,11 +416,14 @@ interactions: \ 18 Oct 2016 18:30:23 GMT\"0x8D3F784D320B0F5\"unlockedavailableconafb3b9eca1814e2b8352bc9d7ed84d1cTue,\ \ 18 Oct 2016 20:34:51 GMT\"0x8D3F796363795D0\"unlockedavailableconb3022e697b80476ca493e4e61a6503fdTue,\ \ 18 Oct 2016 20:47:26 GMT\"0x8D3F797F7F77191\"unlockedavailableconsasTue,\ - \ 18 Oct 2016 22:10:14 GMT\"0x8D3F7A3894F7813\"unlockedavailablecontainer00b74e171156407197cc3281fb0627c8Mon,\ + \ 18 Oct 2016 22:10:14 GMT\"0x8D3F7A3894F7813\"unlockedavailablecontainer006c2db525ce4ea185d275c8706bbfc5Fri,\ + \ 14 Jul 2017 22:13:03 GMT\"0x8D4CB057F3DD1D0\"unlockedavailableblobcontainer009de46a99544f099216cfaaefefa1f7Fri,\ + \ 14 Jul 2017 21:52:56 GMT\"0x8D4CB02AF9B273B\"unlockedavailableblobcontainer00b74e171156407197cc3281fb0627c8Mon,\ \ 15 May 2017 01:30:58 GMT\"0x8D49B320A2603FA\"unlockedavailablecontainer03816385d9b34f809f75c9fe49a14aecMon,\ \ 15 May 2017 01:23:36 GMT\"0x8D49B3102D78E29\"unlockedavailablecontainer0506432afd0a48438669ef679b8e0035Mon,\ \ 15 May 2017 01:30:58 GMT\"0x8D49B320A05086D\"unlockedavailablecontainer06479ab1cee54e2baef44b977aa80ca7Mon,\ - \ 15 May 2017 01:30:32 GMT\"0x8D49B31FA64AB1E\"unlockedavailablecontainer07963b82d1284acbaf9b730951ea10faMon,\ + \ 15 May 2017 01:30:32 GMT\"0x8D49B31FA64AB1E\"unlockedavailablecontainer06f42fb4b11b4336a8799755ff532ab8Thu,\ + \ 13 Jul 2017 21:28:34 GMT\"0x8D4CA361DE009DB\"unlockedavailableblobcontainer07963b82d1284acbaf9b730951ea10faMon,\ \ 15 May 2017 01:30:44 GMT\"0x8D49B3201F72934\"unlockedavailablecontainer07e93fb2f29541fea5ccad4f3fe1be54Mon,\ \ 22 May 2017 16:59:53 GMT\"0x8D4A133F7D3A28B\"unlockedavailablecontainer088e2c57ab3c4f0485f7c675f9c3d02dMon,\ \ 15 May 2017 01:30:49 GMT\"0x8D49B3204F4C914\"unlockedavailablecontainer08d8a384cb5848a0a3ba649a9ff33361Mon,\ @@ -436,7 +440,8 @@ interactions: \ 15 May 2017 01:29:17 GMT\"0x8D49B31CDD313F0\"unlockedavailablecontainer146516a2ccea43e8a7aae7802bf79595Mon,\ \ 15 May 2017 01:22:16 GMT\"0x8D49B30D2CBC778\"unlockedavailablecontainer1591fa87ea0e44a781dcf2f21cd37e77Mon,\ \ 15 May 2017 01:41:06 GMT\"0x8D49B3374AFB6FB\"unlockedavailablecontainer15c899b1c6e149fc9f24ab9cb34f5412Mon,\ - \ 15 May 2017 01:25:39 GMT\"0x8D49B314C142375\"unlockedavailablecontainer16c6848755c64b0e836f0cc6830e7b40Mon,\ + \ 15 May 2017 01:25:39 GMT\"0x8D49B314C142375\"unlockedavailablecontainer1653e85830dc400ab0b52e864c1cf8c4Thu,\ + \ 13 Jul 2017 21:45:10 GMT\"0x8D4CA386FC70514\"unlockedavailableblobcontainer16c6848755c64b0e836f0cc6830e7b40Mon,\ \ 15 May 2017 01:30:57 GMT\"0x8D49B320929E989\"unlockedavailablecontainer178c278723b54ffdb13c6f56ed212a11Mon,\ \ 15 May 2017 01:30:50 GMT\"0x8D49B3205697237\"unlockedavailablecontainer17a1b183114c4d47a7cb52bbdbac5b44Mon,\ \ 26 Jun 2017 22:24:46 GMT\"0x8D4BCE2268D4EEA\"unlockedavailableblobcontainer1a91b266d8724e7bbb62cb4b7c0ead43Mon,\ @@ -458,7 +463,8 @@ interactions: \ 26 Jun 2017 22:24:46 GMT\"0x8D4BCE226A29332\"unlockedavailableblobcontainer2b4a740bb6b34db1b37a248a05f35bcbMon,\ \ 22 May 2017 17:11:21 GMT\"0x8D4A1359165D1C4\"unlockedavailablecontainer2be86dad5c7749eb87874765f99d613fMon,\ \ 15 May 2017 01:31:07 GMT\"0x8D49B320F6FAD64\"unlockedavailablecontainer2c681df4a0ca4bee9c832f7229303eb0Mon,\ - \ 15 May 2017 01:30:42 GMT\"0x8D49B32005DC788\"unlockedavailablecontainer2e131d1909844d49b0d8a4800ee00909Mon,\ + \ 15 May 2017 01:30:42 GMT\"0x8D49B32005DC788\"unlockedavailablecontainer2df1d2ddb34145b69becf5122edbfaa6Fri,\ + \ 14 Jul 2017 21:49:53 GMT\"0x8D4CB0242BDEEA2\"unlockedavailableblobcontainer2e131d1909844d49b0d8a4800ee00909Mon,\ \ 15 May 2017 01:30:34 GMT\"0x8D49B31FBAC0D2E\"unlockedavailablecontainer2e31d8c535324e6d85877b1a13aa9ccbMon,\ \ 15 May 2017 01:30:40 GMT\"0x8D49B31FF94AD53\"unlockedavailablecontainer2e4bc10e84454105a230054cec004b0aMon,\ \ 15 May 2017 01:30:40 GMT\"0x8D49B31FF080AF6\"unlockedavailablecontainer2f1d14ce1f2342ae837ba27380fb1a38Mon,\ @@ -467,26 +473,29 @@ interactions: \ 15 May 2017 01:30:52 GMT\"0x8D49B32066F0451\"unlockedavailablecontainer35d0702ba09c4286b1b2c53b1cea10e5Fri,\ \ 23 Jun 2017 23:53:52 GMT\"0x8D4BA9319F17B68\"unlockedavailableblobcontainer3647ff833c044ad69a489abd51f6d8ffMon,\ \ 15 May 2017 01:30:56 GMT\"0x8D49B3208E3D2F9\"unlockedavailablecontainer393399ae0ba04c2999155a204ca02456Mon,\ - \ 15 May 2017 01:30:41 GMT\"0x8D49B31FFEE0147\"unlockedavailablecontainer3ae325a9e1894b5888e3759ae476f8ddMon,\ + \ 15 May 2017 01:30:41 GMT\"0x8D49B31FFEE0147\"unlockedavailablecontainer397876983c9a4e219f3adc176c1da4ecThu,\ + \ 13 Jul 2017 21:45:09 GMT\"0x8D4CA386EC5AB74\"unlockedavailableblobcontainer3ae325a9e1894b5888e3759ae476f8ddMon,\ \ 15 May 2017 01:30:49 GMT\"0x8D49B3204C80B86\"unlockedavailablecontainer3d1c558454fb4ab8aa2529a9e060eeddMon,\ \ 15 May 2017 01:30:51 GMT\"0x8D49B3205FD1ABE\"unlockedavailablecontainer3e195b03278a4962a78b19e52931b450Mon,\ \ 15 May 2017 01:30:48 GMT\"0x8D49B3203CA9141\"unlockedavailablecontainer3e9845eac26a44839b8d6ae84f135bfeFri,\ \ 23 Jun 2017 07:03:59 GMT\"0x8D4BA0605EB6A2E\"unlockedavailableblobcontainer3f7020d14dbd4cf799ffe5c2657c68ccMon,\ \ 15 May 2017 01:30:18 GMT\"0x8D49B31F23B4F9A\"unlockedavailablecontainer40866913337444f28c35a93b1cab33e8Mon,\ - \ 15 May 2017 01:30:22 GMT\"0x8D49B31F46E2742\"unlockedavailablecontainer4127ee0c6dd24b5e95121a7c248e5ff9Mon,\ + \ 15 May 2017 01:30:22 GMT\"0x8D49B31F46E2742\"unlockedavailablecontainer408d29065bb940c09aae57e6be080c56Fri,\ + \ 14 Jul 2017 22:28:04 GMT\"0x8D4CB0798608D8F\"unlockedavailableblobcontainer4127ee0c6dd24b5e95121a7c248e5ff9Mon,\ \ 15 May 2017 01:30:48 GMT\"0x8D49B320416EA82\"unlockedavailablecontainer4281ac95d184441f889abbea30661adeMon,\ \ 15 May 2017 01:21:30 GMT\"0x8D49B30B7319C93\"unlockedavailablecontainer439d803840fe4f7bae209825d4d018a7Wed,\ \ 12 Jul 2017 17:55:00 GMT\"0x8D4C94F1E0B2A49\"unlockedavailableblobcontainer442395957b8444b78319aec394bbe4e4Mon,\ \ 15 May 2017 01:30:40 GMT\"0x8D49B31FF70F225\"unlockedavailablecontainer443e20407d9c45388b6d610c2dcdc2cfMon,\ \ 15 May 2017 01:30:49 GMT\"0x8D49B3204A42941\"unlockedavailablecontainer445072a62dd44347ada3516102a227a1Mon,\ - \ 15 May 2017 01:30:58 GMT\"0x8D49B320A3856DB\"unlockedavailablecontainer4760e81Thu,\ - \ 13 Jul 2017 18:46:06 GMT\"0x8D4CA1F6B7E9B31\"unlockedavailablecontainer47d1be7040c44b609471b42f8d9a9f00Mon,\ + \ 15 May 2017 01:30:58 GMT\"0x8D49B320A3856DB\"unlockedavailablecontainer4760e81Sat,\ + \ 15 Jul 2017 00:35:25 GMT\"0x8D4CB1962C07F9D\"unlockedavailablecontainer47d1be7040c44b609471b42f8d9a9f00Mon,\ \ 15 May 2017 01:30:41 GMT\"0x8D49B31FFD7DD27\"unlockedavailablecontainer47f9849701e24c17ae59b31046f130b9Mon,\ \ 15 May 2017 01:30:32 GMT\"0x8D49B31FA970F01\"unlockedavailablecontainer491fab49460f45779d4ec7bab2098980Mon,\ \ 15 May 2017 01:30:57 GMT\"0x8D49B3209B4418B\"unlockedavailablecontainer4943ce0b46924efd9c8291656d95385fMon,\ \ 15 May 2017 01:26:39 GMT\"0x8D49B316F8C9E81\"unlockedavailablecontainer4a1eda9acc0147c68942d3e9d601b795Wed,\ \ 14 Jun 2017 06:56:08 GMT\"0x8D4B2F26F18F097\"unlockedavailableblobcontainer4e25936cdd464e0ab10991aaa8a6849dMon,\ - \ 15 May 2017 01:30:34 GMT\"0x8D49B31FBF24AD1\"unlockedavailablecontainer4ec76bcd84474eceac6a1ef9accacfb8Mon,\ + \ 15 May 2017 01:30:34 GMT\"0x8D49B31FBF24AD1\"unlockedavailablecontainer4e5a78b3678f46a09f066d953dc697cfFri,\ + \ 14 Jul 2017 21:52:55 GMT\"0x8D4CB02AF09FDEB\"unlockedavailableblobcontainer4ec76bcd84474eceac6a1ef9accacfb8Mon,\ \ 15 May 2017 01:29:49 GMT\"0x8D49B31E0BB75BA\"unlockedavailablecontainer4f9e1042Wed,\ \ 14 Jun 2017 02:25:16 GMT\"0x8D4B2CC9896D657\"unlockedavailableblobcontainer508f1053Wed,\ \ 14 Jun 2017 02:25:16 GMT\"0x8D4B2CC9861303F\"unlockedavailableblobcontainer51bedef01b414be997dc9a074e046703Wed,\ @@ -497,7 +506,8 @@ interactions: \ 15 May 2017 01:31:04 GMT\"0x8D49B320DD90B5E\"unlockedavailablecontainer580434153f254466908f64567ff4ac8cMon,\ \ 15 May 2017 01:21:26 GMT\"0x8D49B30B4E91AFB\"unlockedavailablecontainer59bf596a12774801a133911a0f949f40Mon,\ \ 15 May 2017 01:30:49 GMT\"0x8D49B32048D41AD\"unlockedavailablecontainer59df5a83c87a495e8afd546ca9e64142Wed,\ - \ 12 Jul 2017 20:52:47 GMT\"0x8D4C967F3CF97CD\"unlockedavailableblobcontainer5d786b838c8440c98b9befb998d5c8b1Mon,\ + \ 12 Jul 2017 20:52:47 GMT\"0x8D4C967F3CF97CD\"unlockedavailableblobcontainer5b806570dd23416bbecbbef8e98c4056Thu,\ + \ 13 Jul 2017 21:28:35 GMT\"0x8D4CA361EAF00EC\"unlockedavailableblobcontainer5d786b838c8440c98b9befb998d5c8b1Mon,\ \ 15 May 2017 01:30:56 GMT\"0x8D49B32089E7FE5\"unlockedavailablecontainer6075d83fa8cc4019938cf4b4513e3654Mon,\ \ 15 May 2017 01:30:58 GMT\"0x8D49B320A48FBB4\"unlockedavailablecontainer632f6d2ac3ff47d0807bf42365211f18Sat,\ \ 10 Jun 2017 23:56:45 GMT\"0x8D4B05C5990B100\"unlockedavailablecontainer6558ebae2a5c457e857b45ee7af129e8Wed,\ @@ -507,7 +517,8 @@ interactions: \ 15 May 2017 01:30:43 GMT\"0x8D49B32014BAE8E\"unlockedavailablecontainer667fa847b79d4bddaffd62f5d569454aMon,\ \ 15 May 2017 01:30:57 GMT\"0x8D49B32096EEE73\"unlockedavailablecontainer6742a766706e4ece89f15dc06271ffc7Mon,\ \ 15 May 2017 01:30:53 GMT\"0x8D49B320734C277\"unlockedavailablecontainer6888f25d8e0c4337aef9c041bb2868eaMon,\ - \ 15 May 2017 01:23:21 GMT\"0x8D49B30F96801CA\"unlockedavailablecontainer6b2792b8e54c4924909ee926490fa22aMon,\ + \ 15 May 2017 01:23:21 GMT\"0x8D49B30F96801CA\"unlockedavailablecontainer6939b9592de64b088ce40e821b2db934Thu,\ + \ 13 Jul 2017 21:09:07 GMT\"0x8D4CA3366142525\"unlockedavailableblobcontainer6b2792b8e54c4924909ee926490fa22aMon,\ \ 15 May 2017 01:30:39 GMT\"0x8D49B31FEC1F46A\"unlockedavailablecontainer6c3d4da106054b29ac76e525aff45846Fri,\ \ 23 Jun 2017 07:04:01 GMT\"0x8D4BA0606B19B87\"unlockedavailableblobcontainer6e01210793c540b1b0554168d0178aa4Mon,\ \ 15 May 2017 01:30:40 GMT\"0x8D49B31FF5F62BC\"unlockedavailablecontainer7010f5d3b71a4c4da3fd044e5d3b5406Mon,\ @@ -540,7 +551,8 @@ interactions: \ 26 Jun 2017 22:00:17 GMT\"0x8D4BCDEBB42F652\"unlockedavailableblobcontainer908ed95249b54f6983c7a253df301170Thu,\ \ 13 Jul 2017 18:28:26 GMT\"0x8D4CA1CF3A4A704\"unlockedavailableblobcontainer91745cd73d26484ab3a25865aa15671eMon,\ \ 15 May 2017 01:28:44 GMT\"0x8D49B31BA662E25\"unlockedavailablecontainer93919f20f90942f5941c602d2bd470bcFri,\ - \ 23 Jun 2017 07:06:17 GMT\"0x8D4BA06581A7EF6\"unlockedavailableblobcontainer9621cbf7ddf24c54ba39559df2d52883Mon,\ + \ 23 Jun 2017 07:06:17 GMT\"0x8D4BA06581A7EF6\"unlockedavailableblobcontainer94ddc18536114411817984cec1300dd2Fri,\ + \ 14 Jul 2017 22:13:03 GMT\"0x8D4CB057F245566\"unlockedavailableblobcontainer9621cbf7ddf24c54ba39559df2d52883Mon,\ \ 15 May 2017 01:30:53 GMT\"0x8D49B3206DC0AE1\"unlockedavailablecontainer996986fad15c4658858c99fce273872cMon,\ \ 15 May 2017 01:24:26 GMT\"0x8D49B31202BD27B\"unlockedavailablecontainer9a58e84bb4974040ab7908209bb6597fMon,\ \ 15 May 2017 01:30:58 GMT\"0x8D49B3209D53D18\"unlockedavailablecontainer9baf235575ea4549a051d8ef14da8b40Mon,\ @@ -550,11 +562,13 @@ interactions: \ 15 May 2017 01:30:24 GMT\"0x8D49B31F5D88108\"unlockedavailablecontainera0987b479bee44ff838bfb186ded41c7Mon,\ \ 15 May 2017 01:30:40 GMT\"0x8D49B31FF84A4D6\"unlockedavailablecontainera1eddabee55f46189656a7b165eff213Fri,\ \ 23 Jun 2017 07:06:18 GMT\"0x8D4BA0658E3E8E1\"unlockedavailableblobcontainera4061097ea084ea8b8e7eb25e6f20b4cWed,\ - \ 28 Jun 2017 01:09:02 GMT\"0x8D4BDC243D28787\"unlockedavailableblobcontainera5185b8c02b74f5c9c32fbec4bafaf16Mon,\ + \ 28 Jun 2017 01:09:02 GMT\"0x8D4BDC243D28787\"unlockedavailableblobcontainera4fedc43ecfb49eea2a2dfdd7f41372bFri,\ + \ 14 Jul 2017 21:50:07 GMT\"0x8D4CB024B27311A\"unlockedexpiredcontainera5185b8c02b74f5c9c32fbec4bafaf16Mon,\ \ 15 May 2017 01:30:39 GMT\"0x8D49B31FEE3B36F\"unlockedavailablecontainera60f949c45e04769aa9b7e97a1a4d9d5Tue,\ \ 20 Jun 2017 21:29:23 GMT\"0x8D4B8236BC8959E\"unlockedavailablecontainera7cc7c6f3c044bcba909b947884aea8bMon,\ \ 15 May 2017 01:30:35 GMT\"0x8D49B31FC383A46\"unlockedavailablecontainera966b62773af4a7db61de40a30a182f5Mon,\ - \ 15 May 2017 01:28:12 GMT\"0x8D49B31A715E157\"unlockedavailablecontaineraa8b6b58f05744999e3ce12b3e1f3867Mon,\ + \ 15 May 2017 01:28:12 GMT\"0x8D49B31A715E157\"unlockedavailablecontaineraa472072c75a4cdb9bfea87b68e2bd34Fri,\ + \ 14 Jul 2017 22:28:04 GMT\"0x8D4CB07986E0EF0\"unlockedavailableblobcontaineraa8b6b58f05744999e3ce12b3e1f3867Mon,\ \ 15 May 2017 01:31:05 GMT\"0x8D49B320E3E9686\"unlockedavailablecontaineraabd178dcbc74fa9944e609f7c4da177Mon,\ \ 15 May 2017 01:30:39 GMT\"0x8D49B31FE9FE73B\"unlockedavailablecontainerab333f9eee8043e8b45e169e9ea77d4dMon,\ \ 15 May 2017 01:21:21 GMT\"0x8D49B30B24D6574\"unlockedavailablecontainerabe4b31f03cc429f862d30810de8d226Mon,\ @@ -603,7 +617,8 @@ interactions: \ 22 May 2017 17:29:35 GMT\"0x8D4A1381D820E7B\"unlockedavailablecontainere32fc7af61a948a58225edc05951dc6dMon,\ \ 15 May 2017 01:23:54 GMT\"0x8D49B310D052CB6\"unlockedavailablecontainere3cb677cd9c94a41b4369eead7cdce96Mon,\ \ 15 May 2017 01:30:59 GMT\"0x8D49B320AAF988C\"unlockedavailablecontainere560a8c39deb4f10b2a383430d8a1ea5Mon,\ - \ 15 May 2017 01:30:41 GMT\"0x8D49B32002D86EE\"unlockedavailablecontainerea13b1ba6fd4472bb27ef23056be666eMon,\ + \ 15 May 2017 01:30:41 GMT\"0x8D49B32002D86EE\"unlockedavailablecontainere9e43b6ada5f423f81915883dd620dbaThu,\ + \ 13 Jul 2017 21:09:05 GMT\"0x8D4CA33656B67E9\"unlockedavailableblobcontainerea13b1ba6fd4472bb27ef23056be666eMon,\ \ 15 May 2017 01:26:19 GMT\"0x8D49B3163AE2855\"unlockedavailablecontainereb88c96e43b44c9986ccb2119c76ca52Mon,\ \ 15 May 2017 01:25:01 GMT\"0x8D49B3135526328\"unlockedavailablecontainerebebff8fde074c1a9753ffabd1f186eeWed,\ \ 12 Jul 2017 20:52:45 GMT\"0x8D4C967F2CDEDAD\"unlockedavailableblobcontainereca9fd61b6ca491388e9760df1e26f4cMon,\ @@ -614,7 +629,8 @@ interactions: \ 13 Jul 2017 18:28:27 GMT\"0x8D4CA1CF4866531\"unlockedavailableblobcontainerf466a76090ee40778f4d031dbe8133f3Mon,\ \ 15 May 2017 01:30:30 GMT\"0x8D49B31F970A87E\"unlockedavailablecontainerf6608b1e65004e4b88fde613bd3c2375Mon,\ \ 15 May 2017 01:31:00 GMT\"0x8D49B320B836313\"unlockedavailablecontainerf8043d5d79734b17ac1076a66434d64eMon,\ - \ 15 May 2017 01:30:49 GMT\"0x8D49B3204B6550A\"unlockedavailablecontainerfbd05d56e58c4896bf70b56ba52926feMon,\ + \ 15 May 2017 01:30:49 GMT\"0x8D49B3204B6550A\"unlockedavailablecontainerfa50f45c216f4a5684fcafd93dcc1dacFri,\ + \ 14 Jul 2017 21:49:53 GMT\"0x8D4CB024294073F\"unlockedavailableblobcontainerfbd05d56e58c4896bf70b56ba52926feMon,\ \ 15 May 2017 01:30:32 GMT\"0x8D49B31FAD31193\"unlockedavailablecontainerfbd8475c20e34385b4a28b67c2ba9a64Wed,\ \ 14 Jun 2017 04:38:53 GMT\"0x8D4B2DF42BD1285\"unlockedavailableblobcontainerfc5044a1ba964f41b3d242f8f65d1603Mon,\ \ 15 May 2017 01:30:33 GMT\"0x8D49B31FB43742E\"unlockedavailablecontainerff40f1c5cc20420883f7201ce1f22731Mon,\ @@ -1081,11 +1097,11 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:25 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [5cece0aa-0001-0130-6d08-fc48ab000000] + x-ms-request-id: [5ca0163f-0001-005c-6702-fda52d000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_list_containers_with_include_metadata.yaml b/tests/recordings/test_container.test_list_containers_with_include_metadata.yaml index bbaf504f..e2084063 100644 --- a/tests/recordings/test_container.test_list_containers_with_include_metadata.yaml +++ b/tests/recordings/test_container.test_list_containers_with_include_metadata.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [884a2cf0-67fb-11e7-ac3a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7f0d4802-68f5-11e7-8c3d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:26 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerabb4177f?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:07 GMT'] - ETag: ['"0x8D4CA1F6C752857"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:27 GMT'] + ETag: ['"0x8D4CB1963A717CC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4c7caff7-0001-005b-2d08-fc53a8000000] + x-ms-request-id: [f7d279e8-0001-0077-5e02-fdd195000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [886698b8-67fb-11e7-bc6a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7f25b14c-68f5-11e7-8507-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:26 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -37,36 +37,36 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:07 GMT'] - ETag: ['"0x8D4CA1F6C752858"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:27 GMT'] + ETag: ['"0x8D4CB1963C4E849"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4c7cb00e-0001-005b-4008-fc53a8000000] + x-ms-request-id: [f7d279f4-0001-0077-6702-fdd195000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [886bf880-67fb-11e7-a90a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7f2acaa8-68f5-11e7-957e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:26 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?comp=list&prefix=containerabb4177f&include=metadata response: body: {string: "\uFEFFcontainerabb4177fcontainerabb4177fThu,\ - \ 13 Jul 2017 18:46:07 GMT\"0x8D4CA1F6C752858\"unlockedavailableworld42containerabb4177fcontainerabb4177fSat,\ + \ 15 Jul 2017 00:35:27 GMT\"0x8D4CB1963C4E849\"unlockedavailableworld42"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [4c7cb01f-0001-005b-5008-fc53a8000000] + x-ms-request-id: [f7d27a00-0001-0077-7102-fdd195000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_list_containers_with_num_results_and_marker.yaml b/tests/recordings/test_container.test_list_containers_with_num_results_and_marker.yaml index b77e721c..3f1c465d 100644 --- a/tests/recordings/test_container.test_list_containers_with_num_results_and_marker.yaml +++ b/tests/recordings/test_container.test_list_containers_with_num_results_and_marker.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [888de706-67fb-11e7-9dce-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7f4af68c-68f5-11e7-b091-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:26 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/listcontainer044a81a2f?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:07 GMT'] - ETag: ['"0x8D4CA1F6CB422F8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:27 GMT'] + ETag: ['"0x8D4CB19640F6843"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fb3fade2-0001-00ee-3708-fc5e57000000] + x-ms-request-id: [51b6d038-0001-00bb-1b02-fdb520000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,21 +26,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [88a2287e-67fb-11e7-905a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7f6320ba-68f5-11e7-bad4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/listcontainer144a81a2f?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:07 GMT'] - ETag: ['"0x8D4CA1F6CBADAF3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:27 GMT'] + ETag: ['"0x8D4CB1964166E64"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fb3fae02-0001-00ee-5408-fc5e57000000] + x-ms-request-id: [51b6d046-0001-00bb-2602-fdb520000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -48,21 +48,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [88ab1100-67fb-11e7-bee3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7f69aad4-68f5-11e7-83af-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/listcontainer244a81a2f?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:07 GMT'] - ETag: ['"0x8D4CA1F6CC36820"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:27 GMT'] + ETag: ['"0x8D4CB19641D2660"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fb3fae24-0001-00ee-7108-fc5e57000000] + x-ms-request-id: [51b6d054-0001-00bb-3302-fdb520000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -70,70 +70,70 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [88b1b988-67fb-11e7-b2e5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7f7084ba-68f5-11e7-a4dd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/listcontainer344a81a2f?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:08 GMT'] - ETag: ['"0x8D4CA1F6CCF50FF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:27 GMT'] + ETag: ['"0x8D4CB196423B749"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fb3fae42-0001-00ee-0c08-fc5e57000000] + x-ms-request-id: [51b6d061-0001-00bb-3f02-fdb520000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [88bd593a-67fb-11e7-a106-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7f770ca6-68f5-11e7-ac8c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:27 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?comp=list&prefix=listcontainer&maxresults=2 response: body: {string: "\uFEFFlistcontainer2listcontainer044a81a2fThu,\ - \ 13 Jul 2017 18:46:08 GMT\"0x8D4CA1F6CB422F8\"unlockedavailablelistcontainer144a81a2fThu,\ - \ 13 Jul 2017 18:46:08 GMT\"0x8D4CA1F6CBADAF3\"unlockedavailable/storagename/listcontainer244a81a2f"} + \ ServiceEndpoint=\"https://storagename.blob.core.windows.net/\">listcontainer2listcontainer044a81a2fSat,\ + \ 15 Jul 2017 00:35:27 GMT\"0x8D4CB19640F6843\"unlockedavailablelistcontainer144a81a2fSat,\ + \ 15 Jul 2017 00:35:27 GMT\"0x8D4CB1964166E64\"unlockedavailable/storagename/listcontainer244a81a2f"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [fb3fae76-0001-00ee-3808-fc5e57000000] + x-ms-request-id: [51b6d074-0001-00bb-5102-fdb520000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [88c29cda-67fb-11e7-ba8e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7f7d030c-68f5-11e7-a997-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:27 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?comp=list&prefix=listcontainer&marker=%2Fstoragename%2Flistcontainer244a81a2f&maxresults=2 response: body: {string: "\uFEFFlistcontainer/storagename/listcontainer244a81a2f2listcontainer244a81a2fThu,\ - \ 13 Jul 2017 18:46:08 GMT\"0x8D4CA1F6CC36820\"unlockedavailablelistcontainer344a81a2fThu,\ - \ 13 Jul 2017 18:46:08 GMT\"0x8D4CA1F6CCF50FF\"unlockedavailablelistcontainer/storagename/listcontainer244a81a2f2listcontainer244a81a2fSat,\ + \ 15 Jul 2017 00:35:28 GMT\"0x8D4CB19641D2660\"unlockedavailablelistcontainer344a81a2fSat,\ + \ 15 Jul 2017 00:35:28 GMT\"0x8D4CB196423B749\"unlockedavailable"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:27 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [fb3fae8c-0001-00ee-4808-fc5e57000000] + x-ms-request-id: [51b6d07f-0001-00bb-5b02-fdb520000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_list_containers_with_prefix.yaml b/tests/recordings/test_container.test_list_containers_with_prefix.yaml index 4ae44ca4..dfb535cf 100644 --- a/tests/recordings/test_container.test_list_containers_with_prefix.yaml +++ b/tests/recordings/test_container.test_list_containers_with_prefix.yaml @@ -4,45 +4,45 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [88f3625c-67fb-11e7-b7d2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7fac05e6-68f5-11e7-955a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containerd3041389?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:08 GMT'] - ETag: ['"0x8D4CA1F6D060578"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:27 GMT'] + ETag: ['"0x8D4CB19647B924A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [068248c7-0001-00f4-1708-fc7138000000] + x-ms-request-id: [659461f4-0001-0023-6002-fd3b1f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [890e4202-67fb-11e7-bc39-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7fc095ba-68f5-11e7-8b25-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:27 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?comp=list&prefix=containerd3041389 response: body: {string: "\uFEFFcontainerd3041389containerd3041389Thu,\ - \ 13 Jul 2017 18:46:08 GMT\"0x8D4CA1F6D060578\"unlockedavailablecontainerd3041389containerd3041389Sat,\ + \ 15 Jul 2017 00:35:28 GMT\"0x8D4CB19647B924A\"unlockedavailable"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [068248e5-0001-00f4-3208-fc7138000000] + x-ms-request-id: [6594620f-0001-0023-7002-fd3b1f000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_list_containers_with_public_access.yaml b/tests/recordings/test_container.test_list_containers_with_public_access.yaml index 7bb666fb..a8c58a22 100644 --- a/tests/recordings/test_container.test_list_containers_with_public_access.yaml +++ b/tests/recordings/test_container.test_list_containers_with_public_access.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [892bc840-67fb-11e7-bd29-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7fdc2686-68f5-11e7-a6f6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:27 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container664b164b?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:08 GMT'] - ETag: ['"0x8D4CA1F6D4726A9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:28 GMT'] + ETag: ['"0x8D4CB1964981559"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3a6c2411-0001-0123-6a08-fc7d4a000000] + x-ms-request-id: [328e107e-0001-0107-5902-fde404000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,46 +26,46 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-public-access: [blob] - x-ms-client-request-id: [8940e4dc-67fb-11e7-9508-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:09 GMT'] + x-ms-client-request-id: [7ff06150-68f5-11e7-bb99-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container664b164b?restype=container&comp=acl response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:08 GMT'] - ETag: ['"0x8D4CA1F6D4726AA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:28 GMT'] + ETag: ['"0x8D4CB196498155A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3a6c2425-0001-0123-7908-fc7d4a000000] + x-ms-request-id: [328e1096-0001-0107-6c02-fde404000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [89473758-67fb-11e7-b206-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7ff656fa-68f5-11e7-a334-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:28 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?comp=list&prefix=container664b164b response: body: {string: "\uFEFFcontainer664b164bcontainer664b164bThu,\ - \ 13 Jul 2017 18:46:09 GMT\"0x8D4CA1F6D4726AA\"unlockedavailableblobcontainer664b164bcontainer664b164bSat,\ + \ 15 Jul 2017 00:35:28 GMT\"0x8D4CB196498155A\"unlockedavailableblob"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [3a6c242e-0001-0123-8008-fc7d4a000000] + x-ms-request-id: [328e10a5-0001-0107-7b02-fde404000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_set_container_acl.yaml b/tests/recordings/test_container.test_set_container_acl.yaml index f8ab853c..5ece9f38 100644 --- a/tests/recordings/test_container.test_set_container_acl.yaml +++ b/tests/recordings/test_container.test_set_container_acl.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8965ac22-67fb-11e7-803f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [801400b0-68f5-11e7-9661-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container22000f2d?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:09 GMT'] - ETag: ['"0x8D4CA1F6D661EF4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:28 GMT'] + ETag: ['"0x8D4CB1964BAB7D2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3c9458ea-0001-008a-4008-fceef7000000] + x-ms-request-id: [73311299-0001-000b-0602-fd4ca0000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,30 +26,30 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8979cedc-67fb-11e7-bf0d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8028bec6-68f5-11e7-b2cc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container22000f2d?restype=container&comp=acl response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:09 GMT'] - ETag: ['"0x8D4CA1F6D661EF5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:28 GMT'] + ETag: ['"0x8D4CB1964C82E51"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3c9458f9-0001-008a-4c08-fceef7000000] + x-ms-request-id: [733112b6-0001-000b-1c02-fd4ca0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [897f17f4-67fb-11e7-a198-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [802e3af4-68f5-11e7-8b68-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:28 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container22000f2d?restype=container&comp=acl @@ -58,13 +58,13 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:09 GMT'] - ETag: ['"0x8D4CA1F6D661EF5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:28 GMT'] + ETag: ['"0x8D4CB1964C82E51"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [3c945904-0001-008a-5708-fceef7000000] + x-ms-request-id: [733112c7-0001-000b-2b02-fd4ca0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_set_container_acl_too_many_ids.yaml b/tests/recordings/test_container.test_set_container_acl_too_many_ids.yaml index 79b10739..4e1a720f 100644 --- a/tests/recordings/test_container.test_set_container_acl_too_many_ids.yaml +++ b/tests/recordings/test_container.test_set_container_acl_too_many_ids.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [899bac8c-67fb-11e7-b067-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [804862ec-68f5-11e7-ba35-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containercff1491?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:09 GMT'] - ETag: ['"0x8D4CA1F6DB4D35B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:29 GMT'] + ETag: ['"0x8D4CB1965088943"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [610139eb-0001-00f5-6108-fc70c5000000] + x-ms-request-id: [92dc248e-0001-0058-4402-fd50af000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_container.test_set_container_acl_with_empty_signed_identifier.yaml b/tests/recordings/test_container.test_set_container_acl_with_empty_signed_identifier.yaml index 183e6546..ef968d07 100644 --- a/tests/recordings/test_container.test_set_container_acl_with_empty_signed_identifier.yaml +++ b/tests/recordings/test_container.test_set_container_acl_with_empty_signed_identifier.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [89c6b698-67fb-11e7-96a3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [80701834-68f5-11e7-8e04-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container8f051b31?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:09 GMT'] - ETag: ['"0x8D4CA1F6DD69779"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:29 GMT'] + ETag: ['"0x8D4CB1965612C1A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [23aa16b1-0001-0047-6608-fc8bbf000000] + x-ms-request-id: [9627c5e9-0001-0039-0402-fd1470000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -28,30 +28,30 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['145'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [89dc0976-67fb-11e7-bfb7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [80843a62-68f5-11e7-a5bd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container8f051b31?restype=container&comp=acl response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:09 GMT'] - ETag: ['"0x8D4CA1F6DD6977A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:29 GMT'] + ETag: ['"0x8D4CB1965612C1B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [23aa16cb-0001-0047-7e08-fc8bbf000000] + x-ms-request-id: [9627c5fb-0001-0039-1302-fd1470000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [89e1f6ba-67fb-11e7-929e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [80899b22-68f5-11e7-88be-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:29 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container8f051b31?restype=container&comp=acl @@ -59,13 +59,13 @@ interactions: body: {string: "\uFEFFempty"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:09 GMT'] - ETag: ['"0x8D4CA1F6DD6977A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:29 GMT'] + ETag: ['"0x8D4CB1965612C1B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [23aa16d7-0001-0047-0a08-fc8bbf000000] + x-ms-request-id: [9627c606-0001-0039-1e02-fd1470000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_set_container_acl_with_empty_signed_identifiers.yaml b/tests/recordings/test_container.test_set_container_acl_with_empty_signed_identifiers.yaml index 6a30d8dd..a7f794f9 100644 --- a/tests/recordings/test_container.test_set_container_acl_with_empty_signed_identifiers.yaml +++ b/tests/recordings/test_container.test_set_container_acl_with_empty_signed_identifiers.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [89fe51c0-67fb-11e7-bc9e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [80a553ba-68f5-11e7-9617-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containeraaa91ba4?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:09 GMT'] - ETag: ['"0x8D4CA1F6E23A202"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:29 GMT'] + ETag: ['"0x8D4CB19650D599A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d0570b53-0001-0102-1308-fc107b000000] + x-ms-request-id: [1a9a83e5-0001-00cd-1a02-fd319c000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -28,30 +28,30 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['60'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8a131fe2-67fb-11e7-a09a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [80bccc74-68f5-11e7-b26b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/containeraaa91ba4?restype=container&comp=acl response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:09 GMT'] - ETag: ['"0x8D4CA1F6E23A203"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:29 GMT'] + ETag: ['"0x8D4CB19655C4B31"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d0570b67-0001-0102-2208-fc107b000000] + x-ms-request-id: [1a9a83fc-0001-00cd-2f02-fd319c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8a1924a8-67fb-11e7-a0d4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [80c28a7a-68f5-11e7-bf52-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:29 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/containeraaa91ba4?restype=container&comp=acl @@ -60,13 +60,13 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:09 GMT'] - ETag: ['"0x8D4CA1F6E23A203"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:29 GMT'] + ETag: ['"0x8D4CB19655C4B31"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [d0570b70-0001-0102-2a08-fc107b000000] + x-ms-request-id: [1a9a8418-0001-00cd-4702-fd319c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_set_container_acl_with_lease_id.yaml b/tests/recordings/test_container.test_set_container_acl_with_lease_id.yaml index dde2db4b..7d4d2f27 100644 --- a/tests/recordings/test_container.test_set_container_acl_with_lease_id.yaml +++ b/tests/recordings/test_container.test_set_container_acl_with_lease_id.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8a35614c-67fb-11e7-81de-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [80de2714-68f5-11e7-8ce5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container21a014dd?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:10 GMT'] - ETag: ['"0x8D4CA1F6E2343C4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:30 GMT'] + ETag: ['"0x8D4CB196622BAC5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [47f91914-0001-00a5-0308-fc6fcd000000] + x-ms-request-id: [196501dd-0001-013a-2702-fd5122000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8a495878-67fb-11e7-bdb3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [81009452-68f5-11e7-81fe-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:29 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -37,13 +37,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:10 GMT'] - ETag: ['"0x8D4CA1F6E2343C4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:30 GMT'] + ETag: ['"0x8D4CB196622BAC5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [b46202cf-4dd3-42c1-bf36-df7506109ff3] - x-ms-request-id: [47f91931-0001-00a5-1d08-fc6fcd000000] + x-ms-lease-id: [b5d4bda6-c65d-4065-9b3f-d1c0f21ee4ff] + x-ms-request-id: [19650210-0001-013a-5102-fd5122000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -51,31 +51,31 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8a4ecad8-67fb-11e7-ab2f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:11 GMT'] - x-ms-lease-id: [b46202cf-4dd3-42c1-bf36-df7506109ff3] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [810601f8-68f5-11e7-9302-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:29 GMT'] + x-ms-lease-id: [b5d4bda6-c65d-4065-9b3f-d1c0f21ee4ff] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container21a014dd?restype=container&comp=acl response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:10 GMT'] - ETag: ['"0x8D4CA1F6E2343C5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:30 GMT'] + ETag: ['"0x8D4CB196622BAC6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [47f91944-0001-00a5-2e08-fc6fcd000000] + x-ms-request-id: [1965021b-0001-013a-5c02-fd5122000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8a5466dc-67fb-11e7-9f3b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [810b59e6-68f5-11e7-9599-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:29 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container21a014dd?restype=container&comp=acl @@ -84,13 +84,13 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:10 GMT'] - ETag: ['"0x8D4CA1F6E2343C5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:30 GMT'] + ETag: ['"0x8D4CB196622BAC6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [47f91959-0001-00a5-4008-fc6fcd000000] + x-ms-request-id: [19650225-0001-013a-6302-fd5122000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_set_container_acl_with_public_access.yaml b/tests/recordings/test_container.test_set_container_acl_with_public_access.yaml index 6a0072eb..562a57b4 100644 --- a/tests/recordings/test_container.test_set_container_acl_with_public_access.yaml +++ b/tests/recordings/test_container.test_set_container_acl_with_public_access.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8a7aa7de-67fb-11e7-9419-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8135d6ba-68f5-11e7-8cc9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container909916f7?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:11 GMT'] - ETag: ['"0x8D4CA1F6E848CB2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:30 GMT'] + ETag: ['"0x8D4CB19663AC119"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7205ebde-0001-00bf-4208-fc40a2000000] + x-ms-request-id: [673fd3ff-0001-012f-7a02-fd93bb000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,31 +26,31 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-public-access: [container] - x-ms-client-request-id: [8a914624-67fb-11e7-8c6b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:11 GMT'] + x-ms-client-request-id: [814b45b0-68f5-11e7-a111-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container909916f7?restype=container&comp=acl response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:11 GMT'] - ETag: ['"0x8D4CA1F6E848CB3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:30 GMT'] + ETag: ['"0x8D4CB19663AC11A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7205ec11-0001-00bf-6f08-fc40a2000000] + x-ms-request-id: [673fd41a-0001-012f-1102-fd93bb000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8a96f8c6-67fb-11e7-b1fe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [81511512-68f5-11e7-8b65-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:30 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container909916f7?restype=container&comp=acl @@ -59,14 +59,14 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:11 GMT'] - ETag: ['"0x8D4CA1F6E848CB3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:30 GMT'] + ETag: ['"0x8D4CB19663AC11A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-blob-public-access: [container] - x-ms-request-id: [7205ec34-0001-00bf-1208-fc40a2000000] + x-ms-request-id: [673fd42c-0001-012f-2202-fd93bb000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_set_container_acl_with_signed_identifiers.yaml b/tests/recordings/test_container.test_set_container_acl_with_signed_identifiers.yaml index 3144b00d..49d834e6 100644 --- a/tests/recordings/test_container.test_set_container_acl_with_signed_identifiers.yaml +++ b/tests/recordings/test_container.test_set_container_acl_with_signed_identifiers.yaml @@ -4,68 +4,68 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8ab27600-67fb-11e7-92f0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [816c994a-68f5-11e7-aeca-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container9d71916?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:11 GMT'] - ETag: ['"0x8D4CA1F6EDAAE6D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:31 GMT'] + ETag: ['"0x8D4CB19661D277A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [158eb652-0001-013e-4a08-fca4a0000000] + x-ms-request-id: [1dbd5faf-0001-0123-4902-fd7d4a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - testid2017-07-13T18:45:12Z2017-07-13T19:46:12Zr' + testid2017-07-15T00:34:30Z2017-07-15T01:35:30Zr' headers: Connection: [keep-alive] Content-Length: ['257'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8ac79b02-67fb-11e7-baa1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8182ccd8-68f5-11e7-b6c5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container9d71916?restype=container&comp=acl response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:11 GMT'] - ETag: ['"0x8D4CA1F6EDAAE6E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:31 GMT'] + ETag: ['"0x8D4CB1966227D67"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [158eb65a-0001-013e-5008-fca4a0000000] + x-ms-request-id: [1dbd5fc0-0001-0123-5602-fd7d4a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8acd4548-67fb-11e7-97e3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [81885568-68f5-11e7-bf21-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:30 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container9d71916?restype=container&comp=acl response: - body: {string: "\uFEFFtestid2017-07-13T18:45:12.0000000Z2017-07-13T19:46:12.0000000Zr"} + body: {string: "\uFEFFtestid2017-07-15T00:34:30.0000000Z2017-07-15T01:35:30.0000000Zr"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:11 GMT'] - ETag: ['"0x8D4CA1F6EDAAE6E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:31 GMT'] + ETag: ['"0x8D4CB1966227D67"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [158eb668-0001-013e-5908-fca4a0000000] + x-ms-request-id: [1dbd5fd2-0001-0123-6702-fd7d4a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_set_container_metadata.yaml b/tests/recordings/test_container.test_set_container_metadata.yaml index 1c078ef0..e1775c82 100644 --- a/tests/recordings/test_container.test_set_container_metadata.yaml +++ b/tests/recordings/test_container.test_set_container_metadata.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8ae92ede-67fb-11e7-92d7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [81a2d992-68f5-11e7-9189-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container7460113e?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:11 GMT'] - ETag: ['"0x8D4CA1F6F14255A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:31 GMT'] + ETag: ['"0x8D4CB1966ADCDC9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ca8779ab-0001-0091-3908-fcc065000000] + x-ms-request-id: [9a96e7ba-0001-0078-3002-fd3c63000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8afdbf86-67fb-11e7-897b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [81b7bf58-68f5-11e7-ac38-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:31 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['43'] x-ms-version: ['2017-04-17'] @@ -37,36 +37,36 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:11 GMT'] - ETag: ['"0x8D4CA1F6F14255B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:31 GMT'] + ETag: ['"0x8D4CB1966ADCDCA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ca8779cd-0001-0091-5608-fcc065000000] + x-ms-request-id: [9a96e7c9-0001-0078-3c02-fd3c63000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8b03733e-67fb-11e7-9f6c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [81bd739c-68f5-11e7-bd4e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:31 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container7460113e?restype=container&comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:11 GMT'] - ETag: ['"0x8D4CA1F6F14255B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:31 GMT'] + ETag: ['"0x8D4CB1966ADCDCA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-hello: [world] x-ms-meta-number: ['43'] - x-ms-request-id: [ca8779e7-0001-0091-6e08-fcc065000000] + x-ms-request-id: [9a96e7ce-0001-0078-4102-fd3c63000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_set_container_metadata_with_lease_id.yaml b/tests/recordings/test_container.test_set_container_metadata_with_lease_id.yaml index 6e34e5a8..58918bd4 100644 --- a/tests/recordings/test_container.test_set_container_metadata_with_lease_id.yaml +++ b/tests/recordings/test_container.test_set_container_metadata_with_lease_id.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8b20dcc6-67fb-11e7-a87d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [81d8b15c-68f5-11e7-9ea8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/container90ee16ee?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:12 GMT'] - ETag: ['"0x8D4CA1F6F6CB0F9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:30 GMT'] + ETag: ['"0x8D4CB19664B3A61"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7f00a090-0001-00d3-3908-fceb71000000] + x-ms-request-id: [60ab5198-0001-0120-3002-fd7e4d000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8b35efb4-67fb-11e7-b40c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [81f00c62-68f5-11e7-9f90-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:31 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -37,13 +37,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:12 GMT'] - ETag: ['"0x8D4CA1F6F6CB0F9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:30 GMT'] + ETag: ['"0x8D4CB19664B3A61"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [d86402b5-6ed8-49c4-aeab-21436efb3f5c] - x-ms-request-id: [7f00a098-0001-00d3-3f08-fceb71000000] + x-ms-lease-id: [b20a9a34-ef33-49ea-965e-26cdce252baf] + x-ms-request-id: [60ab51cc-0001-0120-5e02-fd7e4d000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8b3e9270-67fb-11e7-a191-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:12 GMT'] - x-ms-lease-id: [d86402b5-6ed8-49c4-aeab-21436efb3f5c] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [81f5631a-68f5-11e7-a4cd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:31 GMT'] + x-ms-lease-id: [b20a9a34-ef33-49ea-965e-26cdce252baf] x-ms-meta-hello: [world] x-ms-meta-number: ['43'] x-ms-version: ['2017-04-17'] @@ -63,36 +63,36 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:12 GMT'] - ETag: ['"0x8D4CA1F6F6CB0FA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:30 GMT'] + ETag: ['"0x8D4CB196694DB7D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7f00a0a4-0001-00d3-4b08-fceb71000000] + x-ms-request-id: [60ab51e5-0001-0120-7602-fd7e4d000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8b43f4e8-67fb-11e7-88da-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [81faca30-68f5-11e7-b15b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:31 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/container90ee16ee?restype=container&comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:12 GMT'] - ETag: ['"0x8D4CA1F6F6CB0FA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:30 GMT'] + ETag: ['"0x8D4CB196694DB7D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-hello: [world] x-ms-meta-number: ['43'] - x-ms-request-id: [7f00a0a9-0001-00d3-5008-fceb71000000] + x-ms-request-id: [60ab520e-0001-0120-1a02-fd7e4d000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_container.test_set_container_metadata_with_non_existing_container.yaml b/tests/recordings/test_container.test_set_container_metadata_with_non_existing_container.yaml index ed8b70f6..eb48b278 100644 --- a/tests/recordings/test_container.test_set_container_metadata_with_non_existing_container.yaml +++ b/tests/recordings/test_container.test_set_container_metadata_with_non_existing_container.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8b6e3782-67fb-11e7-b79a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [82261f8c-68f5-11e7-bf3c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:31 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['43'] x-ms-version: ['2017-04-17'] @@ -14,14 +14,14 @@ interactions: uri: https://storagename.blob.core.windows.net/containerd41cef?restype=container&comp=metadata response: body: {string: "\uFEFFContainerNotFoundThe\ - \ specified container does not exist.\nRequestId:458f685a-0001-009e-2208-fc2d93000000\n\ - Time:2017-07-13T18:46:13.0236072Z"} + \ specified container does not exist.\nRequestId:4b0f49e1-0001-00c5-2802-fd2aef000000\n\ + Time:2017-07-15T00:35:32.2542451Z"} headers: Content-Length: ['225'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [458f685a-0001-009e-2208-fc2d93000000] + x-ms-request-id: [4b0f49e1-0001-00c5-2802-fd2aef000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified container does not exist.} version: 1 diff --git a/tests/recordings/test_container.test_unicode_create_container_unicode_name.yaml b/tests/recordings/test_container.test_unicode_create_container_unicode_name.yaml index 4a7fe892..673d63b5 100644 --- a/tests/recordings/test_container.test_unicode_create_container_unicode_name.yaml +++ b/tests/recordings/test_container.test_unicode_create_container_unicode_name.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8b98eaf4-67fb-11e7-a16d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8257ef80-68f5-11e7-a6ac-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/%E5%95%8A%E9%BD%84%E4%B8%82%E7%8B%9B%E7%8B%9C?restype=container response: body: {string: "\uFEFFInvalidResourceNameThe\ - \ specifed resource name contains invalid characters.\nRequestId:bdb2ad69-0001-0131-6508-fc4956000000\n\ - Time:2017-07-13T18:46:13.4410389Z"} + \ specifed resource name contains invalid characters.\nRequestId:56599199-0001-0005-1502-fda0ab000000\n\ + Time:2017-07-15T00:35:33.0121500Z"} headers: Content-Length: ['243'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [bdb2ad69-0001-0131-6508-fc4956000000] + x-ms-request-id: [56599199-0001-0005-1502-fda0ab000000] x-ms-version: ['2017-04-17'] status: {code: 400, message: The specifed resource name contains invalid characters.} version: 1 diff --git a/tests/recordings/test_directory.test_create_directories.yaml b/tests/recordings/test_directory.test_create_directories.yaml index 2bd0f2db..b2b033a9 100644 --- a/tests/recordings/test_directory.test_create_directories.yaml +++ b/tests/recordings/test_directory.test_create_directories.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8be9f142-67fb-11e7-8937-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [82a2b858-68f5-11e7-bcf3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utshare32270fb2/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:13 GMT'] - ETag: ['"0x8D4CA1F7011DF94"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:33 GMT'] + ETag: ['"0x8D4CB19675BF4A5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:33 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d39cef0f-001a-00d4-2908-fc1df4000000] + x-ms-request-id: [ce5b2a36-001a-00a5-5e02-fd6fcd000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_directory.test_create_directories_fail_on_exist.yaml b/tests/recordings/test_directory.test_create_directories_fail_on_exist.yaml index ccbb1920..97d473c9 100644 --- a/tests/recordings/test_directory.test_create_directories_fail_on_exist.yaml +++ b/tests/recordings/test_directory.test_create_directories_fail_on_exist.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8c52d068-67fb-11e7-8659-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:14 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [82f4f9c6-68f5-11e7-b7dc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:33 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utshare38121575/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:14 GMT'] - ETag: ['"0x8D4CA1F706F52EA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:33 GMT'] + ETag: ['"0x8D4CB19679CDA03"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:33 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6705fbdd-001a-005c-6208-fca52d000000] + x-ms-request-id: [d334bbd6-001a-0003-7402-fd57d3000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -27,22 +27,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8c729042-67fb-11e7-be18-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:14 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [830ade62-68f5-11e7-b51e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:33 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utshare38121575/dir1?restype=directory response: body: {string: "\uFEFFResourceAlreadyExistsThe\ - \ specified resource already exists.\nRequestId:6705fbdf-001a-005c-6308-fca52d000000\n\ - Time:2017-07-13T18:46:14.6944024Z"} + \ specified resource already exists.\nRequestId:d334bbd8-001a-0003-7502-fd57d3000000\n\ + Time:2017-07-15T00:35:34.0376340Z"} headers: Content-Length: ['228'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:33 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [6705fbdf-001a-005c-6308-fca52d000000] + x-ms-request-id: [d334bbd8-001a-0003-7502-fd57d3000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: The specified resource already exists.} version: 1 diff --git a/tests/recordings/test_directory.test_create_directories_with_metadata.yaml b/tests/recordings/test_directory.test_create_directories_with_metadata.yaml index c67f9a21..b493e7e0 100644 --- a/tests/recordings/test_directory.test_create_directories_with_metadata.yaml +++ b/tests/recordings/test_directory.test_create_directories_with_metadata.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8ca2ce58-67fb-11e7-b59d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [833adf8c-68f5-11e7-b9ef-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:33 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:14 GMT'] - ETag: ['"0x8D4CA1F70B62CF6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:33 GMT'] + ETag: ['"0x8D4CB1967E1B7CA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:34 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [843396a5-001a-0034-5b08-fcfb7c000000] + x-ms-request-id: [ff933fca-001a-00a2-6702-fd9948000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,23 +28,23 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8cb9a4dc-67fb-11e7-adc9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [834f534c-68f5-11e7-ad87-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:33 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utshare3942156d/dir1?restype=directory&comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:14 GMT'] - ETag: ['"0x8D4CA1F70B62CF6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:33 GMT'] + ETag: ['"0x8D4CB1967E1B7CA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:34 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [843396a7-001a-0034-5c08-fcfb7c000000] + x-ms-request-id: [ff933fcc-001a-00a2-6802-fd9948000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_directory.test_create_directory_with_already_existing_directory.yaml b/tests/recordings/test_directory.test_create_directory_with_already_existing_directory.yaml index 91f1d59e..92261a48 100644 --- a/tests/recordings/test_directory.test_create_directory_with_already_existing_directory.yaml +++ b/tests/recordings/test_directory.test_create_directory_with_already_existing_directory.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8cebeb54-67fb-11e7-a3b8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [83833126-68f5-11e7-97c1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utsharecb001c44/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:15 GMT'] - ETag: ['"0x8D4CA1F70FC91F0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:34 GMT'] + ETag: ['"0x8D4CB19682A3F8C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:34 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6ab771c9-001a-0048-7608-fc6649000000] + x-ms-request-id: [95c5ccb8-001a-0119-7c02-fd3ee9000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -27,22 +27,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8d0044d2-67fb-11e7-aea7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8397fe1c-68f5-11e7-bb34-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utsharecb001c44/dir1?restype=directory response: body: {string: "\uFEFFResourceAlreadyExistsThe\ - \ specified resource already exists.\nRequestId:6ab771cb-001a-0048-7708-fc6649000000\n\ - Time:2017-07-13T18:46:15.9451023Z"} + \ specified resource already exists.\nRequestId:95c5ccbb-001a-0119-7e02-fd3ee9000000\n\ + Time:2017-07-15T00:35:35.7842039Z"} headers: Content-Length: ['228'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:34 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [6ab771cb-001a-0048-7708-fc6649000000] + x-ms-request-id: [95c5ccbb-001a-0119-7e02-fd3ee9000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: The specified resource already exists.} version: 1 diff --git a/tests/recordings/test_directory.test_delete_directory_with_existing_directory_fail_not_exist.yaml b/tests/recordings/test_directory.test_delete_directory_with_existing_directory_fail_not_exist.yaml index d42b6ac7..e15a8a1f 100644 --- a/tests/recordings/test_directory.test_delete_directory_with_existing_directory_fail_not_exist.yaml +++ b/tests/recordings/test_directory.test_delete_directory_with_existing_directory_fail_not_exist.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8d2f659e-67fb-11e7-8270-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [83c7ed52-68f5-11e7-a7ac-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utshare9e261f39/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:14 GMT'] - ETag: ['"0x8D4CA1F714196A5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:35 GMT'] + ETag: ['"0x8D4CB196870F253"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:35 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [35d37cea-001a-0124-4508-fc8bcf000000] + x-ms-request-id: [5ef3ae01-001a-009f-3602-fd2c6e000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -27,41 +27,41 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8d450a86-67fb-11e7-b0f6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [83ded898-68f5-11e7-a838-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:34 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.file.core.windows.net/utshare9e261f39/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:35 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [35d37cec-001a-0124-4608-fc8bcf000000] + x-ms-request-id: [5ef3ae03-001a-009f-3702-fd2c6e000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8d4d0894-67fb-11e7-b5df-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [83e4ac9e-68f5-11e7-a5bd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:34 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utshare9e261f39/dir1?restype=directory response: body: {string: "\uFEFFResourceNotFoundThe\ - \ specified resource does not exist.\nRequestId:35d37ced-001a-0124-4708-fc8bcf000000\n\ - Time:2017-07-13T18:46:15.9626899Z"} + \ specified resource does not exist.\nRequestId:5ef3ae04-001a-009f-3802-fd2c6e000000\n\ + Time:2017-07-15T00:35:35.9390625Z"} headers: Content-Length: ['223'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:35 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [35d37ced-001a-0124-4708-fc8bcf000000] + x-ms-request-id: [5ef3ae04-001a-009f-3802-fd2c6e000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified resource does not exist.} version: 1 diff --git a/tests/recordings/test_directory.test_delete_directory_with_existing_share.yaml b/tests/recordings/test_directory.test_delete_directory_with_existing_share.yaml index e1f0b753..db0ce028 100644 --- a/tests/recordings/test_directory.test_delete_directory_with_existing_share.yaml +++ b/tests/recordings/test_directory.test_delete_directory_with_existing_share.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8d7febec-67fb-11e7-9581-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [841dda00-68f5-11e7-8a96-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utshare954e1740/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:15 GMT'] - ETag: ['"0x8D4CA1F7192F9F1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:35 GMT'] + ETag: ['"0x8D4CB1968C49FC5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:35 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [aaf74ff7-001a-0098-3b08-fcdaeb000000] + x-ms-request-id: [79ad796a-001a-0012-7b02-fd60c8000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -27,41 +27,41 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8d96eb76-67fb-11e7-bac1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [84323892-68f5-11e7-963e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:35 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.file.core.windows.net/utshare954e1740/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:35 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [aaf74ff9-001a-0098-3c08-fcdaeb000000] + x-ms-request-id: [79ad796c-001a-0012-7c02-fd60c8000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8d9d5c4a-67fb-11e7-be9e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [843a33ba-68f5-11e7-8267-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:35 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utshare954e1740/dir1?restype=directory response: body: {string: "\uFEFFResourceNotFoundThe\ - \ specified resource does not exist.\nRequestId:aaf74ffa-001a-0098-3d08-fcdaeb000000\n\ - Time:2017-07-13T18:46:16.4531623Z"} + \ specified resource does not exist.\nRequestId:79ad796d-001a-0012-7d02-fd60c8000000\n\ + Time:2017-07-15T00:35:35.9702517Z"} headers: Content-Length: ['223'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:35 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [aaf74ffa-001a-0098-3d08-fcdaeb000000] + x-ms-request-id: [79ad796d-001a-0012-7d02-fd60c8000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified resource does not exist.} version: 1 diff --git a/tests/recordings/test_directory.test_delete_directory_with_non_existing_directory.yaml b/tests/recordings/test_directory.test_delete_directory_with_non_existing_directory.yaml index 567d62ce..7ca50aeb 100644 --- a/tests/recordings/test_directory.test_delete_directory_with_non_existing_directory.yaml +++ b/tests/recordings/test_directory.test_delete_directory_with_non_existing_directory.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8dcc6ff8-67fb-11e7-9f6f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [846a3ed8-68f5-11e7-896d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:35 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.file.core.windows.net/utshare5e371aac/dir1?restype=directory response: body: {string: "\uFEFFResourceNotFoundThe\ - \ specified resource does not exist.\nRequestId:eba673ef-001a-0070-0408-fc2710000000\n\ - Time:2017-07-13T18:46:17.0797618Z"} + \ specified resource does not exist.\nRequestId:4f821614-001a-006f-1102-fdfc00000000\n\ + Time:2017-07-15T00:35:37.7597928Z"} headers: Content-Length: ['223'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:36 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [eba673ef-001a-0070-0408-fc2710000000] + x-ms-request-id: [4f821614-001a-006f-1102-fdfc00000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified resource does not exist.} version: 1 diff --git a/tests/recordings/test_directory.test_delete_directory_with_non_existing_directory_fail_not_exist.yaml b/tests/recordings/test_directory.test_delete_directory_with_non_existing_directory_fail_not_exist.yaml index 7e403299..9883cfae 100644 --- a/tests/recordings/test_directory.test_delete_directory_with_non_existing_directory_fail_not_exist.yaml +++ b/tests/recordings/test_directory.test_delete_directory_with_non_existing_directory_fail_not_exist.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8e0a530c-67fb-11e7-93bb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8545b9d4-68f5-11e7-b264-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:37 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.file.core.windows.net/utshare1eeb20e3/dir1?restype=directory response: body: {string: "\uFEFFResourceNotFoundThe\ - \ specified resource does not exist.\nRequestId:e3c89b3a-001a-00cd-6808-fc319c000000\n\ - Time:2017-07-13T18:46:17.5259379Z"} + \ specified resource does not exist.\nRequestId:8748f649-001a-0046-6d02-fd8a42000000\n\ + Time:2017-07-15T00:35:37.9495663Z"} headers: Content-Length: ['223'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:37 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [e3c89b3a-001a-00cd-6808-fc319c000000] + x-ms-request-id: [8748f649-001a-0046-6d02-fd8a42000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified resource does not exist.} version: 1 diff --git a/tests/recordings/test_directory.test_directory_exists.yaml b/tests/recordings/test_directory.test_directory_exists.yaml index fd5f6b6f..e49dd878 100644 --- a/tests/recordings/test_directory.test_directory_exists.yaml +++ b/tests/recordings/test_directory.test_directory_exists.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8e48eb98-67fb-11e7-a20b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [85bab37e-68f5-11e7-a0c7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utshare14f20f16/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:18 GMT'] - ETag: ['"0x8D4CA1F725CFEDE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:38 GMT'] + ETag: ['"0x8D4CB196A67C678"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:38 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e62eace8-001a-0041-3308-fc7cc7000000] + x-ms-request-id: [0068bf29-001a-0032-7102-fd0c04000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -26,21 +26,21 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8e60bc8a-67fb-11e7-b9ca-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [85d56234-68f5-11e7-a1f6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:37 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utshare14f20f16/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:18 GMT'] - ETag: ['"0x8D4CA1F725CFEDE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:38 GMT'] + ETag: ['"0x8D4CB196A67C678"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:38 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e62eacea-001a-0041-3408-fc7cc7000000] + x-ms-request-id: [0068bf2b-001a-0032-7202-fd0c04000000] x-ms-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_directory.test_directory_not_exists.yaml b/tests/recordings/test_directory.test_directory_not_exists.yaml index e050a697..2ed2129e 100644 --- a/tests/recordings/test_directory.test_directory_not_exists.yaml +++ b/tests/recordings/test_directory.test_directory_not_exists.yaml @@ -3,22 +3,22 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8e8fe1c2-67fb-11e7-808a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8603ff48-68f5-11e7-bc9a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:38 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utshare553610c6/missing?restype=directory response: body: {string: "\uFEFFResourceNotFoundThe\ - \ specified resource does not exist.\nRequestId:3bc4bc2e-001a-0042-7b08-fc7fc0000000\n\ - Time:2017-07-13T18:46:18.6520911Z"} + \ specified resource does not exist.\nRequestId:c53977b1-001a-000a-5c02-fd4d5d000000\n\ + Time:2017-07-15T00:35:39.4770730Z"} headers: Content-Length: ['223'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:39 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [3bc4bc2e-001a-0042-7b08-fc7fc0000000] + x-ms-request-id: [c53977b1-001a-000a-5c02-fd4d5d000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified resource does not exist.} version: 1 diff --git a/tests/recordings/test_directory.test_get_directory_properties.yaml b/tests/recordings/test_directory.test_get_directory_properties.yaml index 551fcedd..a8d0a462 100644 --- a/tests/recordings/test_directory.test_get_directory_properties.yaml +++ b/tests/recordings/test_directory.test_get_directory_properties.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8ed200ca-67fb-11e7-b7e4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8640633e-68f5-11e7-bffa-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utshare9b0c1262/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:17 GMT'] - ETag: ['"0x8D4CA1F72E4491B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:39 GMT'] + ETag: ['"0x8D4CB196AE85872"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:39 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [52897303-001a-010a-0208-fc0b08000000] + x-ms-request-id: [991b4c02-001a-0009-1b02-fd4e5a000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -26,21 +26,21 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8ee7e798-67fb-11e7-82a3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8655ea10-68f5-11e7-87fa-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:38 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utshare9b0c1262/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:17 GMT'] - ETag: ['"0x8D4CA1F72E4491B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:39 GMT'] + ETag: ['"0x8D4CB196AE85872"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:39 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [52897305-001a-010a-0308-fc0b08000000] + x-ms-request-id: [991b4c04-001a-0009-1c02-fd4e5a000000] x-ms-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_directory.test_get_directory_properties_server_encryption.yaml b/tests/recordings/test_directory.test_get_directory_properties_server_encryption.yaml index 29fbb84d..bf7e1c99 100644 --- a/tests/recordings/test_directory.test_get_directory_properties_server_encryption.yaml +++ b/tests/recordings/test_directory.test_get_directory_properties_server_encryption.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8f1a20f8-67fb-11e7-8af6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8683b490-68f5-11e7-ad35-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:39 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utshare2dc21a02/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:18 GMT'] - ETag: ['"0x8D4CA1F732AD4DF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:39 GMT'] + ETag: ['"0x8D4CB196B2A2851"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:39 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [2e33bda0-001a-00f6-2808-fc73c2000000] + x-ms-request-id: [85ceeb05-001a-00db-4302-fdf002000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -26,21 +26,21 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8f2e283a-67fb-11e7-bac9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [869789ac-68f5-11e7-bd53-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:39 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utshare2dc21a02/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:18 GMT'] - ETag: ['"0x8D4CA1F732AD4DF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:39 GMT'] + ETag: ['"0x8D4CB196B2A2851"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:39 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [2e33bda2-001a-00f6-2908-fc73c2000000] + x-ms-request-id: [85ceeb07-001a-00db-4402-fdf002000000] x-ms-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_directory.test_get_directory_properties_with_non_existing_directory.yaml b/tests/recordings/test_directory.test_get_directory_properties_with_non_existing_directory.yaml index 36211b7a..bb7f526f 100644 --- a/tests/recordings/test_directory.test_get_directory_properties_with_non_existing_directory.yaml +++ b/tests/recordings/test_directory.test_get_directory_properties_with_non_existing_directory.yaml @@ -3,22 +3,22 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8f5c3bdc-67fb-11e7-88da-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [86c83124-68f5-11e7-9ed8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:39 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utshare47651e25/dir1?restype=directory response: body: {string: "\uFEFFResourceNotFoundThe\ - \ specified resource does not exist.\nRequestId:87319bd5-001a-002e-1008-fcd413000000\n\ - Time:2017-07-13T18:46:19.6166272Z"} + \ specified resource does not exist.\nRequestId:68151360-001a-00a6-0702-fd6cca000000\n\ + Time:2017-07-15T00:35:40.6185464Z"} headers: Content-Length: ['223'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:40 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [87319bd5-001a-002e-1008-fcd413000000] + x-ms-request-id: [68151360-001a-00a6-0702-fd6cca000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified resource does not exist.} version: 1 diff --git a/tests/recordings/test_directory.test_get_set_directory_metadata.yaml b/tests/recordings/test_directory.test_get_set_directory_metadata.yaml index 66689ee9..3ab117dc 100644 --- a/tests/recordings/test_directory.test_get_set_directory_metadata.yaml +++ b/tests/recordings/test_directory.test_get_set_directory_metadata.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8f9c5b9a-67fb-11e7-b087-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [87065cec-68f5-11e7-8a0e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:39 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utsharebfa81301/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:19 GMT'] - ETag: ['"0x8D4CA1F73B665BF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:39 GMT'] + ETag: ['"0x8D4CB196BAD2BC5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:40 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f2537fd3-001a-00e2-2608-fcb0a6000000] + x-ms-request-id: [d5cd3590-001a-011f-1a02-fdc991000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -27,9 +27,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8fb9c374-67fb-11e7-bbc6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [871ad4b0-68f5-11e7-bc0f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:40 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['43'] x-ms-version: ['2017-04-17'] @@ -38,12 +38,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:19 GMT'] - ETag: ['"0x8D4CA1F73C079B0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:39 GMT'] + ETag: ['"0x8D4CB196BB56A9C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:40 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f2537fd5-001a-00e2-2708-fcb0a6000000] + x-ms-request-id: [d5cd3591-001a-011f-1b02-fdc991000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -51,23 +51,23 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8fc5f888-67fb-11e7-a96e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8724536e-68f5-11e7-b7f2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:40 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utsharebfa81301/dir1?restype=directory&comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:19 GMT'] - ETag: ['"0x8D4CA1F73C079B0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:40 GMT'] + ETag: ['"0x8D4CB196BB56A9C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:40 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-meta-hello: [world] x-ms-meta-number: ['43'] - x-ms-request-id: [f2537fd6-001a-00e2-2808-fcb0a6000000] + x-ms-request-id: [d5cd3592-001a-011f-1c02-fdc991000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_file.test_abort_copy_file.yaml b/tests/recordings/test_file.test_abort_copy_file.yaml index a2a13d4d..9bbb66a4 100644 --- a/tests/recordings/test_file.test_abort_copy_file.yaml +++ b/tests/recordings/test_file.test_abort_copy_file.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8ffa3834-67fb-11e7-9f17-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [875a1882-68f5-11e7-b1cc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://remotestoragename.file.core.windows.net/remotesharebd580c3e?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:20 GMT'] - ETag: ['"0x8D4CA1F746C7506"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:40 GMT'] + ETag: ['"0x8D4CB196C33B129"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:41 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c63b8a1b-001a-0026-2908-fc64be000000] + x-ms-request-id: [67fef1c7-001a-007e-0602-fd60c5000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9019efa6-67fb-11e7-9c98-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [87833cb4-68f5-11e7-bfbf-b8e8564491f6] x-ms-content-length: ['8388608'] - x-ms-date: ['Thu, 13 Jul 2017 18:46:21 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:35:40 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -37,12 +37,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:20 GMT'] - ETag: ['"0x8D4CA1F740B2A27"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:41 GMT'] + ETag: ['"0x8D4CB196CAB4F72"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:42 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c63b8a1e-001a-0026-2a08-fc64be000000] + x-ms-request-id: [67fef1ca-001a-007e-0702-fd60c5000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4194304'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9025ccf4-67fb-11e7-bdb2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [878fa8c6-68f5-11e7-89f2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:40 GMT'] x-ms-range: [bytes=0-4194303] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -63,12 +63,12 @@ interactions: body: {string: ''} headers: Content-MD5: [O+kCfdGnulSkbl/qLCRhQA==] - Date: ['Thu, 13 Jul 2017 18:46:21 GMT'] - ETag: ['"0x8D4CA1F745E2CDF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:41 GMT'] + ETag: ['"0x8D4CB196D086589"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:42 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c63b8a1f-001a-0026-2b08-fc64be000000] + x-ms-request-id: [67fef1cb-001a-007e-0802-fd60c5000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -77,9 +77,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4194304'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [902650b6-67fb-11e7-9c45-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [879038cc-68f5-11e7-b5ec-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:40 GMT'] x-ms-range: [bytes=4194304-8388607] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -89,12 +89,12 @@ interactions: body: {string: ''} headers: Content-MD5: [O+kCfdGnulSkbl/qLCRhQA==] - Date: ['Thu, 13 Jul 2017 18:46:21 GMT'] - ETag: ['"0x8D4CA1F7478E10C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:41 GMT'] + ETag: ['"0x8D4CB196D27D50A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:43 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [eb47cf00-001a-0010-0108-fcc9ec000000] + x-ms-request-id: [f4d0d647-001a-001d-6902-fd26e0000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -103,24 +103,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [909c4898-67fb-11e7-b7ee-b8e8564491f6] - x-ms-copy-source: ['https://xclientdev.file.core.windows.net/remotesharebd580c3e/filebd580c3e?se=2017-07-13T19%3A46%3A21Z&sp=r&sv=2017-04-17&sr=f&sig=rROq5GYc/jgMLLbPW9Mzl7lN%2BsouxTQAieFpban%2Bi4U%3D'] - x-ms-date: ['Thu, 13 Jul 2017 18:46:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [881ba182-68f5-11e7-866b-b8e8564491f6] + x-ms-copy-source: ['https://xclientdev.file.core.windows.net/remotesharebd580c3e/filebd580c3e?se=2017-07-15T01%3A35%3A41Z&sp=r&sv=2017-04-17&sr=f&sig=ucp0n9l0WLP1vx%2BU2Sp5tuuKcbsaTdX/%2Bp%2BK3uisHKI%3D'] + x-ms-date: ['Sat, 15 Jul 2017 00:35:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utsharebd580c3e/targetfile response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:22 GMT'] - ETag: ['"0x8D4CA1F74BCE25F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:42 GMT'] + ETag: ['"0x8D4CB196CD00EA4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:42 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-copy-id: [c8224875-bc6f-436f-aa2f-94d275df3c33] + x-ms-copy-id: [128c7bba-3169-4156-a4c4-07b432fefd4b] x-ms-copy-status: [pending] - x-ms-request-id: [82e2690e-001a-0110-7208-fc2467000000] + x-ms-request-id: [b594d12d-001a-0044-0d02-fd88b8000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -128,44 +128,44 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [90df36ba-67fb-11e7-9b36-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [883e0fa6-68f5-11e7-8af0-b8e8564491f6] x-ms-copy-action: [abort] - x-ms-date: ['Thu, 13 Jul 2017 18:46:22 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:35:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.file.core.windows.net/utsharebd580c3e/targetfile?comp=copy©id=c8224875-bc6f-436f-aa2f-94d275df3c33 + uri: https://storagename.file.core.windows.net/utsharebd580c3e/targetfile?comp=copy©id=128c7bba-3169-4156-a4c4-07b432fefd4b response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:46:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:42 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [82e26912-001a-0110-7308-fc2467000000] + x-ms-request-id: [b594d132-001a-0044-0e02-fd88b8000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [90ecd97a-67fb-11e7-9217-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [884b5ecc-68f5-11e7-a33d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:42 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utsharebd580c3e/targetfile response: body: {string: "\uFEFFInvalidRangeThe\ - \ range specified is invalid for the current size of the resource.\nRequestId:82e26913-001a-0110-7408-fc2467000000\n\ - Time:2017-07-13T18:46:22.6956169Z"} + \ range specified is invalid for the current size of the resource.\nRequestId:b594d133-001a-0044-0f02-fd88b8000000\n\ + Time:2017-07-15T00:35:42.7159543Z"} headers: Content-Length: ['249'] Content-Range: [bytes */0] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:42 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [82e26913-001a-0110-7408-fc2467000000] + x-ms-request-id: [b594d133-001a-0044-0f02-fd88b8000000] x-ms-version: ['2017-04-17'] status: {code: 416, message: The range specified is invalid for the current size of the resource.} @@ -173,9 +173,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [90f2371c-67fb-11e7-adc9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8850c0a6-68f5-11e7-8419-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:42 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utsharebd580c3e/targetfile @@ -185,16 +185,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['0'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:46:22 GMT'] - ETag: ['"0x8D4CA1F74E86730"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:42 GMT'] + ETag: ['"0x8D4CB196CDD096E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:42 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-copy-completion-time: ['Thu, 13 Jul 2017 18:46:22 GMT'] - x-ms-copy-id: [c8224875-bc6f-436f-aa2f-94d275df3c33] + x-ms-copy-completion-time: ['Sat, 15 Jul 2017 00:35:42 GMT'] + x-ms-copy-id: [128c7bba-3169-4156-a4c4-07b432fefd4b] x-ms-copy-progress: [0/8388608] - x-ms-copy-source: ['https://remotestoragename.file.core.windows.net/remotesharebd580c3e/filebd580c3e?se=2017-07-13T19%3A46%3A21Z&sp=r&sv=2017-04-17&sr=f&sig=rROq5GYc/jgMLLbPW9Mzl7lN%2BsouxTQAieFpban%2Bi4U%3D'] + x-ms-copy-source: ['https://remotestoragename.file.core.windows.net/remotesharebd580c3e/filebd580c3e?se=2017-07-15T01%3A35%3A41Z&sp=r&sv=2017-04-17&sr=f&sig=ucp0n9l0WLP1vx%2BU2Sp5tuuKcbsaTdX/%2Bp%2BK3uisHKI%3D'] x-ms-copy-status: [aborted] - x-ms-request-id: [82e26914-001a-0110-7508-fc2467000000] + x-ms-request-id: [b594d134-001a-0044-1002-fd88b8000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_abort_copy_file_with_synchronous_copy_fails.yaml b/tests/recordings/test_file.test_abort_copy_file_with_synchronous_copy_fails.yaml index 4a01a6f5..00065e9b 100644 --- a/tests/recordings/test_file.test_abort_copy_file_with_synchronous_copy_fails.yaml +++ b/tests/recordings/test_file.test_abort_copy_file_with_synchronous_copy_fails.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9a0e181e-67fb-11e7-ab64-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [9098b066-68f5-11e7-a8d9-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:46:37 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:35:56 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:36 GMT'] - ETag: ['"0x8D4CA1F7E275E4B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:56 GMT'] + ETag: ['"0x8D4CB19753F5598"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:56 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [47a1fe05-001a-008b-0f08-fcef0a000000] + x-ms-request-id: [359cbb85-001a-0096-5e02-fd36e0000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9a2c00e2-67fb-11e7-ac34-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [90adf0ac-68f5-11e7-aaad-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:56 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [wGyAK4k4U9lFo5hc0hSOhQ==] - Date: ['Thu, 13 Jul 2017 18:46:36 GMT'] - ETag: ['"0x8D4CA1F7E2F7614"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:56 GMT'] + ETag: ['"0x8D4CB1975459847"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:56 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [47a1fe08-001a-008b-1008-fcef0a000000] + x-ms-request-id: [359cbb87-001a-0096-5f02-fd36e0000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -73,24 +73,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9a32a9ba-67fb-11e7-945a-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [90b35ef4-68f5-11e7-9389-b8e8564491f6] x-ms-copy-source: ['https://xclientdev3.file.core.windows.net/utsharebfcc180b/filebfcc180b'] - x-ms-date: ['Thu, 13 Jul 2017 18:46:37 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:35:56 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utsharebfcc180b/targetfile response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:37 GMT'] - ETag: ['"0x8D4CA1F7E6EFBCB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:57 GMT'] + ETag: ['"0x8D4CB1975803AED"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-copy-id: [5ffff806-093f-49b1-b9a4-858a65cb52b1] + x-ms-copy-id: [4db5ad04-0473-488b-ae0e-156b3faa0f3e] x-ms-copy-status: [success] - x-ms-request-id: [47a1fe09-001a-008b-1108-fcef0a000000] + x-ms-request-id: [359cbb88-001a-0096-6002-fd36e0000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -98,23 +98,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9a73b786-67fb-11e7-89ef-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [90f15286-68f5-11e7-9c19-b8e8564491f6] x-ms-copy-action: [abort] - x-ms-date: ['Thu, 13 Jul 2017 18:46:38 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:35:56 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.file.core.windows.net/utsharebfcc180b/targetfile?comp=copy©id=5ffff806-093f-49b1-b9a4-858a65cb52b1 + uri: https://storagename.file.core.windows.net/utsharebfcc180b/targetfile?comp=copy©id=4db5ad04-0473-488b-ae0e-156b3faa0f3e response: body: {string: "\uFEFFNoPendingCopyOperationThere\ - \ is currently no pending copy operation.\nRequestId:47a1fe0c-001a-008b-1208-fcef0a000000\n\ - Time:2017-07-13T18:46:37.4209734Z"} + \ is currently no pending copy operation.\nRequestId:359cbb8c-001a-0096-6202-fd36e0000000\n\ + Time:2017-07-15T00:35:59.1184469Z"} headers: Content-Length: ['236'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:58 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [47a1fe0c-001a-008b-1208-fcef0a000000] + x-ms-request-id: [359cbb8c-001a-0096-6202-fd36e0000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: There is currently no pending copy operation.} version: 1 diff --git a/tests/recordings/test_file.test_clear_range.yaml b/tests/recordings/test_file.test_clear_range.yaml index d8d5ea2e..32423221 100644 --- a/tests/recordings/test_file.test_clear_range.yaml +++ b/tests/recordings/test_file.test_clear_range.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9ae53ccc-67fb-11e7-b5bb-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [9205f922-68f5-11e7-bf62-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:46:39 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:35:58 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:38 GMT'] - ETag: ['"0x8D4CA1F7EFA174C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:58 GMT'] + ETag: ['"0x8D4CB1976B34D65"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:59 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3ee6d295-001a-0071-6c08-fc26ed000000] + x-ms-request-id: [7c950236-001a-003b-1a02-fd168a000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9afe23a6-67fb-11e7-aca3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [922909da-68f5-11e7-b006-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:58 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [x4VR/a3pEgvc+0ibuMiZHQ==] - Date: ['Thu, 13 Jul 2017 18:46:38 GMT'] - ETag: ['"0x8D4CA1F7F005A07"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:59 GMT'] + ETag: ['"0x8D4CB1976C2B987"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:59 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3ee6d297-001a-0071-6d08-fc26ed000000] + x-ms-request-id: [7c950238-001a-003b-1b02-fd168a000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -73,9 +73,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9b037434-67fb-11e7-9112-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [9234449e-68f5-11e7-b938-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:58 GMT'] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] x-ms-write: [clear] @@ -84,21 +84,21 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:38 GMT'] - ETag: ['"0x8D4CA1F7F058B17"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:59 GMT'] + ETag: ['"0x8D4CB1976CC0A03"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:59 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3ee6d298-001a-0071-6e08-fc26ed000000] + x-ms-request-id: [7c950239-001a-003b-1c02-fd168a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9b0879be-67fb-11e7-94d2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [923bba8a-68f5-11e7-8c31-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:35:58 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -129,11 +129,11 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:46:38 GMT'] - ETag: ['"0x8D4CA1F7F058B17"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:35:59 GMT'] + ETag: ['"0x8D4CB1976CC0A03"'] + Last-Modified: ['Sat, 15 Jul 2017 00:35:59 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [3ee6d299-001a-0071-6f08-fc26ed000000] + x-ms-request-id: [7c95023a-001a-003b-1d02-fd168a000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_copy_file_async_private_file.yaml b/tests/recordings/test_file.test_copy_file_async_private_file.yaml index e0f7d8d5..df81f973 100644 --- a/tests/recordings/test_file.test_copy_file_async_private_file.yaml +++ b/tests/recordings/test_file.test_copy_file_async_private_file.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9b3d88f4-67fb-11e7-b44b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [78fab05a-68f8-11e7-9fc7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:56:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://remotestoragename.file.core.windows.net/remoteshare82ca119d?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:39 GMT'] - ETag: ['"0x8D4CA1F7F813498"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:56:45 GMT'] + ETag: ['"0x8D4CB1C5D8DDCA2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:56:45 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ccec4bdb-001a-0086-6e08-fcabd8000000] + x-ms-request-id: [47c6f37e-001a-0049-5505-fdcc6a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9b516f18-67fb-11e7-9486-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [790f9358-68f8-11e7-be47-b8e8564491f6] x-ms-content-length: ['8388608'] - x-ms-date: ['Thu, 13 Jul 2017 18:46:39 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:56:45 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -37,12 +37,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:39 GMT'] - ETag: ['"0x8D4CA1F7F3F4C05"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:56:45 GMT'] + ETag: ['"0x8D4CB1C5DA4D1F1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:56:45 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ccec4bde-001a-0086-6f08-fcabd8000000] + x-ms-request-id: [47c6f381-001a-0049-5605-fdcc6a000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,10 +51,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4194304'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9b5a2e46-67fb-11e7-a004-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:39 GMT'] - x-ms-range: [bytes=4194304-8388607] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [79187a74-68f8-11e7-a4cd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:56:45 GMT'] + x-ms-range: [bytes=0-4194303] x-ms-version: ['2017-04-17'] x-ms-write: [update] method: PUT @@ -63,12 +63,12 @@ interactions: body: {string: ''} headers: Content-MD5: [O+kCfdGnulSkbl/qLCRhQA==] - Date: ['Thu, 13 Jul 2017 18:46:39 GMT'] - ETag: ['"0x8D4CA1F7F9C39D6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:56:46 GMT'] + ETag: ['"0x8D4CB1C5E091427"'] + Last-Modified: ['Sat, 15 Jul 2017 00:56:46 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ccec4be0-001a-0086-7008-fcabd8000000] + x-ms-request-id: [47c6f382-001a-0049-5705-fdcc6a000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -77,10 +77,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4194304'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9b599b34-67fb-11e7-b46b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:39 GMT'] - x-ms-range: [bytes=0-4194303] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7919222e-68f8-11e7-ae68-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:56:45 GMT'] + x-ms-range: [bytes=4194304-8388607] x-ms-version: ['2017-04-17'] x-ms-write: [update] method: PUT @@ -89,12 +89,12 @@ interactions: body: {string: ''} headers: Content-MD5: [O+kCfdGnulSkbl/qLCRhQA==] - Date: ['Thu, 13 Jul 2017 18:46:39 GMT'] - ETag: ['"0x8D4CA1F7FAA43CB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:56:45 GMT'] + ETag: ['"0x8D4CB1C5E259D6B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:56:46 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7121d908-001a-003c-7d08-fc4bd1000000] + x-ms-request-id: [1ea25616-001a-004a-1605-fdcf6d000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -103,23 +103,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9bce0fba-67fb-11e7-9f34-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [79a4cbe4-68f8-11e7-a42a-b8e8564491f6] x-ms-copy-source: ['https://xclientdev.file.core.windows.net/remoteshare82ca119d/file82ca119d'] - x-ms-date: ['Thu, 13 Jul 2017 18:46:40 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:56:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utshare82ca119d/targetfile response: body: {string: "\uFEFFCannotVerifyCopySourceThe\ - \ specified resource does not exist.\nRequestId:5ef2088a-001a-009f-5308-fc2c6e000000\n\ - Time:2017-07-13T18:46:40.9187589Z"} + \ specified resource does not exist.\nRequestId:dbb6ec13-001a-0100-6505-fd1281000000\n\ + Time:2017-07-15T00:56:46.2085962Z"} headers: Content-Length: ['229'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:46:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:56:45 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [5ef2088a-001a-009f-5308-fc2c6e000000] + x-ms-request-id: [dbb6ec13-001a-0100-6505-fd1281000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified resource does not exist.} version: 1 diff --git a/tests/recordings/test_file.test_copy_file_async_private_file_with_sas.yaml b/tests/recordings/test_file.test_copy_file_async_private_file_with_sas.yaml index 74cfde59..0a9a0663 100644 --- a/tests/recordings/test_file.test_copy_file_async_private_file_with_sas.yaml +++ b/tests/recordings/test_file.test_copy_file_async_private_file_with_sas.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [a4ec7002-67fb-11e7-b52c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [85dd99b8-68f8-11e7-ba4a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:57:06 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://remotestoragename.file.core.windows.net/remoteshare3416155e?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:55 GMT'] - ETag: ['"0x8D4CA1F895D5AFB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:57:05 GMT'] + ETag: ['"0x8D4CB1C69BD0921"'] + Last-Modified: ['Sat, 15 Jul 2017 00:57:05 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [77dfb44a-001a-0033-3e08-fca627000000] + x-ms-request-id: [aa0abc71-001a-0076-3005-fd7bb6000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [a500ef6e-67fb-11e7-9bee-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [85f41166-68f8-11e7-8f50-b8e8564491f6] x-ms-content-length: ['8388608'] - x-ms-date: ['Thu, 13 Jul 2017 18:46:56 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:57:06 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -37,12 +37,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:55 GMT'] - ETag: ['"0x8D4CA1F88EEC69E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:57:05 GMT'] + ETag: ['"0x8D4CB1C6A8A07D0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:57:07 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [77dfb44d-001a-0033-3f08-fca627000000] + x-ms-request-id: [aa0abc74-001a-0076-3105-fd7bb6000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4194304'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [a5091842-67fb-11e7-8d14-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [85fd834a-68f8-11e7-a963-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:57:06 GMT'] x-ms-range: [bytes=0-4194303] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -63,12 +63,12 @@ interactions: body: {string: ''} headers: Content-MD5: [O+kCfdGnulSkbl/qLCRhQA==] - Date: ['Thu, 13 Jul 2017 18:46:56 GMT'] - ETag: ['"0x8D4CA1F89476E9D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:57:06 GMT'] + ETag: ['"0x8D4CB1C6AEB1596"'] + Last-Modified: ['Sat, 15 Jul 2017 00:57:07 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [77dfb44e-001a-0033-4008-fca627000000] + x-ms-request-id: [aa0abc76-001a-0076-3205-fd7bb6000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -77,9 +77,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['4194304'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [a509db9c-67fb-11e7-adef-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [85fe384c-68f8-11e7-b947-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:57:06 GMT'] x-ms-range: [bytes=4194304-8388607] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -89,12 +89,12 @@ interactions: body: {string: ''} headers: Content-MD5: [O+kCfdGnulSkbl/qLCRhQA==] - Date: ['Thu, 13 Jul 2017 18:46:56 GMT'] - ETag: ['"0x8D4CA1F89579B74"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:57:06 GMT'] + ETag: ['"0x8D4CB1C6B022096"'] + Last-Modified: ['Sat, 15 Jul 2017 00:57:08 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bd541957-001a-0063-0408-fcb92f000000] + x-ms-request-id: [1bf02dc5-001a-0087-0805-fdaa25000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -103,33 +103,33 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [a5809c98-67fb-11e7-8e6e-b8e8564491f6] - x-ms-copy-source: ['https://xclientdev.file.core.windows.net/remoteshare3416155e/file3416155e?se=2017-07-13T19%3A46%3A56Z&sp=r&sv=2017-04-17&sr=f&sig=Va4TwVgS3BxmgYkY3bjw6cgIk8JoZPQGyGPJuz6tFT0%3D'] - x-ms-date: ['Thu, 13 Jul 2017 18:46:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8681c47a-68f8-11e7-b058-b8e8564491f6] + x-ms-copy-source: ['https://xclientdev.file.core.windows.net/remoteshare3416155e/file3416155e?se=2017-07-15T01%3A57%3A07Z&sp=r&sv=2017-04-17&sr=f&sig=QY7gbEAglZvis/043zwzDdh0uolZlak/UfORrvGVsD4%3D'] + x-ms-date: ['Sat, 15 Jul 2017 00:57:07 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utshare3416155e/targetfile response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:46:56 GMT'] - ETag: ['"0x8D4CA1F89A11DFF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:57:07 GMT'] + ETag: ['"0x8D4CB1C6ACB2910"'] + Last-Modified: ['Sat, 15 Jul 2017 00:57:07 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-copy-id: [df5ba5de-7573-450a-8a6b-042629e23eaa] + x-ms-copy-id: [ef410e41-2c14-400b-a817-5f436caaedb6] x-ms-copy-status: [pending] - x-ms-request-id: [13e375b2-001a-0043-1c08-fc7e3d000000] + x-ms-request-id: [f4c2a77c-001a-00df-0905-fd0580000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [a5a5a9dc-67fb-11e7-83b1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:46:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [86dc4ce2-68f8-11e7-985d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:57:08 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.file.core.windows.net/utshare3416155e/targetfile @@ -138,15 +138,15 @@ interactions: headers: Content-Length: ['8388608'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:46:56 GMT'] - ETag: ['"0x8D4CA1F89A11DFF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:57:07 GMT'] + ETag: ['"0x8D4CB1C6ACB2910"'] + Last-Modified: ['Sat, 15 Jul 2017 00:57:07 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-copy-id: [df5ba5de-7573-450a-8a6b-042629e23eaa] + x-ms-copy-id: [ef410e41-2c14-400b-a817-5f436caaedb6] x-ms-copy-progress: [0/8388608] - x-ms-copy-source: ['https://remotestoragename.file.core.windows.net/remoteshare3416155e/file3416155e?se=2017-07-13T19%3A46%3A56Z&sp=r&sv=2017-04-17&sr=f&sig=Va4TwVgS3BxmgYkY3bjw6cgIk8JoZPQGyGPJuz6tFT0%3D'] + x-ms-copy-source: ['https://remotestoragename.file.core.windows.net/remoteshare3416155e/file3416155e?se=2017-07-15T01%3A57%3A07Z&sp=r&sv=2017-04-17&sr=f&sig=QY7gbEAglZvis/043zwzDdh0uolZlak/UfORrvGVsD4%3D'] x-ms-copy-status: [pending] - x-ms-request-id: [13e375b6-001a-0043-1d08-fc7e3d000000] + x-ms-request-id: [f4c2a781-001a-00df-0a05-fd0580000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] @@ -155,9 +155,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [a93f3cca-67fb-11e7-92a9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:47:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8a75a466-68f8-11e7-bb2d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:57:14 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.file.core.windows.net/utshare3416155e/targetfile @@ -166,128 +166,16 @@ interactions: headers: Content-Length: ['8388608'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:47:02 GMT'] - ETag: ['"0x8D4CA1F89A11DFF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:57:13 GMT'] + ETag: ['"0x8D4CB1C6C16D110"'] + Last-Modified: ['Sat, 15 Jul 2017 00:57:09 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-copy-id: [df5ba5de-7573-450a-8a6b-042629e23eaa] - x-ms-copy-progress: [0/8388608] - x-ms-copy-source: ['https://remotestoragename.file.core.windows.net/remoteshare3416155e/file3416155e?se=2017-07-13T19%3A46%3A56Z&sp=r&sv=2017-04-17&sr=f&sig=Va4TwVgS3BxmgYkY3bjw6cgIk8JoZPQGyGPJuz6tFT0%3D'] - x-ms-copy-status: [pending] - x-ms-request-id: [13e375bd-001a-0043-1f08-fc7e3d000000] - x-ms-server-encrypted: ['false'] - x-ms-type: [File] - x-ms-version: ['2017-04-17'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [acd8ef66-67fb-11e7-9540-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:47:09 GMT'] - x-ms-version: ['2017-04-17'] - method: HEAD - uri: https://storagename.file.core.windows.net/utshare3416155e/targetfile - response: - body: {string: ''} - headers: - Content-Length: ['8388608'] - Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:47:08 GMT'] - ETag: ['"0x8D4CA1F89A11DFF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:56 GMT'] - Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-copy-id: [df5ba5de-7573-450a-8a6b-042629e23eaa] - x-ms-copy-progress: [0/8388608] - x-ms-copy-source: ['https://remotestoragename.file.core.windows.net/remoteshare3416155e/file3416155e?se=2017-07-13T19%3A46%3A56Z&sp=r&sv=2017-04-17&sr=f&sig=Va4TwVgS3BxmgYkY3bjw6cgIk8JoZPQGyGPJuz6tFT0%3D'] - x-ms-copy-status: [pending] - x-ms-request-id: [13e375c3-001a-0043-2008-fc7e3d000000] - x-ms-server-encrypted: ['false'] - x-ms-type: [File] - x-ms-version: ['2017-04-17'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [b0726224-67fb-11e7-a9b3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:47:15 GMT'] - x-ms-version: ['2017-04-17'] - method: HEAD - uri: https://storagename.file.core.windows.net/utshare3416155e/targetfile - response: - body: {string: ''} - headers: - Content-Length: ['8388608'] - Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:47:14 GMT'] - ETag: ['"0x8D4CA1F89A11DFF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:46:56 GMT'] - Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-copy-id: [df5ba5de-7573-450a-8a6b-042629e23eaa] - x-ms-copy-progress: [0/8388608] - x-ms-copy-source: ['https://remotestoragename.file.core.windows.net/remoteshare3416155e/file3416155e?se=2017-07-13T19%3A46%3A56Z&sp=r&sv=2017-04-17&sr=f&sig=Va4TwVgS3BxmgYkY3bjw6cgIk8JoZPQGyGPJuz6tFT0%3D'] - x-ms-copy-status: [pending] - x-ms-request-id: [13e375cb-001a-0043-2208-fc7e3d000000] - x-ms-server-encrypted: ['false'] - x-ms-type: [File] - x-ms-version: ['2017-04-17'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [b40b1192-67fb-11e7-bd81-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:47:21 GMT'] - x-ms-version: ['2017-04-17'] - method: HEAD - uri: https://storagename.file.core.windows.net/utshare3416155e/targetfile - response: - body: {string: ''} - headers: - Content-Length: ['8388608'] - Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:47:20 GMT'] - ETag: ['"0x8D4CA1F97EE58E8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:47:20 GMT'] - Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-copy-id: [df5ba5de-7573-450a-8a6b-042629e23eaa] - x-ms-copy-progress: [0/8388608] - x-ms-copy-source: ['https://remotestoragename.file.core.windows.net/remoteshare3416155e/file3416155e?se=2017-07-13T19%3A46%3A56Z&sp=r&sv=2017-04-17&sr=f&sig=Va4TwVgS3BxmgYkY3bjw6cgIk8JoZPQGyGPJuz6tFT0%3D'] - x-ms-copy-status: [pending] - x-ms-request-id: [13e375d0-001a-0043-2408-fc7e3d000000] - x-ms-server-encrypted: ['false'] - x-ms-type: [File] - x-ms-version: ['2017-04-17'] - status: {code: 200, message: OK} -- request: - body: null - headers: - Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [b7a43a4a-67fb-11e7-a49b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:47:27 GMT'] - x-ms-version: ['2017-04-17'] - method: HEAD - uri: https://storagename.file.core.windows.net/utshare3416155e/targetfile - response: - body: {string: ''} - headers: - Content-Length: ['8388608'] - Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:47:26 GMT'] - ETag: ['"0x8D4CA1F983F46FC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:47:21 GMT'] - Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-copy-completion-time: ['Thu, 13 Jul 2017 18:47:21 GMT'] - x-ms-copy-id: [df5ba5de-7573-450a-8a6b-042629e23eaa] + x-ms-copy-completion-time: ['Sat, 15 Jul 2017 00:57:09 GMT'] + x-ms-copy-id: [ef410e41-2c14-400b-a817-5f436caaedb6] x-ms-copy-progress: [8388608/8388608] - x-ms-copy-source: ['https://remotestoragename.file.core.windows.net/remoteshare3416155e/file3416155e?se=2017-07-13T19%3A46%3A56Z&sp=r&sv=2017-04-17&sr=f&sig=Va4TwVgS3BxmgYkY3bjw6cgIk8JoZPQGyGPJuz6tFT0%3D'] + x-ms-copy-source: ['https://remotestoragename.file.core.windows.net/remoteshare3416155e/file3416155e?se=2017-07-15T01%3A57%3A07Z&sp=r&sv=2017-04-17&sr=f&sig=QY7gbEAglZvis/043zwzDdh0uolZlak/UfORrvGVsD4%3D'] x-ms-copy-status: [success] - x-ms-request-id: [13e375da-001a-0043-2508-fc7e3d000000] + x-ms-request-id: [f4c2a787-001a-00df-0c05-fd0580000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] @@ -296,9 +184,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [b7a9a3c2-67fb-11e7-b751-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:47:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8a7b4236-68f8-11e7-83e1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:57:14 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -310,16 +198,16 @@ interactions: Content-Length: ['8388608'] Content-Range: [bytes 0-8388607/8388608] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:47:26 GMT'] - ETag: ['"0x8D4CA1F983F46FC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:47:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:57:13 GMT'] + ETag: ['"0x8D4CB1C6C16D110"'] + Last-Modified: ['Sat, 15 Jul 2017 00:57:09 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-copy-completion-time: ['Thu, 13 Jul 2017 18:47:21 GMT'] - x-ms-copy-id: [df5ba5de-7573-450a-8a6b-042629e23eaa] + x-ms-copy-completion-time: ['Sat, 15 Jul 2017 00:57:09 GMT'] + x-ms-copy-id: [ef410e41-2c14-400b-a817-5f436caaedb6] x-ms-copy-progress: [8388608/8388608] - x-ms-copy-source: ['https://remotestoragename.file.core.windows.net/remoteshare3416155e/file3416155e?se=2017-07-13T19%3A46%3A56Z&sp=r&sv=2017-04-17&sr=f&sig=Va4TwVgS3BxmgYkY3bjw6cgIk8JoZPQGyGPJuz6tFT0%3D'] + x-ms-copy-source: ['https://remotestoragename.file.core.windows.net/remoteshare3416155e/file3416155e?se=2017-07-15T01%3A57%3A07Z&sp=r&sv=2017-04-17&sr=f&sig=QY7gbEAglZvis/043zwzDdh0uolZlak/UfORrvGVsD4%3D'] x-ms-copy-status: [success] - x-ms-request-id: [13e375db-001a-0043-2608-fc7e3d000000] + x-ms-request-id: [f4c2a788-001a-00df-0d05-fd0580000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_copy_file_with_existing_file.yaml b/tests/recordings/test_file.test_copy_file_with_existing_file.yaml index a3337c75..4c094f46 100644 --- a/tests/recordings/test_file.test_copy_file_with_existing_file.yaml +++ b/tests/recordings/test_file.test_copy_file_with_existing_file.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ce01de3a-67fb-11e7-bcb9-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [08ac9b3a-68f6-11e7-8e4f-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:04 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:17 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:04 GMT'] - ETag: ['"0x8D4CA1FB235978B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:18 GMT'] + ETag: ['"0x8D4CB19ED5E0FB3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:18 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8d253d73-001a-0082-4a08-fcf584000000] + x-ms-request-id: [5d38db92-001a-00e1-7002-fdb3a1000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ce3caf94-67fb-11e7-b3e1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [08eafe0c-68f6-11e7-ab9b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:17 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [/BmXnIT2EQdG7TdK+YgMLQ==] - Date: ['Thu, 13 Jul 2017 18:48:05 GMT'] - ETag: ['"0x8D4CA1FB23EE812"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:18 GMT'] + ETag: ['"0x8D4CB19ED824015"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:18 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8d253d75-001a-0082-4b08-fcf584000000] + x-ms-request-id: [5d38db94-001a-00e1-7102-fdb3a1000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -73,33 +73,33 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ce424008-67fb-11e7-a712-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [08f039f8-68f6-11e7-b3c7-b8e8564491f6] x-ms-copy-source: ['https://xclientdev3.file.core.windows.net/utshare838911ab/file838911ab'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:05 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:17 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utshare838911ab/file1copy response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:05 GMT'] - ETag: ['"0x8D4CA1FB264C689"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:18 GMT'] + ETag: ['"0x8D4CB19ED9E3198"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:18 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-copy-id: [3e6344cb-91c6-4b00-8789-e178ca2d6a62] + x-ms-copy-id: [86ce1d0e-b915-4248-8637-2c8230f1ae11] x-ms-copy-status: [success] - x-ms-request-id: [8d253d76-001a-0082-4c08-fcf584000000] + x-ms-request-id: [5d38db95-001a-00e1-7202-fdb3a1000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ce687374-67fb-11e7-a8a8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [090d9e12-68f6-11e7-a8fd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:18 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -130,16 +130,16 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:05 GMT'] - ETag: ['"0x8D4CA1FB264C689"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:18 GMT'] + ETag: ['"0x8D4CB19ED9E3198"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:18 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-copy-completion-time: ['Thu, 13 Jul 2017 18:48:05 GMT'] - x-ms-copy-id: [3e6344cb-91c6-4b00-8789-e178ca2d6a62] + x-ms-copy-completion-time: ['Sat, 15 Jul 2017 00:39:19 GMT'] + x-ms-copy-id: [86ce1d0e-b915-4248-8637-2c8230f1ae11] x-ms-copy-progress: [1024/1024] x-ms-copy-source: ['https://storagename.file.core.windows.net/utshare838911ab/file838911ab'] x-ms-copy-status: [success] - x-ms-request-id: [8d253d78-001a-0082-4d08-fcf584000000] + x-ms-request-id: [5d38db97-001a-00e1-7302-fdb3a1000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_create_file.yaml b/tests/recordings/test_file.test_create_file.yaml index 3685c361..e28915f3 100644 --- a/tests/recordings/test_file.test_create_file.yaml +++ b/tests/recordings/test_file.test_create_file.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ce9c320c-67fb-11e7-a059-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [093f32e2-68f6-11e7-8393-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:05 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:18 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:05 GMT'] - ETag: ['"0x8D4CA1FB2AF23A6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:18 GMT'] + ETag: ['"0x8D4CB19EDE5A7CE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:19 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e35ed333-001a-009c-3908-fc2f69000000] + x-ms-request-id: [54fd12ff-001a-0050-5802-fd4bdc000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [ceb30c8c-67fb-11e7-a4cd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0955e9ba-68f6-11e7-9ae2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:18 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.file.core.windows.net/utshare8e670a80/file8e670a80 @@ -39,11 +39,11 @@ interactions: headers: Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:05 GMT'] - ETag: ['"0x8D4CA1FB2AF23A6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:18 GMT'] + ETag: ['"0x8D4CB19EDE5A7CE"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:19 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [e35ed335-001a-009c-3a08-fc2f69000000] + x-ms-request-id: [54fd1301-001a-0050-5902-fd4bdc000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_create_file_from_text.yaml b/tests/recordings/test_file.test_create_file_from_text.yaml index efd437a0..17b1cc8f 100644 --- a/tests/recordings/test_file.test_create_file_from_text.yaml +++ b/tests/recordings/test_file.test_create_file_from_text.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d0164c58-67fb-11e7-a6dd-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0aabdd62-68f6-11e7-bd09-b8e8564491f6] x-ms-content-length: ['27'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:08 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:20 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:07 GMT'] - ETag: ['"0x8D4CA1FB4432D53"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:20 GMT'] + ETag: ['"0x8D4CB19EF53D232"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:21 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5865ed6c-001a-0017-2c08-fc94b7000000] + x-ms-request-id: [713af045-001a-013d-4c02-fda7a7000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['27'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d047181a-67fb-11e7-b3d6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0ac30058-68f6-11e7-a49e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:20 GMT'] x-ms-range: [bytes=0-26] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -41,12 +41,12 @@ interactions: body: {string: ''} headers: Content-MD5: [1dmqejQJFCXZC/Jqkmc1Lw==] - Date: ['Thu, 13 Jul 2017 18:48:08 GMT'] - ETag: ['"0x8D4CA1FB44A0C67"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:21 GMT'] + ETag: ['"0x8D4CB19EF61DE7F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:21 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5865ed6e-001a-0017-2d08-fc94b7000000] + x-ms-request-id: [713af047-001a-013d-4d02-fda7a7000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -54,9 +54,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d063909e-67fb-11e7-b528-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0ad2c198-68f6-11e7-b6fc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:21 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -68,11 +68,11 @@ interactions: Content-Length: ['27'] Content-Range: [bytes 0-26/27] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:08 GMT'] - ETag: ['"0x8D4CA1FB44A0C67"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:21 GMT'] + ETag: ['"0x8D4CB19EF61DE7F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:21 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [5865ed70-001a-0017-2e08-fc94b7000000] + x-ms-request-id: [713af048-001a-013d-4e02-fda7a7000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_create_file_from_text_with_encoding.yaml b/tests/recordings/test_file.test_create_file_from_text_with_encoding.yaml index 1bc147aa..c3088a1b 100644 --- a/tests/recordings/test_file.test_create_file_from_text_with_encoding.yaml +++ b/tests/recordings/test_file.test_create_file_from_text_with_encoding.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d0b58b1a-67fb-11e7-aa5c-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0b2ab9f0-68f6-11e7-b804-b8e8564491f6] x-ms-content-length: ['36'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:09 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:21 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:08 GMT'] - ETag: ['"0x8D4CA1FB4CAC5BF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:22 GMT'] + ETag: ['"0x8D4CB19EFD415FD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:22 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7139458b-001a-013d-2608-fca7a7000000] + x-ms-request-id: [f25528cf-001a-00e2-2302-fdb0a6000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -30,9 +30,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['36'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d0cecaba-67fb-11e7-8f4f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0b44ad92-68f6-11e7-abee-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:21 GMT'] x-ms-range: [bytes=0-35] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -42,12 +42,12 @@ interactions: body: {string: ''} headers: Content-MD5: [O7c5HRnUhbM5yD4T1wnm/w==] - Date: ['Thu, 13 Jul 2017 18:48:08 GMT'] - ETag: ['"0x8D4CA1FB4D156A8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:22 GMT'] + ETag: ['"0x8D4CB19EFDC06AF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:22 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7139458e-001a-013d-2708-fca7a7000000] + x-ms-request-id: [f25528d1-001a-00e2-2402-fdb0a6000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -55,9 +55,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d0d4d0ba-67fb-11e7-99ed-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0b4a5c88-68f6-11e7-ab98-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:21 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -71,11 +71,11 @@ interactions: Content-Length: ['36'] Content-Range: [bytes 0-35/36] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:08 GMT'] - ETag: ['"0x8D4CA1FB4D156A8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:22 GMT'] + ETag: ['"0x8D4CB19EFDC06AF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:22 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [7139458f-001a-013d-2808-fca7a7000000] + x-ms-request-id: [f25528d2-001a-00e2-2502-fdb0a6000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_create_file_with_md5_small.yaml b/tests/recordings/test_file.test_create_file_with_md5_small.yaml index d42ab42c..7452f30c 100644 --- a/tests/recordings/test_file.test_create_file_with_md5_small.yaml +++ b/tests/recordings/test_file.test_create_file_with_md5_small.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d1295d06-67fb-11e7-b9a5-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0b934c74-68f6-11e7-8e52-b8e8564491f6] x-ms-content-length: ['512'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:10 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:22 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:09 GMT'] - ETag: ['"0x8D4CA1FB53CAF56"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:23 GMT'] + ETag: ['"0x8D4CB19F03B00D7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:23 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5a18bc35-001a-0004-5808-fca156000000] + x-ms-request-id: [b388061f-001a-0037-1f02-fdf87b000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -39,9 +39,9 @@ interactions: Connection: [keep-alive] Content-Length: ['512'] Content-MD5: [VQMn7S7qtJ9Rghxc0IDqLg==] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d14149c0-67fb-11e7-9d70-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0baa34be-68f6-11e7-b547-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:22 GMT'] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -51,12 +51,12 @@ interactions: body: {string: ''} headers: Content-MD5: [VQMn7S7qtJ9Rghxc0IDqLg==] - Date: ['Thu, 13 Jul 2017 18:48:09 GMT'] - ETag: ['"0x8D4CA1FB5442AD3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:23 GMT'] + ETag: ['"0x8D4CB19F0416A94"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:23 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5a18bc37-001a-0004-5908-fca156000000] + x-ms-request-id: [b3880621-001a-0037-2002-fdf87b000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_file.test_create_file_with_metadata.yaml b/tests/recordings/test_file.test_create_file_with_metadata.yaml index da51fdbd..e098fd9c 100644 --- a/tests/recordings/test_file.test_create_file_with_metadata.yaml +++ b/tests/recordings/test_file.test_create_file_with_metadata.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d184dc8a-67fb-11e7-b507-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0bda1758-68f6-11e7-a8b9-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:10 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:22 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-type: [file] @@ -17,12 +17,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:13 GMT'] - ETag: ['"0x8D4CA1FB599383B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:24 GMT'] + ETag: ['"0x8D4CB19F08053C5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:23 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [97e5d9ea-001a-00a4-7108-fc6e30000000] + x-ms-request-id: [9936530a-001a-00d3-2402-fdeb71000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -30,23 +30,23 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d19d90b8-67fb-11e7-ae6d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0bef4c28-68f6-11e7-840f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:22 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utshare4cc6103b/file4cc6103b?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:13 GMT'] - ETag: ['"0x8D4CA1FB599383B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:24 GMT'] + ETag: ['"0x8D4CB19F08053C5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:23 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [97e5d9ec-001a-00a4-7208-fc6e30000000] + x-ms-request-id: [9936530c-001a-00d3-2502-fdeb71000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_file.test_delete_file_with_existing_file.yaml b/tests/recordings/test_file.test_delete_file_with_existing_file.yaml index cb63d275..c09fb9c8 100644 --- a/tests/recordings/test_file.test_delete_file_with_existing_file.yaml +++ b/tests/recordings/test_file.test_delete_file_with_existing_file.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d1d24970-67fb-11e7-94cf-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0c273f86-68f6-11e7-8011-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:11 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:23 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:11 GMT'] - ETag: ['"0x8D4CA1FB5E654F9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:23 GMT'] + ETag: ['"0x8D4CB19F0CDE59B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:24 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c99dc824-001a-0068-2308-fc0a85000000] + x-ms-request-id: [33c93348-001a-0093-0b02-fdc29f000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d1eacc02-67fb-11e7-9ead-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0c3d5bfe-68f6-11e7-971b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:23 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [MQa6OTHftuIF9mbcK76CzQ==] - Date: ['Thu, 13 Jul 2017 18:48:11 GMT'] - ETag: ['"0x8D4CA1FB5EE6CD7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:23 GMT'] + ETag: ['"0x8D4CB19F0D56114"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:24 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c99dc826-001a-0068-2408-fc0a85000000] + x-ms-request-id: [33c9334a-001a-0093-0c02-fdc29f000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -73,38 +73,38 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d1f351c6-67fb-11e7-9d43-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0c43a934-68f6-11e7-bee5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:23 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.file.core.windows.net/utsharea52e1263/filea52e1263 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:23 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c99dc827-001a-0068-2508-fc0a85000000] + x-ms-request-id: [33c9334b-001a-0093-0d02-fdc29f000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d1fa7666-67fb-11e7-9807-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0c49288a-68f6-11e7-9f9e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:23 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.file.core.windows.net/utsharea52e1263/filea52e1263 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:23 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c99dc828-001a-0068-2608-fc0a85000000] + x-ms-request-id: [33c9334c-001a-0093-0e02-fdc29f000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified resource does not exist.} version: 1 diff --git a/tests/recordings/test_file.test_delete_file_with_non_existing_file.yaml b/tests/recordings/test_file.test_delete_file_with_non_existing_file.yaml index 41a9ed3c..a2884ff5 100644 --- a/tests/recordings/test_file.test_delete_file_with_non_existing_file.yaml +++ b/tests/recordings/test_file.test_delete_file_with_non_existing_file.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d23faf58-67fb-11e7-961c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0c79b18a-68f6-11e7-aac2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:23 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.file.core.windows.net/utsharef2f4140d/filef2f4140d response: body: {string: "\uFEFFResourceNotFoundThe\ - \ specified resource does not exist.\nRequestId:fd105e56-001a-007c-5408-fcc9e1000000\n\ - Time:2017-07-13T18:48:12.0704316Z"} + \ specified resource does not exist.\nRequestId:5a1a6186-001a-0004-4202-fda156000000\n\ + Time:2017-07-15T00:39:24.7247552Z"} headers: Content-Length: ['223'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:48:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:24 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [fd105e56-001a-007c-5408-fcc9e1000000] + x-ms-request-id: [5a1a6186-001a-0004-4202-fda156000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified resource does not exist.} version: 1 diff --git a/tests/recordings/test_file.test_file_exists.yaml b/tests/recordings/test_file.test_file_exists.yaml index f91dd974..4f80f470 100644 --- a/tests/recordings/test_file.test_file_exists.yaml +++ b/tests/recordings/test_file.test_file_exists.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d2a8c2f4-67fb-11e7-873a-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0cba84c6-68f6-11e7-a095-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:12 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:24 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:11 GMT'] - ETag: ['"0x8D4CA1FB6BF2999"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:24 GMT'] + ETag: ['"0x8D4CB19F16314C3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:25 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [acbf25cd-001a-00e0-6308-fcb25c000000] + x-ms-request-id: [91b12fe5-001a-00dc-2202-fd0687000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d2c3a752-67fb-11e7-8c27-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0cd236c0-68f6-11e7-888a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:24 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [fmfWPYlKMYVkppi0vaS2dg==] - Date: ['Thu, 13 Jul 2017 18:48:12 GMT'] - ETag: ['"0x8D4CA1FB6C6CC25"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:24 GMT'] + ETag: ['"0x8D4CB19F169577B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:25 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [acbf25cf-001a-00e0-6408-fcb25c000000] + x-ms-request-id: [91b12fe7-001a-00dc-2302-fd0687000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -72,9 +72,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d2ca1f68-67fb-11e7-b36b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0cd9a298-68f6-11e7-bc5c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:24 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.file.core.windows.net/utshare8ebf0aac/file8ebf0aac @@ -83,11 +83,11 @@ interactions: headers: Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:12 GMT'] - ETag: ['"0x8D4CA1FB6C6CC25"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:24 GMT'] + ETag: ['"0x8D4CB19F169577B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:25 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [acbf25d0-001a-00e0-6508-fcb25c000000] + x-ms-request-id: [91b12fe8-001a-00dc-2402-fd0687000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_file_not_exists.yaml b/tests/recordings/test_file.test_file_not_exists.yaml index 90723165..0b89015f 100644 --- a/tests/recordings/test_file.test_file_not_exists.yaml +++ b/tests/recordings/test_file.test_file_not_exists.yaml @@ -3,19 +3,19 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d307b988-67fb-11e7-b9f5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0d134d0c-68f6-11e7-9743-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:24 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.file.core.windows.net/utsharebd5b0c5c/missingdir/filebd5b0c5c response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:23 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a6128ca4-001a-002c-0308-fcd6e9000000] + x-ms-request-id: [5c8ed305-001a-0089-5702-fdedf0000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified parent path does not exist.} version: 1 diff --git a/tests/recordings/test_file.test_file_unicode_data.yaml b/tests/recordings/test_file.test_file_unicode_data.yaml index 9e72dce3..d85024ce 100644 --- a/tests/recordings/test_file.test_file_unicode_data.yaml +++ b/tests/recordings/test_file.test_file_unicode_data.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d394dd0c-67fb-11e7-8fe5-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0d550870-68f6-11e7-a551-b8e8564491f6] x-ms-content-length: ['26'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:14 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:25 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:13 GMT'] - ETag: ['"0x8D4CA1FB7AA02F2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:26 GMT'] + ETag: ['"0x8D4CB19F1FBC703"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:26 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f8070f0-001a-006f-3508-fcfc00000000] + x-ms-request-id: [3b9882a2-001a-00c2-2702-fddc6a000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['26'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d3af0800-67fb-11e7-b470-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:14 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0d6b4658-68f6-11e7-b87f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:25 GMT'] x-ms-range: [bytes=0-25] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -41,12 +41,12 @@ interactions: body: {string: ''} headers: Content-MD5: [aFkhSeVIRnJoB2MmKjC25w==] - Date: ['Thu, 13 Jul 2017 18:48:13 GMT'] - ETag: ['"0x8D4CA1FB7B241CE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:26 GMT'] + ETag: ['"0x8D4CB19F2031B4F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:26 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f8070f2-001a-006f-3608-fcfc00000000] + x-ms-request-id: [3b9882a4-001a-00c2-2802-fddc6a000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -54,9 +54,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d3b5dc7a-67fb-11e7-bedc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:14 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0d717640-68f6-11e7-90b0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:25 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -68,11 +68,11 @@ interactions: Content-Length: ['26'] Content-Range: [bytes 0-25/26] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:13 GMT'] - ETag: ['"0x8D4CA1FB7B241CE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:26 GMT'] + ETag: ['"0x8D4CB19F2031B4F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:26 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [4f8070f3-001a-006f-3708-fcfc00000000] + x-ms-request-id: [3b9882a5-001a-00c2-2902-fddc6a000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_get_file_metadata.yaml b/tests/recordings/test_file.test_get_file_metadata.yaml index 083b6d7a..f332fa8a 100644 --- a/tests/recordings/test_file.test_get_file_metadata.yaml +++ b/tests/recordings/test_file.test_get_file_metadata.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d3fa7286-67fb-11e7-a2ad-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0da2a828-68f6-11e7-be3b-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:14 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:25 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:14 GMT'] - ETag: ['"0x8D4CA1FB8184250"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:26 GMT'] + ETag: ['"0x8D4CB19F24A6A72"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:26 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [29380f81-001a-00fb-3708-fc9cce000000] + x-ms-request-id: [bb80cdbd-001a-006e-7002-fdfdfd000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d41caf86-67fb-11e7-9049-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0db9d822-68f6-11e7-a951-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:25 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [agKhNc6IWu7LNh6hsqX0aQ==] - Date: ['Thu, 13 Jul 2017 18:48:14 GMT'] - ETag: ['"0x8D4CA1FB81FBDC1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:26 GMT'] + ETag: ['"0x8D4CB19F251498A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:26 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [29380f83-001a-00fb-3808-fc9cce000000] + x-ms-request-id: [bb80cdbf-001a-006e-7102-fdfdfd000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -72,21 +72,21 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d4233bb4-67fb-11e7-b272-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0dbf725a-68f6-11e7-b2cb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:25 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utshared5e60cec/filed5e60cec?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:14 GMT'] - ETag: ['"0x8D4CA1FB81FBDC1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:26 GMT'] + ETag: ['"0x8D4CB19F251498A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:26 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [29380f84-001a-00fb-3908-fc9cce000000] + x-ms-request-id: [bb80cdc0-001a-006e-7202-fdfdfd000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_file.test_get_file_properties.yaml b/tests/recordings/test_file.test_get_file_properties.yaml index dab8e7b5..ca5135d5 100644 --- a/tests/recordings/test_file.test_get_file_properties.yaml +++ b/tests/recordings/test_file.test_get_file_properties.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d45cba22-67fb-11e7-98ea-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0def7e14-68f6-11e7-9198-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:15 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:26 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:15 GMT'] - ETag: ['"0x8D4CA1FB8705D99"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:26 GMT'] + ETag: ['"0x8D4CB19F296C390"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:27 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [701618ac-001a-000b-1c08-fc4ca0000000] + x-ms-request-id: [b19ef5aa-001a-00cf-4102-fd3366000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d474ac7a-67fb-11e7-b6bc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0e0612e6-68f6-11e7-a850-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:26 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [zD2lgdR3LEIwUBdSYuKmGw==] - Date: ['Thu, 13 Jul 2017 18:48:15 GMT'] - ETag: ['"0x8D4CA1FB8778ADF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:26 GMT'] + ETag: ['"0x8D4CB19F29D7B8C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:27 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [701618ae-001a-000b-1d08-fc4ca0000000] + x-ms-request-id: [b19ef5ac-001a-00cf-4202-fd3366000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -72,9 +72,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d47ab8ba-67fb-11e7-90eb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0e0becd4-68f6-11e7-9eaf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:26 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.file.core.windows.net/utsharef2420df8/filef2420df8 @@ -83,11 +83,11 @@ interactions: headers: Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:15 GMT'] - ETag: ['"0x8D4CA1FB8778ADF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:26 GMT'] + ETag: ['"0x8D4CB19F29D7B8C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:27 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [701618af-001a-000b-1e08-fc4ca0000000] + x-ms-request-id: [b19ef5ad-001a-00cf-4302-fd3366000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_get_file_properties_with_non_existing_file.yaml b/tests/recordings/test_file.test_get_file_properties_with_non_existing_file.yaml index a195da2d..013e8858 100644 --- a/tests/recordings/test_file.test_get_file_properties_with_non_existing_file.yaml +++ b/tests/recordings/test_file.test_get_file_properties_with_non_existing_file.yaml @@ -3,19 +3,19 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d4b22a52-67fb-11e7-a8c2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0e3d13e2-68f6-11e7-b43d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:26 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.file.core.windows.net/utsharea6d51786/filea6d51786 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:27 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f2d20df8-001a-0137-2e08-fcbe2e000000] + x-ms-request-id: [a6158233-001a-002c-6202-fdd6e9000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified resource does not exist.} version: 1 diff --git a/tests/recordings/test_file.test_list_ranges_2.yaml b/tests/recordings/test_file.test_list_ranges_2.yaml index 91b030d6..731179ff 100644 --- a/tests/recordings/test_file.test_list_ranges_2.yaml +++ b/tests/recordings/test_file.test_list_ranges_2.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d4f5eaa8-67fb-11e7-b97d-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0e7b67ee-68f6-11e7-b53b-b8e8564491f6] x-ms-content-length: ['2048'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:16 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:27 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:16 GMT'] - ETag: ['"0x8D4CA1FB90873E2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:27 GMT'] + ETag: ['"0x8D4CB19F320F43C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:27 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [06ba664d-001a-0123-2708-fc7d4a000000] + x-ms-request-id: [fb031c0a-001a-0051-5402-fd4a21000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d50e60e2-67fb-11e7-9946-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0e921b88-68f6-11e7-bfeb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:27 GMT'] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -41,12 +41,12 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:48:16 GMT'] - ETag: ['"0x8D4CA1FB910B2B1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:27 GMT'] + ETag: ['"0x8D4CB19F3293318"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:28 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [06ba664f-001a-0123-2808-fc7d4a000000] + x-ms-request-id: [fb031c0c-001a-0051-5502-fd4a21000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -55,9 +55,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d513eb5c-67fb-11e7-89cc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0e978ab4-68f6-11e7-b5a1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:27 GMT'] x-ms-range: [bytes=1024-1535] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -67,12 +67,12 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:48:16 GMT'] - ETag: ['"0x8D4CA1FB9160ADC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:27 GMT'] + ETag: ['"0x8D4CB19F32E8B40"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:28 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [06ba6650-001a-0123-2908-fc7d4a000000] + x-ms-request-id: [fb031c0d-001a-0051-5602-fd4a21000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -80,9 +80,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d51972f4-67fb-11e7-85fe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0e9cb674-68f6-11e7-837c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:27 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utsharea5a50b39/filea5a50b39?comp=rangelist @@ -90,13 +90,13 @@ interactions: body: {string: "\uFEFF051110241535"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:48:16 GMT'] - ETag: ['"0x8D4CA1FB9160ADC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:27 GMT'] + ETag: ['"0x8D4CB19F32E8B40"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:28 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-content-length: ['2048'] - x-ms-request-id: [06ba6651-001a-0123-2a08-fc7d4a000000] + x-ms-request-id: [fb031c0e-001a-0051-5702-fd4a21000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_file.test_list_ranges_none.yaml b/tests/recordings/test_file.test_list_ranges_none.yaml index 2b31a0b1..d02afa75 100644 --- a/tests/recordings/test_file.test_list_ranges_none.yaml +++ b/tests/recordings/test_file.test_list_ranges_none.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d54cb6ee-67fb-11e7-b539-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0ece558a-68f6-11e7-8603-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:17 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:27 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:16 GMT'] - ETag: ['"0x8D4CA1FB95E44B0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:29 GMT'] + ETag: ['"0x8D4CB19F3760187"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:28 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [248d141a-001a-003a-1808-fc1777000000] + x-ms-request-id: [8263472a-001a-0101-5702-fd137c000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d56230fa-67fb-11e7-b144-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0eeb3f74-68f6-11e7-90c7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:27 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utsharecace0cb7/filecace0cb7?comp=rangelist @@ -38,13 +38,13 @@ interactions: body: {string: "\uFEFF"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:48:16 GMT'] - ETag: ['"0x8D4CA1FB95E44B0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:29 GMT'] + ETag: ['"0x8D4CB19F3760187"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:28 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-content-length: ['1024'] - x-ms-request-id: [248d141c-001a-003a-1908-fc1777000000] + x-ms-request-id: [8263472c-001a-0101-5802-fd137c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_file.test_resize_file.yaml b/tests/recordings/test_file.test_resize_file.yaml index 94f3b588..e98f3bc9 100644 --- a/tests/recordings/test_file.test_resize_file.yaml +++ b/tests/recordings/test_file.test_resize_file.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d61d81fa-67fb-11e7-aeb3-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0f9859f4-68f6-11e7-ab59-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:18 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:29 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:17 GMT'] - ETag: ['"0x8D4CA1FBA2F018C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:29 GMT'] + ETag: ['"0x8D4CB19F43EF439"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:29 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [49682817-001a-00bf-1108-fc40a2000000] + x-ms-request-id: [d6acf765-001a-00cb-5d02-fdc6e4000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d633195e-67fb-11e7-bf2c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0fae8c18-68f6-11e7-9864-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:29 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [e3xzWS/pShGi2M8sLzB7zA==] - Date: ['Thu, 13 Jul 2017 18:48:17 GMT'] - ETag: ['"0x8D4CA1FBA356B5E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:29 GMT'] + ETag: ['"0x8D4CB19F445D348"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:29 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [49682819-001a-00bf-1208-fc40a2000000] + x-ms-request-id: [d6acf767-001a-00cb-5e02-fdc6e4000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -73,22 +73,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d6386ee8-67fb-11e7-b20c-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0fb4cfe2-68f6-11e7-ad9e-b8e8564491f6] x-ms-content-length: ['5'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:18 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utshare8f720a9e/file8f720a9e?comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:17 GMT'] - ETag: ['"0x8D4CA1FBA3C4A6E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:29 GMT'] + ETag: ['"0x8D4CB19F44F71FC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:29 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4968281a-001a-00bf-1308-fc40a2000000] + x-ms-request-id: [d6acf768-001a-00cb-5f02-fdc6e4000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -96,9 +96,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d63f2fdc-67fb-11e7-b8cb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [0fbdd3d0-68f6-11e7-a3bb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:29 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.file.core.windows.net/utshare8f720a9e/file8f720a9e @@ -107,11 +107,11 @@ interactions: headers: Content-Length: ['5'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:18 GMT'] - ETag: ['"0x8D4CA1FBA3C4A6E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:29 GMT'] + ETag: ['"0x8D4CB19F44F71FC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:29 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [4968281b-001a-00bf-1408-fc40a2000000] + x-ms-request-id: [d6acf769-001a-00cb-6002-fdc6e4000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_set_file_metadata_with_upper_case.yaml b/tests/recordings/test_file.test_set_file_metadata_with_upper_case.yaml index 653e4d81..5f07568e 100644 --- a/tests/recordings/test_file.test_set_file_metadata_with_upper_case.yaml +++ b/tests/recordings/test_file.test_set_file_metadata_with_upper_case.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d6a98a3a-67fb-11e7-aa18-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [1026063a-68f6-11e7-9db3-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:19 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:30 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:18 GMT'] - ETag: ['"0x8D4CA1FBABAB96A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:30 GMT'] + ETag: ['"0x8D4CB19F4CB9653"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:30 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [eee82589-001a-0116-1008-fcd31f000000] + x-ms-request-id: [7868ce34-001a-00f4-2702-fd7138000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d6bed002-67fb-11e7-97e2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [103c0734-68f6-11e7-ac01-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:30 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [LTUS+vdAsMQZyUo97T5zkw==] - Date: ['Thu, 13 Jul 2017 18:48:18 GMT'] - ETag: ['"0x8D4CA1FBAC234DA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:30 GMT'] + ETag: ['"0x8D4CB19F4D338E3"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:30 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [eee8258b-001a-0116-1108-fcd31f000000] + x-ms-request-id: [7868ce36-001a-00f4-2802-fd7138000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -73,9 +73,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d6c65cf0-67fb-11e7-9df0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [1041a0ac-68f6-11e7-8d71-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:30 GMT'] x-ms-meta-UP: [UPval] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] @@ -85,12 +85,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:19 GMT'] - ETag: ['"0x8D4CA1FBACD818E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:30 GMT'] + ETag: ['"0x8D4CB19F4DB50A2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:30 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [eee8258c-001a-0116-1208-fcd31f000000] + x-ms-request-id: [7868ce38-001a-00f4-2a02-fd7138000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -98,24 +98,24 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d6d0ff28-67fb-11e7-8769-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [104c766c-68f6-11e7-964f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:30 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utsharedf071399/filedf071399?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:19 GMT'] - ETag: ['"0x8D4CA1FBACD818E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:30 GMT'] + ETag: ['"0x8D4CB19F4DB50A2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:30 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-meta-UP: [UPval] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [eee8258d-001a-0116-1308-fcd31f000000] + x-ms-request-id: [7868ce39-001a-00f4-2b02-fd7138000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_file.test_set_file_properties.yaml b/tests/recordings/test_file.test_set_file_properties.yaml index 13f00d90..7a672f3a 100644 --- a/tests/recordings/test_file.test_set_file_properties.yaml +++ b/tests/recordings/test_file.test_set_file_properties.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d7042134-67fb-11e7-b5a7-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [107f6a0c-68f6-11e7-a3d6-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:19 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:30 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:18 GMT'] - ETag: ['"0x8D4CA1FBB154625"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:30 GMT'] + ETag: ['"0x8D4CB19F529A5E8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:31 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bf9f8a81-001a-009e-3a08-fc2d93000000] + x-ms-request-id: [d6606ffe-001a-00c9-4402-fdc41e000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d719e870-67fb-11e7-998a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [109852ee-68f6-11e7-87e8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:30 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [mdb/9bkH56IhTTMiKV2z1Q==] - Date: ['Thu, 13 Jul 2017 18:48:19 GMT'] - ETag: ['"0x8D4CA1FBB1C4C4B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:30 GMT'] + ETag: ['"0x8D4CB19F52F9A6D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:31 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bf9f8a83-001a-009e-3b08-fc2d93000000] + x-ms-request-id: [d6607000-001a-00c9-4502-fdc41e000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -73,23 +73,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d71f7074-67fb-11e7-82fa-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [109e0be4-68f6-11e7-ba56-b8e8564491f6] x-ms-content-disposition: [inline] x-ms-content-language: [spanish] - x-ms-date: ['Thu, 13 Jul 2017 18:48:20 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/utsharef3260e04/filef3260e04?comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:19 GMT'] - ETag: ['"0x8D4CA1FBB217D60"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:31 GMT'] + ETag: ['"0x8D4CB19F53567DF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:31 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bf9f8a84-001a-009e-3c08-fc2d93000000] + x-ms-request-id: [d6607001-001a-00c9-4602-fdc41e000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -97,9 +97,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d72470ec-67fb-11e7-9224-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [10a39640-68f6-11e7-b748-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:30 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.file.core.windows.net/utsharef3260e04/filef3260e04 @@ -109,11 +109,11 @@ interactions: Content-Disposition: [inline] Content-Language: [spanish] Content-Length: ['1024'] - Date: ['Thu, 13 Jul 2017 18:48:19 GMT'] - ETag: ['"0x8D4CA1FBB217D60"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:31 GMT'] + ETag: ['"0x8D4CB19F53567DF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:31 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [bf9f8a85-001a-009e-3d08-fc2d93000000] + x-ms-request-id: [d6607002-001a-00c9-4702-fdc41e000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_unicode_get_file_binary_data.yaml b/tests/recordings/test_file.test_unicode_get_file_binary_data.yaml index 1d88163c..d925c21c 100644 --- a/tests/recordings/test_file.test_unicode_get_file_binary_data.yaml +++ b/tests/recordings/test_file.test_unicode_get_file_binary_data.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d7c52b74-67fb-11e7-a809-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [1148f8ec-68f6-11e7-bac5-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:21 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:31 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:20 GMT'] - ETag: ['"0x8D4CA1FBBD844D6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:32 GMT'] + ETag: ['"0x8D4CB19F5EF1597"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:32 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6705fc61-001a-005c-7308-fca52d000000] + x-ms-request-id: [fbd65057-001a-00a7-0a02-fd6d37000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d7dc0f22-67fb-11e7-ac79-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [1164749e-68f6-11e7-bd95-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:32 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [suqff86oMaSmOyE/QaiFWw==] - Date: ['Thu, 13 Jul 2017 18:48:20 GMT'] - ETag: ['"0x8D4CA1FBBDE606D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:32 GMT'] + ETag: ['"0x8D4CB19F5FB73E2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:32 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6705fc63-001a-005c-7408-fca52d000000] + x-ms-request-id: [fbd65059-001a-00a7-0b02-fd6d37000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -72,9 +72,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d7e18588-67fb-11e7-9982-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [11699c1e-68f6-11e7-92f2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:32 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -105,11 +105,11 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:20 GMT'] - ETag: ['"0x8D4CA1FBBDE606D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:32 GMT'] + ETag: ['"0x8D4CB19F5FB73E2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:32 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [6705fc64-001a-005c-7508-fca52d000000] + x-ms-request-id: [fbd6505a-001a-00a7-0c02-fd6d37000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_unicode_get_file_unicode_name.yaml b/tests/recordings/test_file.test_unicode_get_file_unicode_name.yaml index 6b4aefc9..5c399000 100644 --- a/tests/recordings/test_file.test_unicode_get_file_unicode_name.yaml +++ b/tests/recordings/test_file.test_unicode_get_file_unicode_name.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d812f318-67fb-11e7-b5bc-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [119c46be-68f6-11e7-bbcf-b8e8564491f6] x-ms-content-length: ['11'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:21 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:32 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:20 GMT'] - ETag: ['"0x8D4CA1FBC2736A2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:33 GMT'] + ETag: ['"0x8D4CB19F66089A2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:33 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8433971d-001a-0034-6c08-fcfb7c000000] + x-ms-request-id: [73aadb37-001a-0040-6502-fd7d3a000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d82af786-67fb-11e7-9204-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [11d06874-68f6-11e7-8d01-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:32 GMT'] x-ms-range: [bytes=0-10] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -41,12 +41,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:48:20 GMT'] - ETag: ['"0x8D4CA1FBC2D7958"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:33 GMT'] + ETag: ['"0x8D4CB19F667DDF7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:33 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8433971f-001a-0034-6d08-fcfb7c000000] + x-ms-request-id: [73aadb39-001a-0040-6602-fd7d3a000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -54,9 +54,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d8306d38-67fb-11e7-bb76-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [11d7c4a8-68f6-11e7-9547-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:32 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -68,11 +68,11 @@ interactions: Content-Length: ['11'] Content-Range: [bytes 0-10/11] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:20 GMT'] - ETag: ['"0x8D4CA1FBC2D7958"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:33 GMT'] + ETag: ['"0x8D4CB19F667DDF7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:33 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [84339720-001a-0034-6e08-fcfb7c000000] + x-ms-request-id: [73aadb3a-001a-0040-6702-fd7d3a000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_update_file_unicode.yaml b/tests/recordings/test_file.test_update_file_unicode.yaml index 50ed1100..9646a272 100644 --- a/tests/recordings/test_file.test_update_file_unicode.yaml +++ b/tests/recordings/test_file.test_update_file_unicode.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d860977e-67fb-11e7-ad14-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [12084792-68f6-11e7-b632-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:22 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:33 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:22 GMT'] - ETag: ['"0x8D4CA1FBC74A18F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:33 GMT'] + ETag: ['"0x8D4CB19F6AEB7D9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:33 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6ab77242-001a-0048-0708-fc6649000000] + x-ms-request-id: [b7ed32ad-001a-012c-1602-fd90bc000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d878eaa4-67fb-11e7-9e39-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [122026a8-68f6-11e7-8c0c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:33 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [kPysEoUcOh/raXYDHU+Tcg==] - Date: ['Thu, 13 Jul 2017 18:48:22 GMT'] - ETag: ['"0x8D4CA1FBC7BA7B9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:33 GMT'] + ETag: ['"0x8D4CB19F6B76BF9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:33 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6ab77244-001a-0048-0808-fc6649000000] + x-ms-request-id: [b7ed32af-001a-012c-1702-fd90bc000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_file.test_update_range.yaml b/tests/recordings/test_file.test_update_range.yaml index 66138010..9a3ee02d 100644 --- a/tests/recordings/test_file.test_update_range.yaml +++ b/tests/recordings/test_file.test_update_range.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d8a879b8-67fb-11e7-abf7-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [125ce858-68f6-11e7-8fe2-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:22 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:33 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:22 GMT'] - ETag: ['"0x8D4CA1FBCC1E564"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:34 GMT'] + ETag: ['"0x8D4CB19F7028C5E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:34 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [35d37d71-001a-0124-5808-fc8bcf000000] + x-ms-request-id: [f6240a2a-001a-0039-1602-fd1470000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d8c5bf6e-67fb-11e7-aad2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [127208b4-68f6-11e7-8a62-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:33 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [pBq3seluCnqpsprVzJ2AVA==] - Date: ['Thu, 13 Jul 2017 18:48:22 GMT'] - ETag: ['"0x8D4CA1FBCC80104"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:34 GMT'] + ETag: ['"0x8D4CB19F7094456"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:34 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [35d37d73-001a-0124-5908-fc8bcf000000] + x-ms-request-id: [f6240a2c-001a-0039-1702-fd1470000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -73,9 +73,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d8cb25ee-67fb-11e7-84f2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [128b112c-68f6-11e7-928c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:34 GMT'] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -85,12 +85,12 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:48:22 GMT'] - ETag: ['"0x8D4CA1FBCCD8046"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:34 GMT'] + ETag: ['"0x8D4CB19F722763A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:34 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [35d37d74-001a-0124-5a08-fc8bcf000000] + x-ms-request-id: [f6240a2d-001a-0039-1802-fd1470000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -98,9 +98,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d8d0e2e2-67fb-11e7-9ca0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [1290d30a-68f6-11e7-8774-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:34 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -131,11 +131,11 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:22 GMT'] - ETag: ['"0x8D4CA1FBCCD8046"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:34 GMT'] + ETag: ['"0x8D4CB19F722763A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:34 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [35d37d75-001a-0124-5b08-fc8bcf000000] + x-ms-request-id: [f6240a2e-001a-0039-1902-fd1470000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_file.test_update_range_with_md5.yaml b/tests/recordings/test_file.test_update_range_with_md5.yaml index b76c755d..f39092d6 100644 --- a/tests/recordings/test_file.test_update_range_with_md5.yaml +++ b/tests/recordings/test_file.test_update_range_with_md5.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d903bec2-67fb-11e7-921a-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [12c2a682-68f6-11e7-a9f5-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:48:23 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:39:34 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:48:22 GMT'] - ETag: ['"0x8D4CA1FBD15E13A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:23 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:34 GMT'] + ETag: ['"0x8D4CB19F768DAD7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:35 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [aaf750ea-001a-0098-3908-fcdaeb000000] + x-ms-request-id: [c3c2bad7-001a-00fe-2302-fd68b1000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d919c7ba-67fb-11e7-9124-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [12d82a98-68f6-11e7-9136-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:34 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [nS7CaCriCFQYBMeP6hMXPw==] - Date: ['Thu, 13 Jul 2017 18:48:22 GMT'] - ETag: ['"0x8D4CA1FBD1BFCD6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:23 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:34 GMT'] + ETag: ['"0x8D4CB19F76F92CF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:35 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [aaf750ec-001a-0098-3a08-fcdaeb000000] + x-ms-request-id: [c3c2bad9-001a-00fe-2402-fd68b1000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -74,9 +74,9 @@ interactions: Connection: [keep-alive] Content-Length: ['512'] Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d91f6eec-67fb-11e7-b114-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [12de11a6-68f6-11e7-a12d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:34 GMT'] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -86,12 +86,12 @@ interactions: body: {string: ''} headers: Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==] - Date: ['Thu, 13 Jul 2017 18:48:22 GMT'] - ETag: ['"0x8D4CA1FBD21A33C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:23 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:34 GMT'] + ETag: ['"0x8D4CB19F7756038"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:35 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [aaf750ed-001a-0098-3b08-fcdaeb000000] + x-ms-request-id: [c3c2bada-001a-00fe-2502-fd68b1000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_get_blob.test_get_blob_exact_get_size.yaml b/tests/recordings/test_get_blob.test_get_blob_exact_get_size.yaml index 1963f510..3f6f5631 100644 --- a/tests/recordings/test_get_blob.test_get_blob_exact_get_size.yaml +++ b/tests/recordings/test_get_blob.test_get_blob_exact_get_size.yaml @@ -579,10 +579,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['32768'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [d9cd8646-67fb-11e7-aa39-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:24 GMT'] + x-ms-client-request-id: [13984f30-68f6-11e7-a38c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6e481116/blob6e481116 @@ -590,12 +590,12 @@ interactions: body: {string: ''} headers: Content-MD5: [MorknHmbOmjH4TSjwhDV3w==] - Date: ['Thu, 13 Jul 2017 18:48:23 GMT'] - ETag: ['"0x8D4CA1FBE254AFD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:37 GMT'] + ETag: ['"0x8D4CB19F869BDC5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [745ff2dc-0001-011d-1608-fccb6b000000] + x-ms-request-id: [00497390-0001-0110-2502-fd2467000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -603,9 +603,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d9eb1e98-67fb-11e7-96aa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:24 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [13b4c14c-68f6-11e7-9c58-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:35 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -1193,16 +1193,16 @@ interactions: Content-Length: ['32768'] Content-Range: [bytes 0-32767/32768] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:23 GMT'] - ETag: ['"0x8D4CA1FBE254AFD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:37 GMT'] + ETag: ['"0x8D4CB19F869BDC5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [MorknHmbOmjH4TSjwhDV3w==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [745ff31a-0001-011d-4b08-fccb6b000000] + x-ms-request-id: [004973c4-0001-0110-5502-fd2467000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_get_blob.test_get_blob_no_content.yaml b/tests/recordings/test_get_blob.test_get_blob_no_content.yaml index 1c064c0f..92cffb59 100644 --- a/tests/recordings/test_get_blob.test_get_blob_no_content.yaml +++ b/tests/recordings/test_get_blob.test_get_blob_no_content.yaml @@ -1,27 +1,26 @@ interactions: - request: - body: ' - - ' + body: null headers: Connection: [keep-alive] - Content-Length: ['52'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [da853410-67fb-11e7-92ad-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:25 GMT'] + Content-Length: ['0'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-blob-type: [BlockBlob] + x-ms-client-request-id: [142ba2c6-68f6-11e7-a08e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.blob.core.windows.net/utcontainer2cdf0f7f/blob2cdf0f7f?comp=blocklist + uri: https://storagename.blob.core.windows.net/utcontainer2cdf0f7f/blob2cdf0f7f response: body: {string: ''} headers: - Content-MD5: [NgbQHgw94OQ3P8fSkY5Pxg==] - Date: ['Thu, 13 Jul 2017 18:48:25 GMT'] - ETag: ['"0x8D4CA1FBED5AA0A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:26 GMT'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] + Date: ['Sat, 15 Jul 2017 00:39:36 GMT'] + ETag: ['"0x8D4CB19F8F54EBA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8e39f1ca-0001-00cd-5008-fc319c000000] + x-ms-request-id: [1fbda04a-0001-007a-4d02-fd3e99000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,25 +28,25 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [da9b5c40-67fb-11e7-89b2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [14406ae4-68f6-11e7-92c4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:36 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer2cdf0f7f/blob2cdf0f7f response: body: {string: "\uFEFFInvalidRangeThe\ - \ range specified is invalid for the current size of the resource.\nRequestId:8e39f1e0-0001-00cd-6208-fc319c000000\n\ - Time:2017-07-13T18:48:25.8871073Z"} + \ range specified is invalid for the current size of the resource.\nRequestId:1fbda064-0001-007a-6402-fd3e99000000\n\ + Time:2017-07-15T00:39:37.7535350Z"} headers: Content-Length: ['249'] Content-Range: [bytes */0] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:48:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [8e39f1e0-0001-00cd-6208-fc319c000000] + x-ms-request-id: [1fbda064-0001-007a-6402-fd3e99000000] x-ms-version: ['2017-04-17'] status: {code: 416, message: The range specified is invalid for the current size of the resource.} @@ -55,9 +54,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [daa0f498-67fb-11e7-8c5a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [14465238-68f6-11e7-a5ad-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:36 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer2cdf0f7f/blob2cdf0f7f @@ -66,16 +65,17 @@ interactions: headers: Accept-Ranges: [bytes] Content-Length: ['0'] + Content-MD5: [1B2M2Y8AsgTpgAmY7PhCfg==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:25 GMT'] - ETag: ['"0x8D4CA1FBED5AA0A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:36 GMT'] + ETag: ['"0x8D4CB19F8F54EBA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [8e39f1ef-0001-00cd-6c08-fc319c000000] + x-ms-request-id: [1fbda0a0-0001-007a-1c02-fd3e99000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_get_blob.test_get_blob_to_bytes_non_parallel.yaml b/tests/recordings/test_get_blob.test_get_blob_to_bytes_non_parallel.yaml index 73da7785..10185af5 100644 --- a/tests/recordings/test_get_blob.test_get_blob_to_bytes_non_parallel.yaml +++ b/tests/recordings/test_get_blob.test_get_blob_to_bytes_non_parallel.yaml @@ -3,9 +3,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dd374f68-67fb-11e7-8eb5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:30 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [16036764-68f6-11e7-8870-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:39 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerf2ec1407/byteblobf2ec1407 @@ -1167,15 +1167,15 @@ interactions: Content-Length: ['65541'] Content-MD5: [v6NbirHRO6aKhpKIy8Tc0w==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:29 GMT'] - ETag: ['"0x8D4CA1FC170F945"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:41 GMT'] + ETag: ['"0x8D4CB19FAB7765F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [7f834a8b-0001-0138-6c08-fc53d8000000] + x-ms-request-id: [e8dacef4-0001-0106-5b02-fde5f9000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_get_blob.test_get_blob_to_bytes_small.yaml b/tests/recordings/test_get_blob.test_get_blob_to_bytes_small.yaml index 7de728e6..5977584e 100644 --- a/tests/recordings/test_get_blob.test_get_blob_to_bytes_small.yaml +++ b/tests/recordings/test_get_blob.test_get_blob_to_bytes_small.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [ddc386a4-67fb-11e7-97a0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:31 GMT'] + x-ms-client-request-id: [16a08dc8-68f6-11e7-8565-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6f641129/blob6f641129 @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [IbkaoduKsQdOo3sBz4Vrhw==] - Date: ['Thu, 13 Jul 2017 18:48:30 GMT'] - ETag: ['"0x8D4CA1FC214F9E2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:42 GMT'] + ETag: ['"0x8D4CB19FB6ABAF7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [89da1e18-0001-00fc-3f08-fc6a4b000000] + x-ms-request-id: [996861a5-0001-00d3-2002-fdeb71000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -46,9 +46,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dddb08ec-67fb-11e7-a971-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [16b58124-68f6-11e7-b089-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:41 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -79,16 +79,16 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:30 GMT'] - ETag: ['"0x8D4CA1FC214F9E2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:31 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:42 GMT'] + ETag: ['"0x8D4CB19FB6ABAF7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [IbkaoduKsQdOo3sBz4Vrhw==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [89da1e26-0001-00fc-4c08-fc6a4b000000] + x-ms-request-id: [996861bb-0001-00d3-3202-fdeb71000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_get_blob.test_get_blob_to_path_non_parallel.yaml b/tests/recordings/test_get_blob.test_get_blob_to_path_non_parallel.yaml index c933320b..25d59820 100644 --- a/tests/recordings/test_get_blob.test_get_blob_to_path_non_parallel.yaml +++ b/tests/recordings/test_get_blob.test_get_blob_to_path_non_parallel.yaml @@ -3,9 +3,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [df4078c0-67fb-11e7-ac97-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [17d1228c-68f6-11e7-93e0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:42 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerddfc138d/byteblobddfc138d @@ -1167,15 +1167,15 @@ interactions: Content-Length: ['65541'] Content-MD5: [q15l12IcsEtjKqv13oj9Eg==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:33 GMT'] - ETag: ['"0x8D4CA1FC37A25A6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:42 GMT'] + ETag: ['"0x8D4CB19FC85FC5E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [353d0d73-0001-00b3-6a08-fcae53000000] + x-ms-request-id: [1dbf1ceb-0001-0123-7a02-fd7d4a000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_get_blob.test_get_blob_to_path_small.yaml b/tests/recordings/test_get_blob.test_get_blob_to_path_small.yaml index 88a747b3..c1582ffa 100644 --- a/tests/recordings/test_get_blob.test_get_blob_to_path_small.yaml +++ b/tests/recordings/test_get_blob.test_get_blob_to_path_small.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [dfe758e8-67fb-11e7-8de2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:34 GMT'] + x-ms-client-request-id: [18550d2e-68f6-11e7-9939-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer5dca10af/blob5dca10af @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [AzK6DZ0h7zQBpljgpNGCAw==] - Date: ['Thu, 13 Jul 2017 18:48:33 GMT'] - ETag: ['"0x8D4CA1FC4390670"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:44 GMT'] + ETag: ['"0x8D4CB19FD1F7296"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [96d46e23-0001-0006-4208-fca3ac000000] + x-ms-request-id: [cb5385a2-0001-00dd-0502-fd077a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -46,9 +46,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [dffeb9de-67fb-11e7-bc95-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [186a508a-68f6-11e7-bee8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:43 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -79,16 +79,16 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:33 GMT'] - ETag: ['"0x8D4CA1FC4390670"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:44 GMT'] + ETag: ['"0x8D4CB19FD1F7296"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [AzK6DZ0h7zQBpljgpNGCAw==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [96d46e32-0001-0006-5008-fca3ac000000] + x-ms-request-id: [cb5385ba-0001-00dd-1a02-fd077a000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_get_blob.test_get_blob_to_stream_non_parallel.yaml b/tests/recordings/test_get_blob.test_get_blob_to_stream_non_parallel.yaml index 42dcbd43..16390888 100644 --- a/tests/recordings/test_get_blob.test_get_blob_to_stream_non_parallel.yaml +++ b/tests/recordings/test_get_blob.test_get_blob_to_stream_non_parallel.yaml @@ -3,9 +3,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e17f8d92-67fb-11e7-a094-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [19ff954a-68f6-11e7-9769-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:46 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer75b146c/byteblob75b146c @@ -1167,15 +1167,15 @@ interactions: Content-Length: ['65541'] Content-MD5: [ijkY/R7nQOL1D3SjBi33Cg==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:36 GMT'] - ETag: ['"0x8D4CA1FC5B96087"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:47 GMT'] + ETag: ['"0x8D4CB19FEB3A40A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e5ce0da4-0001-00d5-7208-fc1c09000000] + x-ms-request-id: [07a473cc-0001-00d4-2202-fd1df4000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_get_blob.test_get_blob_to_stream_small.yaml b/tests/recordings/test_get_blob.test_get_blob_to_stream_small.yaml index 6755bccc..3ecf5d52 100644 --- a/tests/recordings/test_get_blob.test_get_blob_to_stream_small.yaml +++ b/tests/recordings/test_get_blob.test_get_blob_to_stream_small.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e2075146-67fb-11e7-b0e6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:38 GMT'] + x-ms-client-request-id: [1a9cd4fe-68f6-11e7-8b00-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer8101118e/blob8101118e @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [h1kddoclEro0vOLjkQPIlw==] - Date: ['Thu, 13 Jul 2017 18:48:38 GMT'] - ETag: ['"0x8D4CA1FC6583005"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:46 GMT'] + ETag: ['"0x8D4CB19FF664C23"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fc19140e-0001-006b-6b08-fc0982000000] + x-ms-request-id: [5dfbedfb-0001-012e-7302-fd9246000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -46,9 +46,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e21dec6c-67fb-11e7-825b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [1ab12f1c-68f6-11e7-bbbc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:47 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -79,16 +79,16 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:38 GMT'] - ETag: ['"0x8D4CA1FC6583005"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:46 GMT'] + ETag: ['"0x8D4CB19FF664C23"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [h1kddoclEro0vOLjkQPIlw==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [fc19141c-0001-006b-7508-fc0982000000] + x-ms-request-id: [5dfbee09-0001-012e-8002-fd9246000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_get_blob.test_get_blob_to_text_non_parallel.yaml b/tests/recordings/test_get_blob.test_get_blob_to_text_non_parallel.yaml index e38b7817..102521e4 100644 --- a/tests/recordings/test_get_blob.test_get_blob_to_text_non_parallel.yaml +++ b/tests/recordings/test_get_blob.test_get_blob_to_text_non_parallel.yaml @@ -834,10 +834,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['45314'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e31cdf1a-67fb-11e7-9ebb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:40 GMT'] + x-ms-client-request-id: [1b927346-68f6-11e7-97ab-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:49 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerdf6413a5/blobdf6413a5 @@ -845,12 +845,12 @@ interactions: body: {string: ''} headers: Content-MD5: [710pnQh4/PhvUCCs431F6A==] - Date: ['Thu, 13 Jul 2017 18:48:39 GMT'] - ETag: ['"0x8D4CA1FC7771D8C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:49 GMT'] + ETag: ['"0x8D4CB1A00694616"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [47a66a1f-0001-0018-5608-fc7941000000] + x-ms-request-id: [11ae5ea1-0001-0125-1702-fd8a32000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -858,9 +858,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e33cd914-67fb-11e7-9673-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:40 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [1bb4a452-68f6-11e7-809c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:49 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerdf6413a5/blobdf6413a5 @@ -1725,15 +1725,15 @@ interactions: Content-Length: ['45314'] Content-MD5: [710pnQh4/PhvUCCs431F6A==] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:39 GMT'] - ETag: ['"0x8D4CA1FC7771D8C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:49 GMT'] + ETag: ['"0x8D4CB1A00694616"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:50 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [47a66a53-0001-0018-8008-fc7941000000] + x-ms-request-id: [11ae5ece-0001-0125-3e02-fd8a32000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_get_blob.test_get_blob_to_text_small.yaml b/tests/recordings/test_get_blob.test_get_blob_to_text_small.yaml index 63becea1..30cf0b11 100644 --- a/tests/recordings/test_get_blob.test_get_blob_to_text_small.yaml +++ b/tests/recordings/test_get_blob.test_get_blob_to_text_small.yaml @@ -34,10 +34,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1556'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e3b7d2f4-67fb-11e7-8283-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:41 GMT'] + x-ms-client-request-id: [1c28d390-68f6-11e7-8ea1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer5e8a10c7/blob5e8a10c7 @@ -45,12 +45,12 @@ interactions: body: {string: ''} headers: Content-MD5: [fOjM5CEVNi5OEiSOiLB+2A==] - Date: ['Thu, 13 Jul 2017 18:48:40 GMT'] - ETag: ['"0x8D4CA1FC8063295"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:50 GMT'] + ETag: ['"0x8D4CB1A00F23E81"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5ec1ca40-0001-00fb-3d08-fc9cce000000] + x-ms-request-id: [6ced950f-0001-0018-6702-fd7941000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -58,9 +58,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e3cfc468-67fb-11e7-9479-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:41 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [1c3db5b4-68f6-11e7-89a7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:50 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -103,16 +103,16 @@ interactions: Content-Length: ['1556'] Content-Range: [bytes 0-1555/1556] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:40 GMT'] - ETag: ['"0x8D4CA1FC8063295"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:50 GMT'] + ETag: ['"0x8D4CB1A00F23E81"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [fOjM5CEVNi5OEiSOiLB+2A==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [5ec1ca51-0001-00fb-4a08-fc9cce000000] + x-ms-request-id: [6ced9533-0001-0018-0902-fd7941000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_get_blob.test_get_blob_to_text_with_encoding.yaml b/tests/recordings/test_get_blob.test_get_blob_to_text_with_encoding.yaml index 1ee72466..72da2fe3 100644 --- a/tests/recordings/test_get_blob.test_get_blob_to_text_with_encoding.yaml +++ b/tests/recordings/test_get_blob.test_get_blob_to_text_with_encoding.yaml @@ -5,10 +5,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['36'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e427f6c6-67fb-11e7-825f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:42 GMT'] + x-ms-client-request-id: [1c9ce302-68f6-11e7-9e16-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerf3af1410/blobf3af1410 @@ -16,12 +16,12 @@ interactions: body: {string: ''} headers: Content-MD5: [O7c5HRnUhbM5yD4T1wnm/w==] - Date: ['Thu, 13 Jul 2017 18:48:41 GMT'] - ETag: ['"0x8D4CA1FC8766F0D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:52 GMT'] + ETag: ['"0x8D4CB1A016847B2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8b6fea81-0001-000b-6d08-fc4ca0000000] + x-ms-request-id: [03967d50-0001-0073-1d02-fd2417000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e43d0a46-67fb-11e7-89bb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [1cb36e24-68f6-11e7-9db2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:51 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -45,16 +45,16 @@ interactions: Content-Length: ['36'] Content-Range: [bytes 0-35/36] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:41 GMT'] - ETag: ['"0x8D4CA1FC8766F0D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:52 GMT'] + ETag: ['"0x8D4CB1A016847B2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [O7c5HRnUhbM5yD4T1wnm/w==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [8b6feaa4-0001-000b-0908-fc4ca0000000] + x-ms-request-id: [03967d5b-0001-0073-2702-fd2417000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_get_blob.test_get_blob_to_text_with_encoding_and_progress.yaml b/tests/recordings/test_get_blob.test_get_blob_to_text_with_encoding_and_progress.yaml index f355315c..3b46d1ce 100644 --- a/tests/recordings/test_get_blob.test_get_blob_to_text_with_encoding_and_progress.yaml +++ b/tests/recordings/test_get_blob.test_get_blob_to_text_with_encoding_and_progress.yaml @@ -5,10 +5,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['36'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e497d168-67fb-11e7-9c02-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:42 GMT'] + x-ms-client-request-id: [1d09d7fa-68f6-11e7-9dd7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:51 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer1d801976/blob1d801976 @@ -16,12 +16,12 @@ interactions: body: {string: ''} headers: Content-MD5: [O7c5HRnUhbM5yD4T1wnm/w==] - Date: ['Thu, 13 Jul 2017 18:48:42 GMT'] - ETag: ['"0x8D4CA1FC8E5C105"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:51 GMT'] + ETag: ['"0x8D4CB1A01D3A07F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [80178dbf-0001-0108-6708-fc09f2000000] + x-ms-request-id: [1a9c358a-0001-00cd-2602-fd319c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e4abcaee-67fb-11e7-ad30-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [1d1e3ef4-68f6-11e7-bb3b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:51 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -45,16 +45,16 @@ interactions: Content-Length: ['36'] Content-Range: [bytes 0-35/36] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:42 GMT'] - ETag: ['"0x8D4CA1FC8E5C105"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:51 GMT'] + ETag: ['"0x8D4CB1A01D3A07F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [O7c5HRnUhbM5yD4T1wnm/w==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [80178dcf-0001-0108-7308-fc09f2000000] + x-ms-request-id: [1a9c3596-0001-00cd-3102-fd319c000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_get_blob.test_ranged_get_blob_to_path_non_parallel.yaml b/tests/recordings/test_get_blob.test_ranged_get_blob_to_path_non_parallel.yaml index 2b85a66a..2d28471d 100644 --- a/tests/recordings/test_get_blob.test_ranged_get_blob_to_path_non_parallel.yaml +++ b/tests/recordings/test_get_blob.test_ranged_get_blob_to_path_non_parallel.yaml @@ -3,9 +3,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e663ff00-67fb-11e7-a271-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [1fbdd028-68f6-11e7-8f2d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:56 GMT'] x-ms-range: [bytes=1-3] x-ms-version: ['2017-04-17'] method: GET @@ -19,16 +19,16 @@ interactions: Content-Length: ['3'] Content-Range: [bytes 1-3/65541] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:45 GMT'] - ETag: ['"0x8D4CA1FCA9C9EE0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:56 GMT'] + ETag: ['"0x8D4CB1A04715CAF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:57 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [a31sAg4YoCkCK0jQs08Fag==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [23ab077c-0001-0047-7808-fc8bbf000000] + x-ms-request-id: [21bdc024-0001-0026-4702-fdcf60000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_get_blob.test_ranged_get_blob_to_path_small.yaml b/tests/recordings/test_get_blob.test_ranged_get_blob_to_path_small.yaml index d9ef7671..d67e6923 100644 --- a/tests/recordings/test_get_blob.test_ranged_get_blob_to_path_small.yaml +++ b/tests/recordings/test_get_blob.test_ranged_get_blob_to_path_small.yaml @@ -3,9 +3,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e6e83fc2-67fb-11e7-858d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [20236a9e-68f6-11e7-8b21-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:56 GMT'] x-ms-range: [bytes=1-4] x-ms-version: ['2017-04-17'] method: GET @@ -19,16 +19,16 @@ interactions: Content-Length: ['4'] Content-Range: [bytes 1-4/65541] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:46 GMT'] - ETag: ['"0x8D4CA1FCB223C3C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:56 GMT'] + ETag: ['"0x8D4CB1A04D847DB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:57 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [3En+dEzpQ3+onYjY7YJKww==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [c411dafe-0001-0097-1008-fc371d000000] + x-ms-request-id: [60ae8f7d-0001-0120-3702-fd7e4d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_get_blob.test_unicode_get_blob_binary_data.yaml b/tests/recordings/test_get_blob.test_unicode_get_blob_binary_data.yaml index dbd3d31e..033f037f 100644 --- a/tests/recordings/test_get_blob.test_unicode_get_blob_binary_data.yaml +++ b/tests/recordings/test_get_blob.test_unicode_get_blob_binary_data.yaml @@ -22,10 +22,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e7a9a900-67fb-11e7-be80-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:47 GMT'] + x-ms-client-request-id: [20cf5d62-68f6-11e7-884b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:57 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerca29130c/blobca29130c @@ -33,12 +33,12 @@ interactions: body: {string: ''} headers: Content-MD5: [suqff86oMaSmOyE/QaiFWw==] - Date: ['Thu, 13 Jul 2017 18:48:46 GMT'] - ETag: ['"0x8D4CA1FCBFEBCD6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:58 GMT'] + ETag: ['"0x8D4CB1A059A5C3D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:58 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e6261e73-0001-002d-0c08-fcd714000000] + x-ms-request-id: [a0abc7f6-0001-0135-4a02-fdbcd4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -46,9 +46,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e7c4eb86-67fb-11e7-8e4f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [20e55174-68f6-11e7-be08-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:58 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -79,16 +79,16 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:46 GMT'] - ETag: ['"0x8D4CA1FCBFEBCD6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:58 GMT'] + ETag: ['"0x8D4CB1A059A5C3D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:58 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [suqff86oMaSmOyE/QaiFWw==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e6261e85-0001-002d-1c08-fcd714000000] + x-ms-request-id: [a0abc7fd-0001-0135-5002-fdbcd4000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_get_blob.test_unicode_get_blob_unicode_data.yaml b/tests/recordings/test_get_blob.test_unicode_get_blob_unicode_data.yaml index 67fcb002..e64b26fb 100644 --- a/tests/recordings/test_get_blob.test_unicode_get_blob_unicode_data.yaml +++ b/tests/recordings/test_get_blob.test_unicode_get_blob_unicode_data.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['26'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-type: [BlockBlob] - x-ms-client-request-id: [e82a7bde-67fb-11e7-9adf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:48 GMT'] + x-ms-client-request-id: [21460654-68f6-11e7-aa3d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerddea136e/blobddea136e @@ -15,12 +15,12 @@ interactions: body: {string: ''} headers: Content-MD5: [aFkhSeVIRnJoB2MmKjC25w==] - Date: ['Thu, 13 Jul 2017 18:48:48 GMT'] - ETag: ['"0x8D4CA1FCC79F7EB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:59 GMT'] + ETag: ['"0x8D4CB1A060FC90D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:59 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ca88e9dd-0001-0091-5008-fcc065000000] + x-ms-request-id: [2b78566f-0001-0050-6402-fd4bdc000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [e8404838-67fb-11e7-afb6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:48:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [215a8662-68f6-11e7-b93e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:39:58 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -42,16 +42,16 @@ interactions: Content-Length: ['26'] Content-Range: [bytes 0-25/26] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:48:48 GMT'] - ETag: ['"0x8D4CA1FCC79F7EB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:48:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:39:59 GMT'] + ETag: ['"0x8D4CB1A060FC90D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:39:59 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-content-md5: [aFkhSeVIRnJoB2MmKjC25w==] x-ms-blob-type: [BlockBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [ca88e9fd-0001-0091-6e08-fcc065000000] + x-ms-request-id: [2b785691-0001-0050-0502-fd4bdc000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_get_file.test_get_file_exact_get_size.yaml b/tests/recordings/test_get_file.test_get_file_exact_get_size.yaml index 3b8e7fc3..6a9ed396 100644 --- a/tests/recordings/test_get_file.test_get_file_exact_get_size.yaml +++ b/tests/recordings/test_get_file.test_get_file_exact_get_size.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f279768a-67fb-11e7-bcce-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2227384a-68f6-11e7-ab2b-b8e8564491f6] x-ms-content-length: ['32768'] - x-ms-date: ['Thu, 13 Jul 2017 18:49:06 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:40:00 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:05 GMT'] - ETag: ['"0x8D4CA1FD68B5170"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:00 GMT'] + ETag: ['"0x8D4CB1A06CCE00B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:00 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e43c4296-001a-0012-7a08-fc60c8000000] + x-ms-request-id: [d4d6180e-001a-0060-3202-fd11f6000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -604,9 +604,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['32768'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f28ea794-67fb-11e7-bbda-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [223b5c3a-68f6-11e7-9cc9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:00 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -616,12 +616,12 @@ interactions: body: {string: ''} headers: Content-MD5: [tld6IvX2HbEVCAnj4PukKg==] - Date: ['Thu, 13 Jul 2017 18:49:05 GMT'] - ETag: ['"0x8D4CA1FD6AF0C9E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:00 GMT'] + ETag: ['"0x8D4CB1A06DBD6DF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:01 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e43c4298-001a-0012-7b08-fc60c8000000] + x-ms-request-id: [d4d61810-001a-0060-3302-fd11f6000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -629,9 +629,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f2b2642c-67fb-11e7-9337-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [224a3d40-68f6-11e7-963a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:00 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -1219,11 +1219,11 @@ interactions: Content-Length: ['32768'] Content-Range: [bytes 0-32767/32768] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:05 GMT'] - ETag: ['"0x8D4CA1FD6AF0C9E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:00 GMT'] + ETag: ['"0x8D4CB1A06DBD6DF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:01 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [e43c429a-001a-0012-7c08-fc60c8000000] + x-ms-request-id: [d4d61811-001a-0060-3402-fd11f6000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_get_file_no_content.yaml b/tests/recordings/test_get_file.test_get_file_no_content.yaml index 68d766a4..23cb99ec 100644 --- a/tests/recordings/test_get_file.test_get_file_no_content.yaml +++ b/tests/recordings/test_get_file.test_get_file_no_content.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f356c300-67fb-11e7-b749-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [22cc7ee8-68f6-11e7-ade9-b8e8564491f6] x-ms-content-length: ['0'] - x-ms-date: ['Thu, 13 Jul 2017 18:49:07 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:40:01 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:06 GMT'] - ETag: ['"0x8D4CA1FD769300D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:02 GMT'] + ETag: ['"0x8D4CB1A0773294E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:02 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ad617fb4-001a-00b2-0f08-fcafae000000] + x-ms-request-id: [a26dca66-001a-0085-3902-fd0301000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,24 +28,24 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f36c71a8-67fb-11e7-91c4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [22e18146-68f6-11e7-a62e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:01 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utshare2d0b0f81/utdir2d0b0f81/file2d0b0f81 response: body: {string: "\uFEFFInvalidRangeThe\ - \ range specified is invalid for the current size of the resource.\nRequestId:ad617fb6-001a-00b2-1008-fcafae000000\n\ - Time:2017-07-13T18:49:07.4891386Z"} + \ range specified is invalid for the current size of the resource.\nRequestId:a26dca68-001a-0085-3a02-fd0301000000\n\ + Time:2017-07-15T00:40:02.9000370Z"} headers: Content-Length: ['249'] Content-Range: [bytes */0] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:02 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [ad617fb6-001a-00b2-1008-fcafae000000] + x-ms-request-id: [a26dca68-001a-0085-3a02-fd0301000000] x-ms-version: ['2017-04-17'] status: {code: 416, message: The range specified is invalid for the current size of the resource.} @@ -53,9 +53,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f3767768-67fb-11e7-bc2b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [22e6dac6-68f6-11e7-aacb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:01 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utshare2d0b0f81/utdir2d0b0f81/file2d0b0f81 @@ -65,11 +65,11 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['0'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:07 GMT'] - ETag: ['"0x8D4CA1FD769300D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:02 GMT'] + ETag: ['"0x8D4CB1A0773294E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:02 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [ad617fb7-001a-00b2-1108-fcafae000000] + x-ms-request-id: [a26dca69-001a-0085-3b02-fd0301000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_get_file_properties_server_encryption.yaml b/tests/recordings/test_get_file.test_get_file_properties_server_encryption.yaml index ea48b9f0..03384b90 100644 --- a/tests/recordings/test_get_file.test_get_file_properties_server_encryption.yaml +++ b/tests/recordings/test_get_file.test_get_file_properties_server_encryption.yaml @@ -3,9 +3,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f4895bde-67fb-11e7-ba76-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [240fd3ba-68f6-11e7-b960-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:03 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.file.core.windows.net/utshare8e471737/utdir8e471737/bytefile8e471737 @@ -14,11 +14,11 @@ interactions: headers: Content-Length: ['65541'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:08 GMT'] - ETag: ['"0x8D4CA1FD883AD9D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:04 GMT'] + ETag: ['"0x8D4CB1A08A0BC83"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:04 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [03da8412-001a-0019-7708-fc78bc000000] + x-ms-request-id: [3e2fe38d-001a-001d-7602-fd8d3e000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_get_file_server_encryption.yaml b/tests/recordings/test_get_file.test_get_file_server_encryption.yaml index 6d4876ca..7cbafa77 100644 --- a/tests/recordings/test_get_file.test_get_file_server_encryption.yaml +++ b/tests/recordings/test_get_file.test_get_file_server_encryption.yaml @@ -3,9 +3,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f5465358-67fb-11e7-b42b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [24e48a10-68f6-11e7-b732-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:04 GMT'] x-ms-range: [bytes=0-1024] x-ms-range-get-content-md5: ['true'] x-ms-version: ['2017-04-17'] @@ -38,11 +38,11 @@ interactions: Content-MD5: [vtO7g/P84AZ4W3l8tHoRnQ==] Content-Range: [bytes 0-1024/65541] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:10 GMT'] - ETag: ['"0x8D4CA1FD941F07E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:04 GMT'] + ETag: ['"0x8D4CB1A096D8083"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:05 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [e3c89be9-001a-00cd-7e08-fc319c000000] + x-ms-request-id: [8f48f58d-001a-00ef-0a02-fd5faa000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_get_file_to_bytes_non_parallel.yaml b/tests/recordings/test_get_file.test_get_file_to_bytes_non_parallel.yaml index 79b774ea..4ba95044 100644 --- a/tests/recordings/test_get_file.test_get_file_to_bytes_non_parallel.yaml +++ b/tests/recordings/test_get_file.test_get_file_to_bytes_non_parallel.yaml @@ -3,9 +3,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f618ab4c-67fb-11e7-a02b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [25b99de8-68f6-11e7-9770-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:06 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utsharef32e1409/utdirf32e1409/bytefilef32e1409 @@ -1166,11 +1166,11 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['65541'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:11 GMT'] - ETag: ['"0x8D4CA1FDA1370C1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:06 GMT'] + ETag: ['"0x8D4CB1A0A498984"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:06 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [3bc4bcd8-001a-0042-1008-fc7fc0000000] + x-ms-request-id: [5c16799d-001a-0081-3802-fdf683000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_get_file_to_bytes_small.yaml b/tests/recordings/test_get_file.test_get_file_to_bytes_small.yaml index 378cf938..9a3e8945 100644 --- a/tests/recordings/test_get_file.test_get_file_to_bytes_small.yaml +++ b/tests/recordings/test_get_file.test_get_file_to_bytes_small.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f6c68a66-67fb-11e7-8f68-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [264d5580-68f6-11e7-a135-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:49:13 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:40:07 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:12 GMT'] - ETag: ['"0x8D4CA1FDAD8B9C5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:07 GMT'] + ETag: ['"0x8D4CB1A0AFDDF18"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:08 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [528973a9-001a-010a-1808-fc0b08000000] + x-ms-request-id: [8465f30c-001a-001a-5f02-fd7bbb000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f6dde81e-67fb-11e7-a34d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [266c4530-68f6-11e7-ae6f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:07 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [EJEd/gZZshAYlTPN746h3w==] - Date: ['Thu, 13 Jul 2017 18:49:12 GMT'] - ETag: ['"0x8D4CA1FDAE1950F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:07 GMT'] + ETag: ['"0x8D4CB1A0B033741"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:08 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [528973ab-001a-010a-1908-fc0b08000000] + x-ms-request-id: [8465f30e-001a-001a-6002-fd7bbb000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -72,9 +72,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f6e52b42-67fb-11e7-ac91-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [267163f8-68f6-11e7-b431-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:07 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -105,11 +105,11 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:12 GMT'] - ETag: ['"0x8D4CA1FDAE1950F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:07 GMT'] + ETag: ['"0x8D4CB1A0B033741"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:08 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [528973ac-001a-010a-1a08-fc0b08000000] + x-ms-request-id: [8465f30f-001a-001a-6102-fd7bbb000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_get_file_to_path_non_parallel.yaml b/tests/recordings/test_get_file.test_get_file_to_path_non_parallel.yaml index 763c1509..73505f5f 100644 --- a/tests/recordings/test_get_file.test_get_file_to_path_non_parallel.yaml +++ b/tests/recordings/test_get_file.test_get_file_to_path_non_parallel.yaml @@ -3,9 +3,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f82f87cc-67fb-11e7-90d2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2781afa8-68f6-11e7-a83e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:09 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utsharede3c138f/utdirde3c138f/bytefilede3c138f @@ -1166,11 +1166,11 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['65541'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:15 GMT'] - ETag: ['"0x8D4CA1FDC2BDDF8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:10 GMT'] + ETag: ['"0x8D4CB1A0C11F23B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:09 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [3c2bec51-001a-00ac-0f08-fc7543000000] + x-ms-request-id: [721b5687-001a-0014-4c02-fd97b0000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_get_file_to_path_small.yaml b/tests/recordings/test_get_file.test_get_file_to_path_small.yaml index ad4508f7..a76b1ef5 100644 --- a/tests/recordings/test_get_file.test_get_file_to_path_small.yaml +++ b/tests/recordings/test_get_file.test_get_file_to_path_small.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f8e278a8-67fb-11e7-a5e6-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2812699e-68f6-11e7-8a04-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:49:16 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:40:10 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:15 GMT'] - ETag: ['"0x8D4CA1FDCF769B7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:11 GMT'] + ETag: ['"0x8D4CB1A0CB9C265"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:10 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f758dcf7-001a-00c0-4908-fcde90000000] + x-ms-request-id: [7c950330-001a-003b-3b02-fd168a000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f8fb1ba8-67fb-11e7-bf78-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [282850f8-68f6-11e7-9ac0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:10 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [sOLFDS3rGcoXO5cdVcDxSw==] - Date: ['Thu, 13 Jul 2017 18:49:15 GMT'] - ETag: ['"0x8D4CA1FDCFDD385"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:11 GMT'] + ETag: ['"0x8D4CB1A0CBF68D1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:10 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f758dcf9-001a-00c0-4a08-fcde90000000] + x-ms-request-id: [7c950332-001a-003b-3c02-fd168a000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -72,9 +72,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [f9016274-67fb-11e7-ac0e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [282d919e-68f6-11e7-96a4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:10 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -105,11 +105,11 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:15 GMT'] - ETag: ['"0x8D4CA1FDCFDD385"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:11 GMT'] + ETag: ['"0x8D4CB1A0CBF68D1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:10 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [f758dcfa-001a-00c0-4b08-fcde90000000] + x-ms-request-id: [7c950333-001a-003b-3d02-fd168a000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_get_file_to_stream_non_parallel.yaml b/tests/recordings/test_get_file.test_get_file_to_stream_non_parallel.yaml index f5d3161d..fd872bc4 100644 --- a/tests/recordings/test_get_file.test_get_file_to_stream_non_parallel.yaml +++ b/tests/recordings/test_get_file.test_get_file_to_stream_non_parallel.yaml @@ -3,9 +3,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [faea3228-67fb-11e7-8eb1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [29ff2866-68f6-11e7-84ce-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:13 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utshare79f146e/utdir79f146e/bytefile79f146e @@ -1166,11 +1166,11 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['65541'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:19 GMT'] - ETag: ['"0x8D4CA1FDEE64E4A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:14 GMT'] + ETag: ['"0x8D4CB1A0E8FE937"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:13 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [de47b9c8-001a-011e-4908-fcc86c000000] + x-ms-request-id: [a26dca72-001a-0085-3d02-fd0301000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_get_file_to_stream_small.yaml b/tests/recordings/test_get_file.test_get_file_to_stream_small.yaml index 660b6959..136c8bd0 100644 --- a/tests/recordings/test_get_file.test_get_file_to_stream_small.yaml +++ b/tests/recordings/test_get_file.test_get_file_to_stream_small.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb7ccda4-67fb-11e7-a9d0-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2a911a0a-68f6-11e7-83c1-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:49:21 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:40:14 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:21 GMT'] - ETag: ['"0x8D4CA1FDF8F57A1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:14 GMT'] + ETag: ['"0x8D4CB1A0F376B2F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:15 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [29fbbe07-001a-0056-5108-fcbca4000000] + x-ms-request-id: [a578e767-001a-00e9-2a02-fda8d2000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb92c974-67fb-11e7-be97-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2aa5f998-68f6-11e7-8091-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:14 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [sopGurSheu91kwn/oNMB2A==] - Date: ['Thu, 13 Jul 2017 18:49:21 GMT'] - ETag: ['"0x8D4CA1FDF952506"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:14 GMT'] + ETag: ['"0x8D4CB1A0F3DADE6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:15 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [29fbbe09-001a-0056-5208-fcbca4000000] + x-ms-request-id: [a578e769-001a-00e9-2b02-fda8d2000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -72,9 +72,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fb98129e-67fb-11e7-bb16-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2aac12d8-68f6-11e7-861d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:14 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -105,11 +105,11 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:21 GMT'] - ETag: ['"0x8D4CA1FDF952506"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:15 GMT'] + ETag: ['"0x8D4CB1A0F3DADE6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:15 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [29fbbe0a-001a-0056-5308-fcbca4000000] + x-ms-request-id: [a578e76a-001a-00e9-2c02-fda8d2000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_get_file_to_text_non_parallel.yaml b/tests/recordings/test_get_file.test_get_file_to_text_non_parallel.yaml index 50bd09f0..98ab3e27 100644 --- a/tests/recordings/test_get_file.test_get_file_to_text_non_parallel.yaml +++ b/tests/recordings/test_get_file.test_get_file_to_text_non_parallel.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fcb7ad88-67fb-11e7-ac66-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2bc23e5e-68f6-11e7-8831-b8e8564491f6] x-ms-content-length: ['45980'] - x-ms-date: ['Thu, 13 Jul 2017 18:49:23 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:40:16 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:22 GMT'] - ETag: ['"0x8D4CA1FE0C88666"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:23 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:16 GMT'] + ETag: ['"0x8D4CB1A106796F0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:17 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3ee6d336-001a-0071-0208-fc26ed000000] + x-ms-request-id: [bfa140e8-001a-009e-6802-fd2d93000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -879,9 +879,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['45980'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fccba362-67fb-11e7-ad29-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2bd5ec1a-68f6-11e7-9fa3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:16 GMT'] x-ms-range: [bytes=0-45979] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -891,12 +891,12 @@ interactions: body: {string: ''} headers: Content-MD5: [0W4T5GClHMNChpqbl3t7sA==] - Date: ['Thu, 13 Jul 2017 18:49:22 GMT'] - ETag: ['"0x8D4CA1FE0D8B5EF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:23 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:16 GMT'] + ETag: ['"0x8D4CB1A107A5F05"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:17 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3ee6d338-001a-0071-0308-fc26ed000000] + x-ms-request-id: [bfa140ea-001a-009e-6902-fd2d93000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -904,9 +904,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fcdbb7d2-67fb-11e7-a835-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2be95806-68f6-11e7-9bcc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:16 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/utsharedfa413a7/utdirdfa413a7/filedfa413a7 @@ -1794,11 +1794,11 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['45980'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:22 GMT'] - ETag: ['"0x8D4CA1FE0D8B5EF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:23 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:16 GMT'] + ETag: ['"0x8D4CB1A107A5F05"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:17 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [3ee6d33a-001a-0071-0408-fc26ed000000] + x-ms-request-id: [bfa140eb-001a-009e-6a02-fd2d93000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_get_file_to_text_small.yaml b/tests/recordings/test_get_file.test_get_file_to_text_small.yaml index ab1c68cb..599e4b68 100644 --- a/tests/recordings/test_get_file.test_get_file_to_text_small.yaml +++ b/tests/recordings/test_get_file.test_get_file_to_text_small.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fd5e410c-67fb-11e7-9f83-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2c6c4494-68f6-11e7-a458-b8e8564491f6] x-ms-content-length: ['1427'] - x-ms-date: ['Thu, 13 Jul 2017 18:49:24 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:40:17 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:23 GMT'] - ETag: ['"0x8D4CA1FE16FE19C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:19 GMT'] + ETag: ['"0x8D4CB1A1111B18A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:18 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [15489b38-001a-00ce-2408-fc329b000000] + x-ms-request-id: [c0ac34c0-001a-00ed-6c02-fd5d50000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -55,9 +55,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1427'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fd734174-67fb-11e7-9281-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:24 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2c803262-68f6-11e7-bfbd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:17 GMT'] x-ms-range: [bytes=0-1426] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -67,12 +67,12 @@ interactions: body: {string: ''} headers: Content-MD5: [xUL/kafW271gyqknqBfptA==] - Date: ['Thu, 13 Jul 2017 18:49:23 GMT'] - ETag: ['"0x8D4CA1FE175AF11"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:20 GMT'] + ETag: ['"0x8D4CB1A1117099D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:18 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [15489b3a-001a-00ce-2508-fc329b000000] + x-ms-request-id: [c0ac34c2-001a-00ed-6d02-fd5d50000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -80,9 +80,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fd789fa2-67fb-11e7-b811-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:24 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2c855506-68f6-11e7-aea8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:17 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -121,11 +121,11 @@ interactions: Content-Length: ['1427'] Content-Range: [bytes 0-1426/1427] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:23 GMT'] - ETag: ['"0x8D4CA1FE175AF11"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:20 GMT'] + ETag: ['"0x8D4CB1A1117099D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:18 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [15489b3b-001a-00ce-2608-fc329b000000] + x-ms-request-id: [c0ac34c3-001a-00ed-6e02-fd5d50000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_get_file_to_text_with_encoding.yaml b/tests/recordings/test_get_file.test_get_file_to_text_with_encoding.yaml index 8258de4d..60788910 100644 --- a/tests/recordings/test_get_file.test_get_file_to_text_with_encoding.yaml +++ b/tests/recordings/test_get_file.test_get_file_to_text_with_encoding.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fddc6078-67fb-11e7-a503-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2cec3046-68f6-11e7-8a48-b8e8564491f6] x-ms-content-length: ['36'] - x-ms-date: ['Thu, 13 Jul 2017 18:49:25 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:40:18 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:24 GMT'] - ETag: ['"0x8D4CA1FE1ECC9BD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:18 GMT'] + ETag: ['"0x8D4CB1A1191F540"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:19 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [835de1a5-001a-0006-4508-fca3ac000000] + x-ms-request-id: [c539795a-001a-000a-7b02-fd4d5d000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -30,9 +30,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['36'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fdeff70a-67fb-11e7-b781-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2d00da78-68f6-11e7-a469-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:18 GMT'] x-ms-range: [bytes=0-35] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -42,12 +42,12 @@ interactions: body: {string: ''} headers: Content-MD5: [O7c5HRnUhbM5yD4T1wnm/w==] - Date: ['Thu, 13 Jul 2017 18:49:24 GMT'] - ETag: ['"0x8D4CA1FE1F248FB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:18 GMT'] + ETag: ['"0x8D4CB1A11985F0E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:19 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [835de1a7-001a-0006-4608-fca3ac000000] + x-ms-request-id: [c539795b-001a-000a-7c02-fd4d5d000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -55,9 +55,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fdf57c34-67fb-11e7-b17f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2d06e118-68f6-11e7-ad70-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:18 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -71,11 +71,11 @@ interactions: Content-Length: ['36'] Content-Range: [bytes 0-35/36] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:25 GMT'] - ETag: ['"0x8D4CA1FE1F248FB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:24 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:18 GMT'] + ETag: ['"0x8D4CB1A11985F0E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:19 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [835de1a8-001a-0006-4708-fca3ac000000] + x-ms-request-id: [c539795c-001a-000a-7d02-fd4d5d000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_get_file_to_text_with_encoding_and_progress.yaml b/tests/recordings/test_get_file.test_get_file_to_text_with_encoding_and_progress.yaml index 4f1a82aa..044ac383 100644 --- a/tests/recordings/test_get_file.test_get_file_to_text_with_encoding_and_progress.yaml +++ b/tests/recordings/test_get_file.test_get_file_to_text_with_encoding_and_progress.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fe823bf6-67fb-11e7-8bf4-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2d6a18e4-68f6-11e7-bcd8-b8e8564491f6] x-ms-content-length: ['36'] - x-ms-date: ['Thu, 13 Jul 2017 18:49:26 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:40:19 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:25 GMT'] - ETag: ['"0x8D4CA1FE294E873"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:20 GMT'] + ETag: ['"0x8D4CB1A12128739"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:19 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0bb41ee2-001a-0000-1c08-fc54d4000000] + x-ms-request-id: [f7d9ec39-001a-0121-1002-fd7fb0000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -30,9 +30,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['36'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fe98894c-67fb-11e7-bd60-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2d833842-68f6-11e7-bf31-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:19 GMT'] x-ms-range: [bytes=0-35] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -42,12 +42,12 @@ interactions: body: {string: ''} headers: Content-MD5: [O7c5HRnUhbM5yD4T1wnm/w==] - Date: ['Thu, 13 Jul 2017 18:49:25 GMT'] - ETag: ['"0x8D4CA1FE29B5246"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:20 GMT'] + ETag: ['"0x8D4CB1A121A9EFD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:19 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0bb41ee4-001a-0000-1d08-fc54d4000000] + x-ms-request-id: [f7d9ec3b-001a-0121-1102-fd7fb0000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -55,9 +55,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [fe9e769a-67fb-11e7-a35b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2d897734-68f6-11e7-978c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:19 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -71,11 +71,11 @@ interactions: Content-Length: ['36'] Content-Range: [bytes 0-35/36] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:25 GMT'] - ETag: ['"0x8D4CA1FE29B5246"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:20 GMT'] + ETag: ['"0x8D4CB1A121A9EFD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:19 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [0bb41ee5-001a-0000-1e08-fc54d4000000] + x-ms-request-id: [f7d9ec3d-001a-0121-1202-fd7fb0000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_ranged_get_file_to_path_non_parallel.yaml b/tests/recordings/test_get_file.test_ranged_get_file_to_path_non_parallel.yaml index ccd8976c..74a6fb96 100644 --- a/tests/recordings/test_get_file.test_ranged_get_file_to_path_non_parallel.yaml +++ b/tests/recordings/test_get_file.test_ranged_get_file_to_path_non_parallel.yaml @@ -3,9 +3,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [00ddfeb4-67fc-11e7-ba67-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:30 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2f8e3346-68f6-11e7-bbbc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:22 GMT'] x-ms-range: [bytes=1-3] x-ms-version: ['2017-04-17'] method: GET @@ -19,11 +19,11 @@ interactions: Content-Length: ['3'] Content-Range: [bytes 1-3/65541] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:29 GMT'] - ETag: ['"0x8D4CA1FE4D6B736"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:29 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:23 GMT'] + ETag: ['"0x8D4CB1A141E46B7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:23 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [846444e8-001a-001a-3308-fc7bbb000000] + x-ms-request-id: [ba6c7e4e-001a-00ea-4402-fdabd5000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_ranged_get_file_to_path_small.yaml b/tests/recordings/test_get_file.test_ranged_get_file_to_path_small.yaml index b51646fa..13911f42 100644 --- a/tests/recordings/test_get_file.test_ranged_get_file_to_path_small.yaml +++ b/tests/recordings/test_get_file.test_ranged_get_file_to_path_small.yaml @@ -3,9 +3,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [017ef826-67fc-11e7-8248-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [2ffeba68-68f6-11e7-b8c8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:23 GMT'] x-ms-range: [bytes=1-4] x-ms-version: ['2017-04-17'] method: GET @@ -19,11 +19,11 @@ interactions: Content-Length: ['4'] Content-Range: [bytes 1-4/65541] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:30 GMT'] - ETag: ['"0x8D4CA1FE575D399"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:24 GMT'] + ETag: ['"0x8D4CB1A148F6C98"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:24 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [13e3764e-001a-0043-3508-fc7e3d000000] + x-ms-request-id: [02ce3c40-001a-0021-4f02-fd39e5000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_unicode_get_file_binary_data.yaml b/tests/recordings/test_get_file.test_unicode_get_file_binary_data.yaml index 8b6a8e5a..c9f1d0c3 100644 --- a/tests/recordings/test_get_file.test_unicode_get_file_binary_data.yaml +++ b/tests/recordings/test_get_file.test_unicode_get_file_binary_data.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [024c7906-67fc-11e7-b081-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [30c5d03a-68f6-11e7-818f-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:49:32 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:40:24 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:32 GMT'] - ETag: ['"0x8D4CA1FE66037A4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:25 GMT'] + ETag: ['"0x8D4CB1A156C6024"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:25 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7341531d-001a-00a0-2608-fc9bb2000000] + x-ms-request-id: [03dc26db-001a-0019-4302-fd78bc000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0263c294-67fc-11e7-a086-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [30db3f6c-68f6-11e7-ae9e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:24 GMT'] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -59,12 +59,12 @@ interactions: body: {string: ''} headers: Content-MD5: [suqff86oMaSmOyE/QaiFWw==] - Date: ['Thu, 13 Jul 2017 18:49:32 GMT'] - ETag: ['"0x8D4CA1FE6662C42"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:25 GMT'] + ETag: ['"0x8D4CB1A157254B1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:25 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7341531f-001a-00a0-2708-fc9bb2000000] + x-ms-request-id: [03dc26dd-001a-0019-4402-fd78bc000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -72,9 +72,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [026a4e48-67fc-11e7-9904-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [30e0d9f4-68f6-11e7-8f88-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:24 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -105,11 +105,11 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:32 GMT'] - ETag: ['"0x8D4CA1FE6662C42"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:25 GMT'] + ETag: ['"0x8D4CB1A157254B1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:25 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [73415320-001a-00a0-2808-fc9bb2000000] + x-ms-request-id: [03dc26de-001a-0019-4502-fd78bc000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_get_file.test_unicode_get_file_unicode_data.yaml b/tests/recordings/test_get_file.test_unicode_get_file_unicode_data.yaml index a341f673..56cbb772 100644 --- a/tests/recordings/test_get_file.test_unicode_get_file_unicode_data.yaml +++ b/tests/recordings/test_get_file.test_unicode_get_file_unicode_data.yaml @@ -4,10 +4,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [02d1e99a-67fc-11e7-b1de-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3148d3e2-68f6-11e7-9a8f-b8e8564491f6] x-ms-content-length: ['26'] - x-ms-date: ['Thu, 13 Jul 2017 18:49:33 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:40:25 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -15,12 +15,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:33 GMT'] - ETag: ['"0x8D4CA1FE6E29EFF"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:25 GMT'] + ETag: ['"0x8D4CB1A15EEA01B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:26 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [782cc2d0-001a-002f-6208-fcd5ee000000] + x-ms-request-id: [0215a7de-001a-00cc-3c02-fd3061000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['26'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [02e6298c-67fc-11e7-a4ee-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [315d02e8-68f6-11e7-9a42-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:25 GMT'] x-ms-range: [bytes=0-25] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -41,12 +41,12 @@ interactions: body: {string: ''} headers: Content-MD5: [aFkhSeVIRnJoB2MmKjC25w==] - Date: ['Thu, 13 Jul 2017 18:49:33 GMT'] - ETag: ['"0x8D4CA1FE6FA22F7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:25 GMT'] + ETag: ['"0x8D4CB1A15F494A0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:26 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [782cc2d2-001a-002f-6308-fcd5ee000000] + x-ms-request-id: [0215a7e0-001a-00cc-3d02-fd3061000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -54,9 +54,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [02fd1b1a-67fc-11e7-8525-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [31648128-68f6-11e7-94f6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:25 GMT'] x-ms-range: [bytes=0-32767] x-ms-version: ['2017-04-17'] method: GET @@ -68,11 +68,11 @@ interactions: Content-Length: ['26'] Content-Range: [bytes 0-25/26] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:33 GMT'] - ETag: ['"0x8D4CA1FE6FA22F7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:25 GMT'] + ETag: ['"0x8D4CB1A15F494A0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:26 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [782cc2d4-001a-002f-6408-fcd5ee000000] + x-ms-request-id: [0215a7e1-001a-00cc-3e02-fd3061000000] x-ms-server-encrypted: ['false'] x-ms-type: [File] x-ms-version: ['2017-04-17'] diff --git a/tests/recordings/test_page_blob.test_blob_tier_copy_blob.yaml b/tests/recordings/test_page_blob.test_blob_tier_copy_blob.yaml index 99efbcc9..6e16664f 100644 --- a/tests/recordings/test_page_blob.test_blob_tier_copy_blob.yaml +++ b/tests/recordings/test_page_blob.test_blob_tier_copy_blob.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [33b4ec8a-680e-11e7-b128-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [32ddd99e-68f6-11e7-944b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bf30fd2?restype=container @@ -14,11 +14,11 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:45 GMT'] - ETag: ['"0x8D4CA32181AA669"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:28 GMT'] + ETag: ['"0x8D4CB1A178B0E13"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [21578a79-001c-0016-4f1a-fc86ae000000] + x-ms-request-id: [b3836344-001c-0018-6002-fd6aa5000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,12 +26,12 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-access-tier: [P10] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [33d1125c-680e-11e7-bd60-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:46 GMT'] + x-ms-client-request-id: [330127a2-68f6-11e7-92f4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bf30fd2/blob3bf30fd2 @@ -39,11 +39,11 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:45 GMT'] - ETag: ['"0x8D4CA3217EF6570"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:28 GMT'] + ETag: ['"0x8D4CB1A179087C7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [21578a7f-001c-0016-551a-fc86ae000000] + x-ms-request-id: [b3836350-001c-0018-6c02-fd6aa5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -52,11 +52,11 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-access-tier: [P30] - x-ms-client-request-id: [33d669e6-680e-11e7-bd01-b8e8564491f6] + x-ms-client-request-id: [3307283a-68f6-11e7-b129-b8e8564491f6] x-ms-copy-source: ['https://xclientdevpremium2.blob.core.windows.net/utpremiumcontainer3bf30fd2/blob3bf30fd2'] - x-ms-date: ['Thu, 13 Jul 2017 20:59:46 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:40:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bf30fd2/blob1copy @@ -64,22 +64,22 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:45 GMT'] - ETag: ['"0x8D4CA3217F7F281"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:28 GMT'] + ETag: ['"0x8D4CB1A17996310"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-copy-id: [93524225-72e9-43cc-b469-48b29176e163] + x-ms-copy-id: [214f1c87-6919-4890-aaef-53c795087a7c] x-ms-copy-status: [success] - x-ms-request-id: [21578a87-001c-0016-5d1a-fc86ae000000] + x-ms-request-id: [b383635d-001c-0018-7902-fd6aa5000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [33e11440-680e-11e7-9b56-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3312316e-68f6-11e7-84dc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:28 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bf30fd2/blob1copy @@ -89,22 +89,22 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 20:59:45 GMT'] - ETag: ['"0x8D4CA3217F7F281"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:28 GMT'] + ETag: ['"0x8D4CB1A17996310"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-access-tier: [P30] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] - x-ms-copy-completion-time: ['Thu, 13 Jul 2017 20:59:46 GMT'] - x-ms-copy-id: [93524225-72e9-43cc-b469-48b29176e163] + x-ms-copy-completion-time: ['Sat, 15 Jul 2017 00:40:29 GMT'] + x-ms-copy-id: [214f1c87-6919-4890-aaef-53c795087a7c] x-ms-copy-progress: [1024/1024] x-ms-copy-source: ['https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bf30fd2/blob3bf30fd2'] x-ms-copy-status: [success] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [21578a97-001c-0016-6d1a-fc86ae000000] + x-ms-request-id: [b383637f-001c-0018-1b02-fd6aa5000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -113,11 +113,11 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [33e5a69a-680e-11e7-84c7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:46 GMT'] + x-ms-client-request-id: [33171546-68f6-11e7-9135-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bf30fd2/blob3bf30fd2 @@ -125,11 +125,11 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:45 GMT'] - ETag: ['"0x8D4CA321803DB92"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:28 GMT'] + ETag: ['"0x8D4CB1A17A5C176"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [21578a9f-001c-0016-751a-fc86ae000000] + x-ms-request-id: [b3836394-001c-0018-3002-fd6aa5000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -138,11 +138,11 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-access-tier: [P60] - x-ms-client-request-id: [33eaed30-680e-11e7-916d-b8e8564491f6] + x-ms-client-request-id: [331c97ba-68f6-11e7-8b3e-b8e8564491f6] x-ms-copy-source: ['https://xclientdevpremium2.blob.core.windows.net/utpremiumcontainer3bf30fd2/blob3bf30fd2'] - x-ms-date: ['Thu, 13 Jul 2017 20:59:46 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:40:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bf30fd2/blob2copy @@ -150,22 +150,22 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:46 GMT'] - ETag: ['"0x8D4CA32180A6C7F"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:28 GMT'] + ETag: ['"0x8D4CB1A17AD15D0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-copy-id: [1c298a25-d2a3-4608-9ff8-24f951f94640] + x-ms-copy-id: [6a15b38f-5aa5-4568-aa91-631a1d52af70] x-ms-copy-status: [success] - x-ms-request-id: [21578aa5-001c-0016-7b1a-fc86ae000000] + x-ms-request-id: [b38363a1-001c-0018-3d02-fd6aa5000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [33f2050c-680e-11e7-824e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3324a646-68f6-11e7-9bd9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:28 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bf30fd2/blob2copy @@ -175,22 +175,22 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 20:59:46 GMT'] - ETag: ['"0x8D4CA32180A6C7F"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:28 GMT'] + ETag: ['"0x8D4CB1A17AD15D0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-access-tier: [P60] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] - x-ms-copy-completion-time: ['Thu, 13 Jul 2017 20:59:46 GMT'] - x-ms-copy-id: [1c298a25-d2a3-4608-9ff8-24f951f94640] + x-ms-copy-completion-time: ['Sat, 15 Jul 2017 00:40:29 GMT'] + x-ms-copy-id: [6a15b38f-5aa5-4568-aa91-631a1d52af70] x-ms-copy-progress: [1024/1024] x-ms-copy-source: ['https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bf30fd2/blob3bf30fd2'] x-ms-copy-status: [success] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [21578aad-001c-0016-031a-fc86ae000000] + x-ms-request-id: [b38363b1-001c-0018-4d02-fd6aa5000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -199,10 +199,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [33f6b946-680e-11e7-85e4-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [33297806-68f6-11e7-907f-b8e8564491f6] x-ms-copy-source: ['https://xclientdevpremium2.blob.core.windows.net/utpremiumcontainer3bf30fd2/blob3bf30fd2'] - x-ms-date: ['Thu, 13 Jul 2017 20:59:46 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:40:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bf30fd2/blob3copy @@ -210,22 +210,22 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:46 GMT'] - ETag: ['"0x8D4CA3218156B0A"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:28 GMT'] + ETag: ['"0x8D4CB1A17B889A6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-copy-id: [feb07c7c-4bc1-44be-910d-c8fa40554b55] + x-ms-copy-id: [2ef52577-aefc-4911-b89e-c010c4623da9] x-ms-copy-status: [success] - x-ms-request-id: [21578ab2-001c-0016-081a-fc86ae000000] + x-ms-request-id: [b38363bf-001c-0018-5b02-fd6aa5000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [33fc7b18-680e-11e7-86c2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [332fe3ba-68f6-11e7-8648-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:28 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bf30fd2/blob3copy @@ -235,23 +235,23 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 20:59:46 GMT'] - ETag: ['"0x8D4CA3218156B0A"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:28 GMT'] + ETag: ['"0x8D4CB1A17B889A6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-access-tier: [p10] x-ms-access-tier-inferred: ['true'] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] - x-ms-copy-completion-time: ['Thu, 13 Jul 2017 20:59:47 GMT'] - x-ms-copy-id: [feb07c7c-4bc1-44be-910d-c8fa40554b55] + x-ms-copy-completion-time: ['Sat, 15 Jul 2017 00:40:29 GMT'] + x-ms-copy-id: [2ef52577-aefc-4911-b89e-c010c4623da9] x-ms-copy-progress: [1024/1024] x-ms-copy-source: ['https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bf30fd2/blob3bf30fd2'] x-ms-copy-status: [success] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [21578abe-001c-0016-141a-fc86ae000000] + x-ms-request-id: [b38363d1-001c-0018-6d02-fd6aa5000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -260,9 +260,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [3401ac46-680e-11e7-bad5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [33349c5e-68f6-11e7-8990-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:28 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bf30fd2?restype=container @@ -270,9 +270,9 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [21578ac3-001c-0016-191a-fc86ae000000] + x-ms-request-id: [b38363dd-001c-0018-7902-fd6aa5000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_page_blob.test_blob_tier_on_create.yaml b/tests/recordings/test_page_blob.test_blob_tier_on_create.yaml index 93ccc7f8..4a3ff96c 100644 --- a/tests/recordings/test_page_blob.test_blob_tier_on_create.yaml +++ b/tests/recordings/test_page_blob.test_blob_tier_on_create.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [3b0c8236-680e-11e7-87e9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [336c906e-68f6-11e7-8173-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bb30fc9?restype=container @@ -14,11 +14,11 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:58 GMT'] - ETag: ['"0x8D4CA321F3E6BFD"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A180A10E2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [b788f21c-001c-000b-191a-fc5f44000000] + x-ms-request-id: [c0361246-001c-001e-3a02-fd9ddd000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,12 +26,12 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-access-tier: [P4] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [3b20a52c-680e-11e7-8a88-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:58 GMT'] + x-ms-client-request-id: [337f6074-68f6-11e7-a2a8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bb30fc9/blob3bb30fc9 @@ -39,11 +39,11 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:58 GMT'] - ETag: ['"0x8D4CA321F6712D3"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A18101D46"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [b788f22a-001c-000b-271a-fc5f44000000] + x-ms-request-id: [c036124e-001c-001e-4202-fd9ddd000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [3b266f86-680e-11e7-bfa1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3384cf8a-68f6-11e7-b00c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:29 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bb30fc9/blob3bb30fc9 @@ -63,9 +63,9 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 20:59:58 GMT'] - ETag: ['"0x8D4CA321F6712D3"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A18101D46"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-access-tier: [P4] @@ -73,7 +73,7 @@ interactions: x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [b788f23e-001c-000b-3b1a-fc5f44000000] + x-ms-request-id: [c0361254-001c-001e-4802-fd9ddd000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -82,12 +82,12 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-access-tier: [P6] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [3b2bb282-680e-11e7-898b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:58 GMT'] + x-ms-client-request-id: [338a68b4-68f6-11e7-9e5b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bb30fc9/blob3bb30fc9 @@ -95,11 +95,11 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:58 GMT'] - ETag: ['"0x8D4CA321F721172"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A181B1BE1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [b788f24e-001c-000b-4b1a-fc5f44000000] + x-ms-request-id: [c0361259-001c-001e-4d02-fd9ddd000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -126,9 +126,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [3b312abe-680e-11e7-8f81-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [338fd058-68f6-11e7-8373-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:29 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] @@ -139,12 +139,12 @@ interactions: headers: Content-Length: ['0'] Content-MD5: [MiIcoHKJY2DHkXHIuKVB1A==] - Date: ['Thu, 13 Jul 2017 20:59:58 GMT'] - ETag: ['"0x8D4CA321F7790BD"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A18204CFA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [b788f25d-001c-000b-5a1a-fc5f44000000] + x-ms-request-id: [c036125e-001c-001e-5202-fd9ddd000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -152,9 +152,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [3b362e74-680e-11e7-a90f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3394e6b8-68f6-11e7-a78f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:29 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bb30fc9/blob3bb30fc9 @@ -164,9 +164,9 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 20:59:58 GMT'] - ETag: ['"0x8D4CA321F7790BD"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A18204CFA"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-access-tier: [P6] @@ -174,7 +174,7 @@ interactions: x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [b788f26b-001c-000b-681a-fc5f44000000] + x-ms-request-id: [c0361266-001c-001e-5a02-fd9ddd000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -183,12 +183,12 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-access-tier: [P10] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [3b3b1e86-680e-11e7-bed2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:59 GMT'] + x-ms-client-request-id: [3399cea8-68f6-11e7-8bbc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bb30fc9/blob3bb30fc9 @@ -196,11 +196,11 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:58 GMT'] - ETag: ['"0x8D4CA321F817DB8"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A182A8820"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [b788f271-001c-000b-6e1a-fc5f44000000] + x-ms-request-id: [c036126f-001c-001e-6302-fd9ddd000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -227,9 +227,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [3b40561a-680e-11e7-8f41-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [339f06e8-68f6-11e7-921a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:29 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] @@ -240,12 +240,12 @@ interactions: headers: Content-Length: ['0'] Content-MD5: [MiIcoHKJY2DHkXHIuKVB1A==] - Date: ['Thu, 13 Jul 2017 20:59:58 GMT'] - ETag: ['"0x8D4CA321F86D5F1"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A182FB944"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [b788f275-001c-000b-721a-fc5f44000000] + x-ms-request-id: [c036127e-001c-001e-7202-fd9ddd000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -253,9 +253,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [3b459e7a-680e-11e7-9fa8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [33a467a8-68f6-11e7-b203-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:29 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bb30fc9/blob3bb30fc9 @@ -265,9 +265,9 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 20:59:58 GMT'] - ETag: ['"0x8D4CA321F86D5F1"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A182FB944"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-access-tier: [P10] @@ -275,7 +275,7 @@ interactions: x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [b788f27d-001c-000b-7a1a-fc5f44000000] + x-ms-request-id: [c0361282-001c-001e-7602-fd9ddd000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -284,12 +284,12 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-access-tier: [P20] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [3b4a1ad8-680e-11e7-9702-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:59 GMT'] + x-ms-client-request-id: [33a8bcc6-68f6-11e7-9f1d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bb30fc9/blob3bb30fc9 @@ -297,11 +297,11 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:59 GMT'] - ETag: ['"0x8D4CA321F909BD4"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A183930F4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [b788f285-001c-000b-021a-fc5f44000000] + x-ms-request-id: [c036128b-001c-001e-7f02-fd9ddd000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -328,9 +328,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [3b501a14-680e-11e7-a12f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [33ae6946-68f6-11e7-a43f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:29 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] @@ -341,12 +341,12 @@ interactions: headers: Content-Length: ['0'] Content-MD5: [MiIcoHKJY2DHkXHIuKVB1A==] - Date: ['Thu, 13 Jul 2017 20:59:59 GMT'] - ETag: ['"0x8D4CA321F96906B"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A183EFE70"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [b788f28c-001c-000b-091a-fc5f44000000] + x-ms-request-id: [c0361293-001c-001e-0702-fd9ddd000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -354,9 +354,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [3b54f6f6-680e-11e7-851c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [33b32fa6-68f6-11e7-9d56-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:29 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bb30fc9/blob3bb30fc9 @@ -366,9 +366,9 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 20:59:59 GMT'] - ETag: ['"0x8D4CA321F96906B"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A183EFE70"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-access-tier: [P20] @@ -376,7 +376,7 @@ interactions: x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [b788f292-001c-000b-0f1a-fc5f44000000] + x-ms-request-id: [c0361296-001c-001e-0a02-fd9ddd000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -385,9 +385,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [3b5973e8-680e-11e7-bb03-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [33b7ca5c-68f6-11e7-9752-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:29 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer3bb30fc9?restype=container @@ -395,9 +395,9 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [b788f29b-001c-000b-181a-fc5f44000000] + x-ms-request-id: [c036129a-001c-001e-0e02-fd9ddd000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_page_blob.test_blob_tier_set_tier_api.yaml b/tests/recordings/test_page_blob.test_blob_tier_set_tier_api.yaml index 826905a6..6ec96873 100644 --- a/tests/recordings/test_page_blob.test_blob_tier_set_tier_api.yaml +++ b/tests/recordings/test_page_blob.test_blob_tier_set_tier_api.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [3830a286-680e-11e7-a6aa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [33e14382-68f6-11e7-90d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:29 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer6e171111?restype=container @@ -14,11 +14,11 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:52 GMT'] - ETag: ['"0x8D4CA321C1FE4EA"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A1882A2D1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [0023100d-001c-002f-021a-fcc60a000000] + x-ms-request-id: [90017ca8-001c-0069-7c02-fd189c000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,11 +26,11 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [3843035e-680e-11e7-8282-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:54 GMT'] + x-ms-client-request-id: [33f45c1a-68f6-11e7-bfa1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer6e171111/blob6e171111 @@ -38,11 +38,11 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:52 GMT'] - ETag: ['"0x8D4CA321C614E67"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A18832B8C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [00231011-001c-002f-061a-fcc60a000000] + x-ms-request-id: [90017cb6-001c-0069-0a02-fd189c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -50,9 +50,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [38486218-680e-11e7-a5ad-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [33f9e728-68f6-11e7-9f1d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:30 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer6e171111/blob6e171111 @@ -62,9 +62,9 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 20:59:52 GMT'] - ETag: ['"0x8D4CA321C614E67"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A18832B8C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-access-tier: [p10] @@ -73,7 +73,7 @@ interactions: x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [00231017-001c-002f-0c1a-fcc60a000000] + x-ms-request-id: [90017cc9-001c-0069-1d02-fd189c000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -82,10 +82,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-access-tier: [P50] - x-ms-client-request-id: [384cee00-680e-11e7-ab68-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:54 GMT'] + x-ms-client-request-id: [33feb446-68f6-11e7-a204-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer6e171111/blob6e171111?comp=tier @@ -93,18 +93,18 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [0023101d-001c-002f-121a-fcc60a000000] + x-ms-request-id: [90017cd3-001c-0069-2702-fd189c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [3858a1c8-680e-11e7-8d16-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [340aac68-68f6-11e7-a9ab-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:30 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer6e171111/blob6e171111 @@ -114,9 +114,9 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 20:59:52 GMT'] - ETag: ['"0x8D4CA321C614E67"'] - Last-Modified: ['Thu, 13 Jul 2017 20:59:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] + ETag: ['"0x8D4CB1A18832B8C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-access-tier: [P50] @@ -124,7 +124,7 @@ interactions: x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [00231028-001c-002f-1d1a-fcc60a000000] + x-ms-request-id: [90017cf3-001c-0069-4702-fd189c000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -132,24 +132,24 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [385d3648-680e-11e7-bcfa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [340f5418-68f6-11e7-a7c1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:30 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer6e171111?restype=container&comp=list response: body: {string: "\uFEFF\nblob6e171111Thu,\ - \ 13 Jul 2017 20:59:53 GMT0x8D4CA321C614E671024application/octet-stream0PageBlobP50unlockedavailabletrue"} + utpremiumcontainer6e171111\">blob6e171111Sat,\ + \ 15 Jul 2017 00:40:30 GMT0x8D4CB1A18832B8C1024application/octet-stream0PageBlobP50unlockedavailabletrue"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 20:59:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:29 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [0023102f-001c-002f-241a-fcc60a000000] + x-ms-request-id: [90017d08-001c-0069-5c02-fd189c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -157,9 +157,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [38616934-680e-11e7-9058-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 20:59:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [341404d4-68f6-11e7-a582-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:30 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://premiumstoragename.blob.core.windows.net/utpremiumcontainer6e171111?restype=container @@ -167,9 +167,9 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 20:59:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [00231038-001c-002f-2d1a-fcc60a000000] + x-ms-request-id: [90017d18-001c-0069-6c02-fd189c000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_page_blob.test_clear_page.yaml b/tests/recordings/test_page_blob.test_clear_page.yaml index e21a5247..920794b6 100644 --- a/tests/recordings/test_page_blob.test_clear_page.yaml +++ b/tests/recordings/test_page_blob.test_clear_page.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [059bd7ee-67fc-11e7-ad13-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:38 GMT'] + x-ms-client-request-id: [3437f20c-68f6-11e7-bec3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:30 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerbbff0c0b/blobbbff0c0b response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:37 GMT'] - ETag: ['"0x8D4CA1FE9EB5C1D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:30 GMT'] + ETag: ['"0x8D4CB1A1901A368"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [24a00684-0001-00b4-6608-fc58d6000000] + x-ms-request-id: [35d32209-0001-00e2-6202-fdb0a6000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [05b0d786-67fc-11e7-a77e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3450282e-68f6-11e7-9337-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:30 GMT'] x-ms-page-write: [clear] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -40,22 +40,22 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:38 GMT'] - ETag: ['"0x8D4CA1FEA109E80"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:30 GMT'] + ETag: ['"0x8D4CB1A190C2CAC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [24a006e1-0001-00b4-3b08-fc58d6000000] + x-ms-request-id: [35d32221-0001-00e2-7602-fdb0a6000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [05d61a1c-67fc-11e7-81a2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3456fd48-68f6-11e7-9b89-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:30 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -80,16 +80,16 @@ interactions: Content-Length: ['512'] Content-Range: [bytes 0-511/512] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:38 GMT'] - ETag: ['"0x8D4CA1FEA109E80"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:30 GMT'] + ETag: ['"0x8D4CB1A190C2CAC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:31 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [24a006f8-0001-00b4-5008-fc58d6000000] + x-ms-request-id: [35d32237-0001-00e2-0a02-fdb0a6000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_page_blob.test_create_8tb_blob.yaml b/tests/recordings/test_page_blob.test_create_8tb_blob.yaml index 5fc58d77..5c96721c 100644 --- a/tests/recordings/test_page_blob.test_create_8tb_blob.yaml +++ b/tests/recordings/test_page_blob.test_create_8tb_blob.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['8796093022208'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [060f3734-67fc-11e7-a1d0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:38 GMT'] + x-ms-client-request-id: [348b24a6-68f6-11e7-9b88-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerfd2b0de7/blobfd2b0de7 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:37 GMT'] - ETag: ['"0x8D4CA1FEA5D94CB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:31 GMT'] + ETag: ['"0x8D4CB1A19548DAF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5f8b53ea-0001-0065-1808-fce589000000] + x-ms-request-id: [dd902c5c-0001-00c4-2702-fd2b12000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [06230692-67fc-11e7-9bf8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [349f56a6-68f6-11e7-860d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:31 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerfd2b0de7/blobfd2b0de7 @@ -40,16 +40,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['8796093022208'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:37 GMT'] - ETag: ['"0x8D4CA1FEA5D94CB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:31 GMT'] + ETag: ['"0x8D4CB1A19548DAF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [5f8b5401-0001-0065-2608-fce589000000] + x-ms-request-id: [dd902c76-0001-00c4-3b02-fd2b12000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -57,9 +57,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0628260c-67fc-11e7-9175-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [34a46ba8-68f6-11e7-81e6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:31 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainerfd2b0de7/blobfd2b0de7?comp=pagelist @@ -67,14 +67,14 @@ interactions: body: {string: "\uFEFF"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:37 GMT'] - ETag: ['"0x8D4CA1FEA5D94CB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:31 GMT'] + ETag: ['"0x8D4CB1A19548DAF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-blob-content-length: ['8796093022208'] - x-ms-request-id: [5f8b540e-0001-0065-3108-fce589000000] + x-ms-request-id: [dd902c85-0001-00c4-4802-fd2b12000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_page_blob.test_create_blob.yaml b/tests/recordings/test_page_blob.test_create_blob.yaml index 6b25cb84..e9ac1efc 100644 --- a/tests/recordings/test_page_blob.test_create_blob.yaml +++ b/tests/recordings/test_page_blob.test_create_blob.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [065592f6-67fc-11e7-a942-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:39 GMT'] + x-ms-client-request-id: [34d6c31e-68f6-11e7-a04d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:31 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerc8ac0c7a/blobc8ac0c7a response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:39 GMT'] - ETag: ['"0x8D4CA1FEAA4484A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:32 GMT'] + ETag: ['"0x8D4CB1A19A10E2B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cad6b1ff-0001-0001-1508-fc5529000000] + x-ms-request-id: [1093e525-0001-00aa-5102-fd823b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0670bb46-67fc-11e7-bd36-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [34ebded8-68f6-11e7-8920-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:31 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerc8ac0c7a/blobc8ac0c7a @@ -40,16 +40,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:39 GMT'] - ETag: ['"0x8D4CA1FEAA4484A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:32 GMT'] + ETag: ['"0x8D4CB1A19A10E2B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [cad6b211-0001-0001-2208-fc5529000000] + x-ms-request-id: [1093e53e-0001-00aa-6802-fd823b000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_page_blob.test_create_blob_from_bytes_with_index_and_count.yaml b/tests/recordings/test_page_blob.test_create_blob_from_bytes_with_index_and_count.yaml index e6dde8b7..326b1d3a 100644 --- a/tests/recordings/test_page_blob.test_create_blob_from_bytes_with_index_and_count.yaml +++ b/tests/recordings/test_page_blob.test_create_blob_from_bytes_with_index_and_count.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [06e89c2c-67fc-11e7-a3c4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:40 GMT'] + x-ms-client-request-id: [3586ee3a-68f6-11e7-9413-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer32b119bf/blob32b119bf response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:40 GMT'] - ETag: ['"0x8D4CA1FEB364412"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:33 GMT'] + ETag: ['"0x8D4CB1A1A538F4F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0f005202-0001-00f7-7408-fc723f000000] + x-ms-request-id: [73902307-0001-0088-7402-fdec0d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -47,9 +47,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1024'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [06fba218-67fc-11e7-ab21-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:40 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [35a42306-68f6-11e7-bb70-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:32 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-1023] x-ms-version: ['2017-04-17'] @@ -59,13 +59,13 @@ interactions: body: {string: ''} headers: Content-MD5: [atk4HJ+VLBVysdTy+OEECA==] - Date: ['Thu, 13 Jul 2017 18:49:40 GMT'] - ETag: ['"0x8D4CA1FEB3C118F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:33 GMT'] + ETag: ['"0x8D4CB1A1A5F785F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [0f00520b-0001-00f7-7908-fc723f000000] + x-ms-request-id: [7390232e-0001-0088-1802-fdec0d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -73,9 +73,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [07017602-67fc-11e7-9137-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:40 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [35aa1c98-68f6-11e7-a153-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:32 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer32b119bf/blob32b119bf @@ -85,16 +85,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['1024'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:40 GMT'] - ETag: ['"0x8D4CA1FEB3C118F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:33 GMT'] + ETag: ['"0x8D4CB1A1A5F785F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [0f005213-0001-00f7-7f08-fc723f000000] + x-ms-request-id: [73902343-0001-0088-2c02-fdec0d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -102,9 +102,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [070653ca-67fc-11e7-b259-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:40 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [35af7d1e-68f6-11e7-9cda-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:33 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -135,16 +135,16 @@ interactions: Content-Length: ['1024'] Content-Range: [bytes 0-1023/1024] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:41 GMT'] - ETag: ['"0x8D4CA1FEB3C118F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:40 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:33 GMT'] + ETag: ['"0x8D4CB1A1A5F785F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:33 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [0f005219-0001-00f7-0508-fc723f000000] + x-ms-request-id: [73902354-0001-0088-3c02-fdec0d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_page_blob.test_create_blob_with_md5_small.yaml b/tests/recordings/test_page_blob.test_create_blob_with_md5_small.yaml index 0dcb5fc9..02adf2d9 100644 --- a/tests/recordings/test_page_blob.test_create_blob_with_md5_small.yaml +++ b/tests/recordings/test_page_blob.test_create_blob_with_md5_small.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [083e2b1e-67fc-11e7-a412-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:42 GMT'] + x-ms-client-request-id: [373ccf74-68f6-11e7-81ed-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb3e31272/blobb3e31272 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:42 GMT'] - ETag: ['"0x8D4CA1FEC8D6363"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:36 GMT'] + ETag: ['"0x8D4CB1A1C06E721"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3e3c78b3-0001-012d-0a08-fc9141000000] + x-ms-request-id: [c436ae23-0001-0009-5502-fd4e5a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -39,9 +39,9 @@ interactions: Connection: [keep-alive] Content-Length: ['512'] Content-MD5: [ZS24eNewkHV2/VaZ7pk22w==] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0854a2fe-67fc-11e7-a876-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3752101e-68f6-11e7-b32d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:35 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -51,13 +51,13 @@ interactions: body: {string: ''} headers: Content-MD5: [ZS24eNewkHV2/VaZ7pk22w==] - Date: ['Thu, 13 Jul 2017 18:49:42 GMT'] - ETag: ['"0x8D4CA1FEC9469A0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:36 GMT'] + ETag: ['"0x8D4CB1A1C0E1465"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:36 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [3e3c78cb-0001-012d-1f08-fc9141000000] + x-ms-request-id: [c436ae2b-0001-0009-5b02-fd4e5a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_page_blob.test_create_blob_with_metadata.yaml b/tests/recordings/test_page_blob.test_create_blob_with_metadata.yaml index d5789bed..ee4585e4 100644 --- a/tests/recordings/test_page_blob.test_create_blob_with_metadata.yaml +++ b/tests/recordings/test_page_blob.test_create_blob_with_metadata.yaml @@ -4,11 +4,11 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [08871d62-67fc-11e7-8a85-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:43 GMT'] + x-ms-client-request-id: [37851f9a-68f6-11e7-a6ca-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:36 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -17,12 +17,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:43 GMT'] - ETag: ['"0x8D4CA1FECD5C4E8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:36 GMT'] + ETag: ['"0x8D4CB1A1C4E5D99"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4f4adea7-0001-00c9-3808-fcc41e000000] + x-ms-request-id: [1dbf7456-0001-0123-6e02-fd7d4a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -30,24 +30,24 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [089b3412-67fc-11e7-8228-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [37992d9e-68f6-11e7-a7f5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:36 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainera2b71235/bloba2b71235?comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:43 GMT'] - ETag: ['"0x8D4CA1FECD5C4E8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:36 GMT'] + ETag: ['"0x8D4CB1A1C4E5D99"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [4f4adeb8-0001-00c9-4308-fcc41e000000] + x-ms-request-id: [1dbf746a-0001-0123-7e02-fd7d4a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_page_blob.test_create_larger_than_8tb_blob_fail.yaml b/tests/recordings/test_page_blob.test_create_larger_than_8tb_blob_fail.yaml index fb36b585..b47bb2e9 100644 --- a/tests/recordings/test_page_blob.test_create_larger_than_8tb_blob_fail.yaml +++ b/tests/recordings/test_page_blob.test_create_larger_than_8tb_blob_fail.yaml @@ -4,24 +4,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['8796093022209'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [08cafb98-67fc-11e7-8fbe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:43 GMT'] + x-ms-client-request-id: [37c8044a-68f6-11e7-aea5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer2aa214c8/blob2aa214c8 response: body: {string: "\uFEFFInvalidHeaderValueThe\ - \ value for one of the HTTP headers is not in the correct format.\nRequestId:7c2f0ab6-0001-003d-1508-fce1f2000000\n\ - Time:2017-07-13T18:49:43.4205784Zx-ms-blob-content-length8796093022209"} + \ value for one of the HTTP headers is not in the correct format.\nRequestId:d6371f63-0001-0108-5a02-fd09f2000000\n\ + Time:2017-07-15T00:40:37.6859388Zx-ms-blob-content-length8796093022209"} headers: Content-Length: ['343'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:43 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:37 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [7c2f0ab6-0001-003d-1508-fce1f2000000] + x-ms-request-id: [d6371f63-0001-0108-5a02-fd09f2000000] x-ms-version: ['2017-04-17'] status: {code: 400, message: The value for one of the HTTP headers is not in the correct format.} diff --git a/tests/recordings/test_page_blob.test_get_page_ranges_2_pages.yaml b/tests/recordings/test_page_blob.test_get_page_ranges_2_pages.yaml index 8735ad5f..e8dc33c4 100644 --- a/tests/recordings/test_page_blob.test_get_page_ranges_2_pages.yaml +++ b/tests/recordings/test_page_blob.test_get_page_ranges_2_pages.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['2048'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0908a4a2-67fc-11e7-a871-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:43 GMT'] + x-ms-client-request-id: [380f8cf4-68f6-11e7-85ed-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer7c8a1123/blob7c8a1123 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:43 GMT'] - ETag: ['"0x8D4CA1FED58063F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:37 GMT'] + ETag: ['"0x8D4CB1A1CDE5C39"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [61ed18be-0001-00a1-7108-fc9a4f000000] + x-ms-request-id: [0ab4e8ab-0001-004e-1a02-fd9131000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -38,9 +38,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [091dc382-67fc-11e7-91e1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [382978b0-68f6-11e7-a253-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:37 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -50,13 +50,13 @@ interactions: body: {string: ''} headers: Content-MD5: [nY8aKGDZmoUzEiNMKijPTQ==] - Date: ['Thu, 13 Jul 2017 18:49:43 GMT'] - ETag: ['"0x8D4CA1FED5E21EB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:37 GMT'] + ETag: ['"0x8D4CB1A1CE4C609"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [61ed18d3-0001-00a1-0308-fc9a4f000000] + x-ms-request-id: [0ab4e8c2-0001-004e-3002-fd9131000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -74,9 +74,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [09239424-67fc-11e7-b262-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [38303c40-68f6-11e7-8ab2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:37 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=1024-1535] x-ms-version: ['2017-04-17'] @@ -86,13 +86,13 @@ interactions: body: {string: ''} headers: Content-MD5: [nY8aKGDZmoUzEiNMKijPTQ==] - Date: ['Thu, 13 Jul 2017 18:49:43 GMT'] - ETag: ['"0x8D4CA1FED63530A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:37 GMT'] + ETag: ['"0x8D4CB1A1CEAE1A6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [61ed18dd-0001-00a1-0a08-fc9a4f000000] + x-ms-request-id: [0ab4e8e2-0001-004e-4b02-fd9131000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -100,9 +100,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0928bba2-67fc-11e7-b253-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [38358928-68f6-11e7-a627-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:37 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer7c8a1123/blob7c8a1123?comp=pagelist @@ -110,14 +110,14 @@ interactions: body: {string: "\uFEFF051110241535"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:43 GMT'] - ETag: ['"0x8D4CA1FED63530A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:37 GMT'] + ETag: ['"0x8D4CB1A1CEAE1A6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-blob-content-length: ['2048'] - x-ms-request-id: [61ed18f0-0001-00a1-1b08-fc9a4f000000] + x-ms-request-id: [0ab4e8fe-0001-004e-6602-fd9131000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_page_blob.test_get_page_ranges_diff.yaml b/tests/recordings/test_page_blob.test_get_page_ranges_diff.yaml index 8c0b74a2..98721c53 100644 --- a/tests/recordings/test_page_blob.test_get_page_ranges_diff.yaml +++ b/tests/recordings/test_page_blob.test_get_page_ranges_diff.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['2048'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [095797b0-67fc-11e7-89fd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:44 GMT'] + x-ms-client-request-id: [38691114-68f6-11e7-87c4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer4b43101b/blob4b43101b response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:44 GMT'] - ETag: ['"0x8D4CA1FEDA6F8B3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:37 GMT'] + ETag: ['"0x8D4CB1A1D32A656"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9bb45214-0001-0105-7108-fce6fe000000] + x-ms-request-id: [df4da982-0001-005b-2802-fd53a8000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,22 +29,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [096cfc2c-67fc-11e7-9887-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [387dfc82-68f6-11e7-a590-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer4b43101b/blob4b43101b?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:44 GMT'] - ETag: ['"0x8D4CA1FEDA6F8B3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:37 GMT'] + ETag: ['"0x8D4CB1A1D32A656"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9bb45236-0001-0105-1108-fce6fe000000] - x-ms-snapshot: ['2017-07-13T18:49:44.6412620Z'] + x-ms-request-id: [df4da99c-0001-005b-3e02-fd53a8000000] + x-ms-snapshot: ['2017-07-15T00:40:38.5929723Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -79,9 +79,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1536'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0972695a-67fc-11e7-80b9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [38835f62-68f6-11e7-bfd4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:37 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-1535] x-ms-version: ['2017-04-17'] @@ -91,13 +91,13 @@ interactions: body: {string: ''} headers: Content-MD5: [WCpzHcOML8f65+vC5/JJCQ==] - Date: ['Thu, 13 Jul 2017 18:49:44 GMT'] - ETag: ['"0x8D4CA1FEDB2BAC9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:37 GMT'] + ETag: ['"0x8D4CB1A1D3E4138"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [9bb45250-0001-0105-2608-fce6fe000000] + x-ms-request-id: [df4da9ab-0001-005b-4c02-fd53a8000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -106,22 +106,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [09782bba-67fc-11e7-a5fe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [388928b4-68f6-11e7-930b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer4b43101b/blob4b43101b?comp=snapshot response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:44 GMT'] - ETag: ['"0x8D4CA1FEDB2BAC9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:37 GMT'] + ETag: ['"0x8D4CB1A1D3E4138"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9bb45266-0001-0105-3b08-fce6fe000000] - x-ms-snapshot: ['2017-07-13T18:49:44.7143185Z'] + x-ms-request-id: [df4da9be-0001-005b-5e02-fd53a8000000] + x-ms-snapshot: ['2017-07-15T00:40:38.6670251Z'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -129,9 +129,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [097d7658-67fc-11e7-adfd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [388ec60c-68f6-11e7-a843-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:37 GMT'] x-ms-page-write: [clear] x-ms-range: [bytes=512-1023] x-ms-version: ['2017-04-17'] @@ -140,61 +140,61 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:44 GMT'] - ETag: ['"0x8D4CA1FEDBD6B48"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:37 GMT'] + ETag: ['"0x8D4CB1A1D493FC5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [9bb45279-0001-0105-4e08-fce6fe000000] + x-ms-request-id: [df4da9d9-0001-005b-7602-fd53a8000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0982cb88-67fc-11e7-b38f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3893e6a8-68f6-11e7-ac1f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:37 GMT'] x-ms-version: ['2017-04-17'] method: GET - uri: https://storagename.blob.core.windows.net/utcontainer4b43101b/blob4b43101b?comp=pagelist&prevsnapshot=2017-07-13T18%3A49%3A44.6412620Z + uri: https://storagename.blob.core.windows.net/utcontainer4b43101b/blob4b43101b?comp=pagelist&prevsnapshot=2017-07-15T00%3A40%3A38.5929723Z response: body: {string: "\uFEFF0511512102310241535"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:44 GMT'] - ETag: ['"0x8D4CA1FEDBD6B48"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:37 GMT'] + ETag: ['"0x8D4CB1A1D493FC5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-blob-content-length: ['2048'] - x-ms-request-id: [9bb45294-0001-0105-6808-fce6fe000000] + x-ms-request-id: [df4da9e8-0001-005b-0302-fd53a8000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [09a1c682-67fc-11e7-91c4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3899b512-68f6-11e7-b447-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:37 GMT'] x-ms-version: ['2017-04-17'] method: GET - uri: https://storagename.blob.core.windows.net/utcontainer4b43101b/blob4b43101b?comp=pagelist&prevsnapshot=2017-07-13T18%3A49%3A44.7143185Z + uri: https://storagename.blob.core.windows.net/utcontainer4b43101b/blob4b43101b?comp=pagelist&prevsnapshot=2017-07-15T00%3A40%3A38.6670251Z response: body: {string: "\uFEFF5121023"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:45 GMT'] - ETag: ['"0x8D4CA1FEDBD6B48"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:37 GMT'] + ETag: ['"0x8D4CB1A1D493FC5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-blob-content-length: ['2048'] - x-ms-request-id: [9bb45305-0001-0105-5408-fce6fe000000] + x-ms-request-id: [df4da9f3-0001-005b-0c02-fd53a8000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_page_blob.test_get_page_ranges_no_pages.yaml b/tests/recordings/test_page_blob.test_get_page_ranges_no_pages.yaml index 8c708b3b..5366a9a5 100644 --- a/tests/recordings/test_page_blob.test_get_page_ranges_no_pages.yaml +++ b/tests/recordings/test_page_blob.test_get_page_ranges_no_pages.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [09d3cc86-67fc-11e7-a3f2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:45 GMT'] + x-ms-client-request-id: [38ccbed0-68f6-11e7-a590-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer902711ce/blob902711ce response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:44 GMT'] - ETag: ['"0x8D4CA1FEE21BE8A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:38 GMT'] + ETag: ['"0x8D4CB1A1D95720E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [035b78b7-0001-00b5-7a08-fc592b000000] + x-ms-request-id: [f2390897-0001-0130-3702-fd48ab000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -28,9 +28,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [09e72c7a-67fc-11e7-b318-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [38e101cc-68f6-11e7-a55e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:38 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer902711ce/blob902711ce?comp=pagelist @@ -38,14 +38,14 @@ interactions: body: {string: "\uFEFF"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:44 GMT'] - ETag: ['"0x8D4CA1FEE21BE8A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:38 GMT'] + ETag: ['"0x8D4CB1A1D95720E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-blob-content-length: ['512'] - x-ms-request-id: [035b78cf-0001-00b5-1008-fc592b000000] + x-ms-request-id: [f23908a2-0001-0130-3f02-fd48ab000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_page_blob.test_put_page_if_sequence_number_lt_success.yaml b/tests/recordings/test_page_blob.test_put_page_if_sequence_number_lt_success.yaml index a5d39f0a..12a40c0c 100644 --- a/tests/recordings/test_page_blob.test_put_page_if_sequence_number_lt_success.yaml +++ b/tests/recordings/test_page_blob.test_put_page_if_sequence_number_lt_success.yaml @@ -4,24 +4,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-sequence-number: ['10'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0a387e92-67fc-11e7-a141-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:45 GMT'] + x-ms-client-request-id: [3930be58-68f6-11e7-a830-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerb8c517c2/blobb8c517c2 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:45 GMT'] - ETag: ['"0x8D4CA1FEE868724"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:39 GMT'] + ETag: ['"0x8D4CB1A1DFBC0E1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cd227659-0001-0073-5208-fc2417000000] + x-ms-request-id: [9295a435-0001-001d-2602-fd8d3e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -39,9 +39,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0a4bdcba-67fc-11e7-9708-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3946d3f0-68f6-11e7-a6db-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:39 GMT'] x-ms-if-sequence-number-lt: ['11'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] @@ -52,13 +52,13 @@ interactions: body: {string: ''} headers: Content-MD5: [gvy5CWg5jYBIQYTUI2U2jA==] - Date: ['Thu, 13 Jul 2017 18:49:45 GMT'] - ETag: ['"0x8D4CA1FEE8C0683"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:39 GMT'] + ETag: ['"0x8D4CB1A1E033C53"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['10'] - x-ms-request-id: [cd22766a-0001-0073-6008-fc2417000000] + x-ms-request-id: [9295a446-0001-001d-3402-fd8d3e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -66,9 +66,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0a51b83a-67fc-11e7-a0b7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [394e7092-68f6-11e7-ae24-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:39 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -90,16 +90,16 @@ interactions: Content-Length: ['512'] Content-Range: [bytes 0-511/512] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:45 GMT'] - ETag: ['"0x8D4CA1FEE8C0683"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:39 GMT'] + ETag: ['"0x8D4CB1A1E033C53"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['10'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [cd2276a9-0001-0073-1208-fc2417000000] + x-ms-request-id: [9295a457-0001-001d-4002-fd8d3e000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_page_blob.test_put_page_with_lease_id.yaml b/tests/recordings/test_page_blob.test_put_page_with_lease_id.yaml index ef65b62f..acae34f6 100644 --- a/tests/recordings/test_page_blob.test_put_page_with_lease_id.yaml +++ b/tests/recordings/test_page_blob.test_put_page_with_lease_id.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0a8dd126-67fc-11e7-b873-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:46 GMT'] + x-ms-client-request-id: [398a8b74-68f6-11e7-a46f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:39 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer6f75110d/blob6f75110d response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:45 GMT'] - ETag: ['"0x8D4CA1FEEDBE36F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:39 GMT'] + ETag: ['"0x8D4CB1A1E533FE5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [43e95d46-0001-0037-6e08-fcf87b000000] + x-ms-request-id: [cdcdb74a-0001-00de-2202-fd047d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,9 +29,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0aa34902-67fc-11e7-9dd6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [399e495a-68f6-11e7-a3aa-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:39 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['-1'] x-ms-version: ['2017-04-17'] @@ -40,13 +40,13 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:45 GMT'] - ETag: ['"0x8D4CA1FEEDBE36F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:39 GMT'] + ETag: ['"0x8D4CB1A1E533FE5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-lease-id: [b0f00eac-c6b5-465f-8f2b-6b728e59cd7c] - x-ms-request-id: [43e95d60-0001-0037-0508-fcf87b000000] + x-ms-lease-id: [ade5ef53-6f09-4d44-a6c7-80b8ebb49d7b] + x-ms-request-id: [cdcdb757-0001-00de-2d02-fd047d000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -63,10 +63,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0aa9875e-67fc-11e7-964c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:46 GMT'] - x-ms-lease-id: [b0f00eac-c6b5-465f-8f2b-6b728e59cd7c] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [39a43090-68f6-11e7-bd12-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:39 GMT'] + x-ms-lease-id: [ade5ef53-6f09-4d44-a6c7-80b8ebb49d7b] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -76,13 +76,13 @@ interactions: body: {string: ''} headers: Content-MD5: [iq1onYxAiVkYCgi3Z9b5ig==] - Date: ['Thu, 13 Jul 2017 18:49:45 GMT'] - ETag: ['"0x8D4CA1FEEE97A9F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:39 GMT'] + ETag: ['"0x8D4CB1A1E5F01F0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [43e95d73-0001-0037-1708-fcf87b000000] + x-ms-request-id: [cdcdb767-0001-00de-3c02-fd047d000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -90,10 +90,10 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0aaef7a2-67fc-11e7-bcca-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:46 GMT'] - x-ms-lease-id: [b0f00eac-c6b5-465f-8f2b-6b728e59cd7c] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [39a9fd68-68f6-11e7-a2d3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:39 GMT'] + x-ms-lease-id: [ade5ef53-6f09-4d44-a6c7-80b8ebb49d7b] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -115,9 +115,9 @@ interactions: Content-Length: ['512'] Content-Range: [bytes 0-511/512] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:46 GMT'] - ETag: ['"0x8D4CA1FEEE97A9F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:39 GMT'] + ETag: ['"0x8D4CB1A1E5F01F0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] @@ -125,7 +125,7 @@ interactions: x-ms-lease-duration: [infinite] x-ms-lease-state: [leased] x-ms-lease-status: [locked] - x-ms-request-id: [43e95d7e-0001-0037-2108-fcf87b000000] + x-ms-request-id: [cdcdb775-0001-00de-4902-fd047d000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_page_blob.test_resize_blob.yaml b/tests/recordings/test_page_blob.test_resize_blob.yaml index 23f93fd2..9217f697 100644 --- a/tests/recordings/test_page_blob.test_resize_blob.yaml +++ b/tests/recordings/test_page_blob.test_resize_blob.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['1024'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0ade1550-67fc-11e7-8091-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:46 GMT'] + x-ms-client-request-id: [39e4cb5a-68f6-11e7-a4f4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerc9b70c98/blobc9b70c98 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:45 GMT'] - ETag: ['"0x8D4CA1FEF2D6E7B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:40 GMT'] + ETag: ['"0x8D4CB1A1EB0DA90"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e5496a7a-0001-004b-1008-fc654e000000] + x-ms-request-id: [099a479a-0001-00af-3402-fd7644000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,32 +29,32 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] - x-ms-client-request-id: [0af2d54c-67fc-11e7-a24e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:47 GMT'] + x-ms-client-request-id: [39fbe7e2-68f6-11e7-8b98-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerc9b70c98/blobc9b70c98?comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:45 GMT'] - ETag: ['"0x8D4CA1FEF3314E9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:40 GMT'] + ETag: ['"0x8D4CB1A1EB7445C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [e5496a89-0001-004b-1e08-fc654e000000] + x-ms-request-id: [099a47b4-0001-00af-4602-fd7644000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0af950b8-67fc-11e7-a094-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3a0209a4-68f6-11e7-ae76-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:40 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainerc9b70c98/blobc9b70c98 @@ -64,16 +64,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['512'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:45 GMT'] - ETag: ['"0x8D4CA1FEF3314E9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:40 GMT'] + ETag: ['"0x8D4CB1A1EB7445C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [e5496a97-0001-004b-2a08-fc654e000000] + x-ms-request-id: [099a47c4-0001-00af-5202-fd7644000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_page_blob.test_set_sequence_number_blob.yaml b/tests/recordings/test_page_blob.test_set_sequence_number_blob.yaml index 01b51e2a..16a74b1a 100644 --- a/tests/recordings/test_page_blob.test_set_sequence_number_blob.yaml +++ b/tests/recordings/test_page_blob.test_set_sequence_number_blob.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0b26d3b4-67fc-11e7-b1d0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:47 GMT'] + x-ms-client-request-id: [3a3216f8-68f6-11e7-b021-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer938011f2/blob938011f2 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:46 GMT'] - ETag: ['"0x8D4CA1FEF7421FE"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:41 GMT'] + ETag: ['"0x8D4CB1A1EFC2249"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [800622d0-0001-013b-5c08-fc50df000000] + x-ms-request-id: [967f0db7-0001-00a9-4f02-fd813c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -29,10 +29,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-sequence-number: ['6'] - x-ms-client-request-id: [0b3955e6-67fc-11e7-a9f2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:47 GMT'] + x-ms-client-request-id: [3a47621a-68f6-11e7-bac5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:40 GMT'] x-ms-sequence-number-action: [update] x-ms-version: ['2017-04-17'] method: PUT @@ -40,22 +40,22 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:46 GMT'] - ETag: ['"0x8D4CA1FEF79531D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:41 GMT'] + ETag: ['"0x8D4CB1A1F0376AD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['6'] - x-ms-request-id: [800622d9-0001-013b-6308-fc50df000000] + x-ms-request-id: [967f0dd8-0001-00a9-6d02-fd813c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0b3e6d92-67fc-11e7-9fc5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3a4e42d8-68f6-11e7-9a19-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:40 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer938011f2/blob938011f2 @@ -65,16 +65,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['512'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:46 GMT'] - ETag: ['"0x8D4CA1FEF79531D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:41 GMT'] + ETag: ['"0x8D4CB1A1F0376AD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['6'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [800622e9-0001-013b-7008-fc50df000000] + x-ms-request-id: [967f0dfa-0001-00a9-0b02-fd813c000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_page_blob.test_update_8tb_blob_page.yaml b/tests/recordings/test_page_blob.test_update_8tb_blob_page.yaml index f44292b3..4263fe24 100644 --- a/tests/recordings/test_page_blob.test_update_8tb_blob_page.yaml +++ b/tests/recordings/test_page_blob.test_update_8tb_blob_page.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['8796093022208'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0b6bf62c-67fc-11e7-9053-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:47 GMT'] + x-ms-client-request-id: [3a809ae4-68f6-11e7-bdc3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer49de0ff2/blob49de0ff2 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:47 GMT'] - ETag: ['"0x8D4CA1FEFBB98F7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:41 GMT'] + ETag: ['"0x8D4CB1A1F49180E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6bcf9c42-0001-0030-1e08-fc0efe000000] + x-ms-request-id: [bbb190da-0001-011a-6902-fd3dee000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -38,9 +38,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0b818c80-67fc-11e7-940d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3a941bb4-68f6-11e7-8a39-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:41 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=8796093021696-8796093022207] x-ms-version: ['2017-04-17'] @@ -50,13 +50,13 @@ interactions: body: {string: ''} headers: Content-MD5: [lCrI4ci9f4GmU+botcxMrw==] - Date: ['Thu, 13 Jul 2017 18:49:47 GMT'] - ETag: ['"0x8D4CA1FEFC229E9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:41 GMT'] + ETag: ['"0x8D4CB1A1F4EE581"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [6bcf9c53-0001-0030-2d08-fc0efe000000] + x-ms-request-id: [bbb190f1-0001-011a-7c02-fd3dee000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -64,9 +64,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0b875c34-67fc-11e7-ae7a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3a995d86-68f6-11e7-b600-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:41 GMT'] x-ms-version: ['2017-04-17'] method: HEAD uri: https://storagename.blob.core.windows.net/utcontainer49de0ff2/blob49de0ff2 @@ -76,16 +76,16 @@ interactions: Accept-Ranges: [bytes] Content-Length: ['8796093022208'] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:47 GMT'] - ETag: ['"0x8D4CA1FEFC229E9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:41 GMT'] + ETag: ['"0x8D4CB1A1F4EE581"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [6bcf9c57-0001-0030-3008-fc0efe000000] + x-ms-request-id: [bbb19109-0001-011a-1002-fd3dee000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} @@ -93,9 +93,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0b8c82ac-67fc-11e7-a9f6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3a9e051e-68f6-11e7-9344-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:41 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/utcontainer49de0ff2/blob49de0ff2?comp=pagelist @@ -103,23 +103,23 @@ interactions: body: {string: "\uFEFF87960930216968796093022207"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:47 GMT'] - ETag: ['"0x8D4CA1FEFC229E9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:41 GMT'] + ETag: ['"0x8D4CB1A1F4EE581"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] x-ms-blob-content-length: ['8796093022208'] - x-ms-request-id: [6bcf9c61-0001-0030-3a08-fc0efe000000] + x-ms-request-id: [bbb19119-0001-011a-2002-fd3dee000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0b914e86-67fc-11e7-ac66-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3aa2ea5e-68f6-11e7-9835-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:41 GMT'] x-ms-range: [bytes=8796093021696-8796093022207] x-ms-version: ['2017-04-17'] method: GET @@ -141,16 +141,16 @@ interactions: Content-Length: ['512'] Content-Range: [bytes 8796093021696-8796093022207/8796093022208] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:47 GMT'] - ETag: ['"0x8D4CA1FEFC229E9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:41 GMT'] + ETag: ['"0x8D4CB1A1F4EE581"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [6bcf9c6a-0001-0030-4308-fc0efe000000] + x-ms-request-id: [bbb1912c-0001-011a-3302-fd3dee000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_page_blob.test_update_page.yaml b/tests/recordings/test_page_blob.test_update_page.yaml index 1e508ea8..59a9774a 100644 --- a/tests/recordings/test_page_blob.test_update_page.yaml +++ b/tests/recordings/test_page_blob.test_update_page.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0bc0bad8-67fc-11e7-87d9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:48 GMT'] + x-ms-client-request-id: [3ad46b2e-68f6-11e7-a10f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:41 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerc95f0c87/blobc95f0c87 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:47 GMT'] - ETag: ['"0x8D4CA1FF00F957F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:44 GMT'] + ETag: ['"0x8D4CB1A1F9E25AC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [149794f9-0001-0058-5608-fc50af000000] + x-ms-request-id: [173e74d8-0001-00ed-7202-fd5d50000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -38,9 +38,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0bd58a1a-67fc-11e7-bbea-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3ae9bb1e-68f6-11e7-bdaf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:41 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -50,13 +50,13 @@ interactions: body: {string: ''} headers: Content-MD5: [EcJKloh9BijMx5+hJCPDtA==] - Date: ['Thu, 13 Jul 2017 18:49:47 GMT'] - ETag: ['"0x8D4CA1FF015FF6C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:44 GMT'] + ETag: ['"0x8D4CB1A1FA52BCC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [14979510-0001-0058-6608-fc50af000000] + x-ms-request-id: [173e74e2-0001-00ed-7802-fd5d50000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -64,9 +64,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0bdc8270-67fc-11e7-adf6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3af0e894-68f6-11e7-8923-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:41 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -88,16 +88,16 @@ interactions: Content-Length: ['512'] Content-Range: [bytes 0-511/512] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:47 GMT'] - ETag: ['"0x8D4CA1FF015FF6C"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:44 GMT'] + ETag: ['"0x8D4CB1A1FA52BCC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['0'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [14979522-0001-0058-7608-fc50af000000] + x-ms-request-id: [173e74f0-0001-00ed-0502-fd5d50000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_page_blob.test_update_page_fail.yaml b/tests/recordings/test_page_blob.test_update_page_fail.yaml index 0d3afbaa..fb058d42 100644 --- a/tests/recordings/test_page_blob.test_update_page_fail.yaml +++ b/tests/recordings/test_page_blob.test_update_page_fail.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['2048'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0c272dde-67fc-11e7-868c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:49 GMT'] + x-ms-client-request-id: [3b27e088-68f6-11e7-ac5f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerde50e82/blobde50e82 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:48 GMT'] - ETag: ['"0x8D4CA1FF074AC40"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:43 GMT'] + ETag: ['"0x8D4CB1A1FF1D35F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9189b105-0001-010c-6a08-fcfc70000000] + x-ms-request-id: [6596ac3e-0001-0023-3d02-fd3b1f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -38,9 +38,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0c3a560c-67fc-11e7-b3a9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3b3f8b48-68f6-11e7-8589-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:42 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -50,13 +50,13 @@ interactions: body: {string: ''} headers: Content-MD5: [Rg3MsM8Z2B97wN05BaM8rw==] - Date: ['Thu, 13 Jul 2017 18:49:48 GMT'] - ETag: ['"0x8D4CA1FF07AC7EC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:43 GMT'] + ETag: ['"0x8D4CB1A1FFB4B04"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [9189b10e-0001-010c-7108-fcfc70000000] + x-ms-request-id: [6596ac63-0001-0023-5e02-fd3b1f000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_page_blob.test_update_page_if_sequence_number_eq_failure.yaml b/tests/recordings/test_page_blob.test_update_page_if_sequence_number_eq_failure.yaml index e49dbb34..05f5b0f3 100644 --- a/tests/recordings/test_page_blob.test_update_page_if_sequence_number_eq_failure.yaml +++ b/tests/recordings/test_page_blob.test_update_page_if_sequence_number_eq_failure.yaml @@ -4,24 +4,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-sequence-number: ['10'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0c6ba66c-67fc-11e7-b6bd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:49 GMT'] + x-ms-client-request-id: [3b6db1da-68f6-11e7-a8ab-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerff0918d1/blobff0918d1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:49 GMT'] - ETag: ['"0x8D4CA1FF0BB5FC3"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:43 GMT'] + ETag: ['"0x8D4CB1A2036D867"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c3ec6b7d-0001-00bd-1e08-fc4258000000] + x-ms-request-id: [6d70b25f-0001-009f-2c02-fd2c6e000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -39,9 +39,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0c809e6e-67fc-11e7-befb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3b820dc6-68f6-11e7-ab5f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:42 GMT'] x-ms-if-sequence-number-eq: ['9'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] @@ -50,14 +50,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainerff0918d1/blobff0918d1?comp=page response: body: {string: "\uFEFFSequenceNumberConditionNotMetThe\ - \ sequence number condition specified was not met.\nRequestId:c3ec6b8c-0001-00bd-2b08-fc4258000000\n\ - Time:2017-07-13T18:49:49.7920974Z"} + \ sequence number condition specified was not met.\nRequestId:6d70b26d-0001-009f-3602-fd2c6e000000\n\ + Time:2017-07-15T00:40:44.0053443Z"} headers: Content-Length: ['250'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [c3ec6b8c-0001-00bd-2b08-fc4258000000] + x-ms-request-id: [6d70b26d-0001-009f-3602-fd2c6e000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The sequence number condition specified was not met.} version: 1 diff --git a/tests/recordings/test_page_blob.test_update_page_if_sequence_number_eq_success.yaml b/tests/recordings/test_page_blob.test_update_page_if_sequence_number_eq_success.yaml index 04bfbbe5..455d9914 100644 --- a/tests/recordings/test_page_blob.test_update_page_if_sequence_number_eq_success.yaml +++ b/tests/recordings/test_page_blob.test_update_page_if_sequence_number_eq_success.yaml @@ -4,24 +4,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-sequence-number: ['10'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0cbf8aca-67fc-11e7-ac93-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:50 GMT'] + x-ms-client-request-id: [3bb4b59e-68f6-11e7-83c8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerff7a18e2/blobff7a18e2 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:49 GMT'] - ETag: ['"0x8D4CA1FF11354AA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:43 GMT'] + ETag: ['"0x8D4CB1A207D8B70"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [19419285-0001-00d9-5e08-fcf2f8000000] + x-ms-request-id: [4a45cb8e-0001-0099-6c02-fddb16000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -39,9 +39,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0cd91b8c-67fc-11e7-98ff-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3bc85fc2-68f6-11e7-a590-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:43 GMT'] x-ms-if-sequence-number-eq: ['10'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] @@ -52,13 +52,13 @@ interactions: body: {string: ''} headers: Content-MD5: [3+w4DmNz66UXLe4nRvezQg==] - Date: ['Thu, 13 Jul 2017 18:49:49 GMT'] - ETag: ['"0x8D4CA1FF119976A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:44 GMT'] + ETag: ['"0x8D4CB1A2083A716"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['10'] - x-ms-request-id: [19419292-0001-00d9-6908-fcf2f8000000] + x-ms-request-id: [4a45cb9d-0001-0099-7a02-fddb16000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -66,9 +66,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0cdf2efa-67fc-11e7-ac57-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3bce8246-68f6-11e7-a58f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:43 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -90,16 +90,16 @@ interactions: Content-Length: ['512'] Content-Range: [bytes 0-511/512] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:49 GMT'] - ETag: ['"0x8D4CA1FF119976A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:44 GMT'] + ETag: ['"0x8D4CB1A2083A716"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['10'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [194192a8-0001-00d9-7d08-fcf2f8000000] + x-ms-request-id: [4a45cbae-0001-0099-0802-fddb16000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lt_failure.yaml b/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lt_failure.yaml index 85fbc54f..d97b8293 100644 --- a/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lt_failure.yaml +++ b/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lt_failure.yaml @@ -4,24 +4,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-sequence-number: ['10'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0d14ef42-67fc-11e7-aa24-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:50 GMT'] + x-ms-client-request-id: [3c078bd4-68f6-11e7-a065-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainerff6a18db/blobff6a18db response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:49 GMT'] - ETag: ['"0x8D4CA1FF1666699"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:44 GMT'] + ETag: ['"0x8D4CB1A20D46E1C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [06a31800-0001-00ed-2f08-fc5d50000000] + x-ms-request-id: [cc17f0b0-0001-00ce-3802-fd329b000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -39,9 +39,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0d2c1046-67fc-11e7-a2e8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3c38cec6-68f6-11e7-a259-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:43 GMT'] x-ms-if-sequence-number-lt: ['10'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] @@ -50,14 +50,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainerff6a18db/blobff6a18db?comp=page response: body: {string: "\uFEFFSequenceNumberConditionNotMetThe\ - \ sequence number condition specified was not met.\nRequestId:06a31817-0001-00ed-3c08-fc5d50000000\n\ - Time:2017-07-13T18:49:50.1479946Z"} + \ sequence number condition specified was not met.\nRequestId:cc17f0f2-0001-00ce-6e02-fd329b000000\n\ + Time:2017-07-15T00:40:44.7156187Z"} headers: Content-Length: ['250'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [06a31817-0001-00ed-3c08-fc5d50000000] + x-ms-request-id: [cc17f0f2-0001-00ce-6e02-fd329b000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The sequence number condition specified was not met.} version: 1 diff --git a/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lte_failure.yaml b/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lte_failure.yaml index 3a8c376f..077e5f90 100644 --- a/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lte_failure.yaml +++ b/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lte_failure.yaml @@ -4,24 +4,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-sequence-number: ['10'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0d5dad40-67fc-11e7-ad27-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:51 GMT'] + x-ms-client-request-id: [3cc57b76-68f6-11e7-959b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer189a1940/blob189a1940 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:50 GMT'] - ETag: ['"0x8D4CA1FF1AB6C1E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:44 GMT'] + ETag: ['"0x8D4CB1A21AAF8A4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dadac9e2-0001-0101-3708-fc137c000000] + x-ms-request-id: [344d9f11-0001-00e0-1a02-fdb25c000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -39,9 +39,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0d70e130-67fc-11e7-874d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3cfdc3a8-68f6-11e7-8bef-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:45 GMT'] x-ms-if-sequence-number-le: ['9'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] @@ -50,14 +50,14 @@ interactions: uri: https://storagename.blob.core.windows.net/utcontainer189a1940/blob189a1940?comp=page response: body: {string: "\uFEFFSequenceNumberConditionNotMetThe\ - \ sequence number condition specified was not met.\nRequestId:dadac9f1-0001-0101-4508-fc137c000000\n\ - Time:2017-07-13T18:49:51.0767745Z"} + \ sequence number condition specified was not met.\nRequestId:344d9f2a-0001-00e0-3102-fdb25c000000\n\ + Time:2017-07-15T00:40:45.9182333Z"} headers: Content-Length: ['250'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [dadac9f1-0001-0101-4508-fc137c000000] + x-ms-request-id: [344d9f2a-0001-00e0-3102-fdb25c000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: The sequence number condition specified was not met.} version: 1 diff --git a/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lte_success.yaml b/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lte_success.yaml index 70aaed2b..3a1fcfd8 100644 --- a/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lte_success.yaml +++ b/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lte_success.yaml @@ -4,24 +4,24 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-sequence-number: ['10'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0db03bbe-67fc-11e7-82fb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:51 GMT'] + x-ms-client-request-id: [3d7d7078-68f6-11e7-8df7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer190b1951/blob190b1951 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:51 GMT'] - ETag: ['"0x8D4CA1FF1FFDDE0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:46 GMT'] + ETag: ['"0x8D4CB1A226989F0"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8b7067c6-0001-000b-2308-fc4ca0000000] + x-ms-request-id: [d10c933d-0001-008b-1202-fdef0a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -39,9 +39,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['512'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0dc5f5f8-67fc-11e7-8f7c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3dc54a24-68f6-11e7-b144-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:46 GMT'] x-ms-if-sequence-number-le: ['10'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] @@ -52,13 +52,13 @@ interactions: body: {string: ''} headers: Content-MD5: [mAVpk2+AUG9tcq/jUHhWbg==] - Date: ['Thu, 13 Jul 2017 18:49:51 GMT'] - ETag: ['"0x8D4CA1FF205F988"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:47 GMT'] + ETag: ['"0x8D4CB1A22813506"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['10'] - x-ms-request-id: [8b7067e2-0001-000b-3c08-fc4ca0000000] + x-ms-request-id: [d10c93a9-0001-008b-7302-fdef0a000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -66,9 +66,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0dcb5854-67fc-11e7-8e1b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3ddfc298-68f6-11e7-b404-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:46 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-04-17'] method: GET @@ -90,16 +90,16 @@ interactions: Content-Length: ['512'] Content-Range: [bytes 0-511/512] Content-Type: [application/octet-stream] - Date: ['Thu, 13 Jul 2017 18:49:51 GMT'] - ETag: ['"0x8D4CA1FF205F988"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:50 GMT'] + ETag: ['"0x8D4CB1A22813506"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] x-ms-blob-sequence-number: ['10'] x-ms-blob-type: [PageBlob] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] - x-ms-request-id: [8b7067fc-0001-000b-5008-fc4ca0000000] + x-ms-request-id: [d10c941e-0001-008b-6103-fdef0a000000] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 206, message: Partial Content} diff --git a/tests/recordings/test_page_blob.test_update_page_unicode.yaml b/tests/recordings/test_page_blob.test_update_page_unicode.yaml index d96ea6fc..855bb284 100644 --- a/tests/recordings/test_page_blob.test_update_page_unicode.yaml +++ b/tests/recordings/test_page_blob.test_update_page_unicode.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0dfca012-67fc-11e7-9cf7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:52 GMT'] + x-ms-client-request-id: [402f4468-68f6-11e7-ba15-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer3c780fcd/blob3c780fcd response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:52 GMT'] - ETag: ['"0x8D4CA1FF24A89C2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:51 GMT'] + ETag: ['"0x8D4CB1A24F939C2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:51 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [80180400-0001-0108-4108-fc09f2000000] + x-ms-request-id: [c2727833-0001-0056-1e03-fdbca4000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_page_blob.test_update_page_with_md5.yaml b/tests/recordings/test_page_blob.test_update_page_with_md5.yaml index 29b042d6..7c8858a0 100644 --- a/tests/recordings/test_page_blob.test_update_page_with_md5.yaml +++ b/tests/recordings/test_page_blob.test_update_page_with_md5.yaml @@ -4,23 +4,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] x-ms-blob-content-length: ['512'] x-ms-blob-type: [PageBlob] - x-ms-client-request-id: [0e3b6266-67fc-11e7-bf5f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:52 GMT'] + x-ms-client-request-id: [407245f6-68f6-11e7-a2bd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:51 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/utcontainer4c9b1007/blob4c9b1007 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:52 GMT'] - ETag: ['"0x8D4CA1FF28B6FCC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:51 GMT'] + ETag: ['"0x8D4CB1A254852C8"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0683942c-0001-00f4-4308-fc7138000000] + x-ms-request-id: [cd15679a-0001-004f-7c03-fd90cc000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -39,9 +39,9 @@ interactions: Connection: [keep-alive] Content-Length: ['512'] Content-MD5: [htHXl8CULGmhM9UohEllzA==] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0e50ed5c-67fc-11e7-b90f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [409364e8-68f6-11e7-a0c0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:51 GMT'] x-ms-page-write: [update] x-ms-range: [bytes=0-511] x-ms-version: ['2017-04-17'] @@ -51,13 +51,13 @@ interactions: body: {string: ''} headers: Content-MD5: [htHXl8CULGmhM9UohEllzA==] - Date: ['Thu, 13 Jul 2017 18:49:52 GMT'] - ETag: ['"0x8D4CA1FF290EF1F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:49:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] + ETag: ['"0x8D4CB1A254E9581"'] + Last-Modified: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-blob-sequence-number: ['0'] - x-ms-request-id: [0683944c-0001-00f4-6108-fc7138000000] + x-ms-request-id: [cd1567ad-0001-004f-0a03-fd90cc000000] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} diff --git a/tests/recordings/test_queue.test_clear_messages.yaml b/tests/recordings/test_queue.test_clear_messages.yaml index af7eb5d5..69d279c3 100644 --- a/tests/recordings/test_queue.test_clear_messages.yaml +++ b/tests/recordings/test_queue.test_clear_messages.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0e705b88-67fc-11e7-9bd1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [40adb064-68f6-11e7-a27f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:51 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuebf740c50 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [515c5645-0003-00d7-0f08-fc1ef3000000] + x-ms-request-id: [a494688a-0003-0009-4603-fd4e5a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0e9214d0-67fc-11e7-8067-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [40cd0be4-68f6-11e7-acb4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:51 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuebf740c50/messages response: - body: {string: "\uFEFF69588d57-8fd5-458a-b633-23f664b3e2a0Thu,\ - \ 13 Jul 2017 18:49:53 GMTThu, 20 Jul 2017\ - \ 18:49:53 GMTAgAAAAMAAAAAAAAA9rJD0Aj80gE=Thu,\ - \ 13 Jul 2017 18:49:53 GMT"} + body: {string: "\uFEFF29afe15f-42b9-450a-885f-6cd6c1aa32ccSat,\ + \ 15 Jul 2017 00:40:52 GMTSat, 22 Jul 2017\ + \ 00:40:52 GMTAgAAAAMAAAAAAAAAEI8KAwP90gE=Sat,\ + \ 15 Jul 2017 00:40:52 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [515c5662-0003-00d7-2a08-fc1ef3000000] + x-ms-request-id: [a494689b-0003-0009-5403-fd4e5a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -52,23 +52,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0e9a51e8-67fc-11e7-bf07-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [40d36e26-68f6-11e7-bf08-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:51 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuebf740c50/messages response: - body: {string: "\uFEFFde2a51cd-d6d6-4018-ac8b-af2adebf820cThu,\ - \ 13 Jul 2017 18:49:53 GMTThu, 20 Jul 2017\ - \ 18:49:53 GMTAgAAAAMAAAAAAAAApqNL0Aj80gE=Thu,\ - \ 13 Jul 2017 18:49:53 GMT"} + body: {string: "\uFEFFcaf4fa82-588b-448e-aaae-c4271b633d56Sat,\ + \ 15 Jul 2017 00:40:52 GMTSat, 22 Jul 2017\ + \ 00:40:52 GMTAgAAAAMAAAAAAAAAdlwQAwP90gE=Sat,\ + \ 15 Jul 2017 00:40:52 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [515c567d-0003-00d7-4508-fc1ef3000000] + x-ms-request-id: [a494689c-0003-0009-5503-fd4e5a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -78,23 +78,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0e9fb9fa-67fc-11e7-a274-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [40d99262-68f6-11e7-8ab6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:51 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuebf740c50/messages response: - body: {string: "\uFEFFc380c4d6-7f81-43aa-9ae8-7d245bb6729fThu,\ - \ 13 Jul 2017 18:49:53 GMTThu, 20 Jul 2017\ - \ 18:49:53 GMTAgAAAAMAAAAAAAAA6SJR0Aj80gE=Thu,\ - \ 13 Jul 2017 18:49:53 GMT"} + body: {string: "\uFEFF6ff16662-43ac-4e32-9661-be08d0acaf71Sat,\ + \ 15 Jul 2017 00:40:52 GMTSat, 22 Jul 2017\ + \ 00:40:52 GMTAgAAAAMAAAAAAAAAM58WAwP90gE=Sat,\ + \ 15 Jul 2017 00:40:52 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [515c568e-0003-00d7-5608-fc1ef3000000] + x-ms-request-id: [a49468a0-0003-0009-5903-fd4e5a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -104,23 +104,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0ea4e4f4-67fc-11e7-a031-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [40e0c508-68f6-11e7-b64e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:51 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuebf740c50/messages response: - body: {string: "\uFEFF2e4640e1-a887-4c37-90ca-99a1ee5ebee6Thu,\ - \ 13 Jul 2017 18:49:53 GMTThu, 20 Jul 2017\ - \ 18:49:53 GMTAgAAAAMAAAAAAAAA6ixW0Aj80gE=Thu,\ - \ 13 Jul 2017 18:49:53 GMT"} + body: {string: "\uFEFF15d4f7c1-61b1-406a-afec-cc14e06cf5ffSat,\ + \ 15 Jul 2017 00:40:52 GMTSat, 22 Jul 2017\ + \ 00:40:52 GMTAgAAAAMAAAAAAAAAeMwdAwP90gE=Sat,\ + \ 15 Jul 2017 00:40:52 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [515c56a3-0003-00d7-6a08-fc1ef3000000] + x-ms-request-id: [a49468a5-0003-0009-5e03-fd4e5a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -128,9 +128,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0eaa4780-67fc-11e7-93a0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [40ec2cc2-68f6-11e7-99f4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:51 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.queue.core.windows.net/queuebf740c50/messages @@ -138,18 +138,18 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:49:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [515c56a8-0003-00d7-6f08-fc1ef3000000] + x-ms-request-id: [a49468ac-0003-0009-6403-fd4e5a000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0eb08c6c-67fc-11e7-a627-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [40f239a8-68f6-11e7-b90e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:51 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queuebf740c50/messages?peekonly=true @@ -159,10 +159,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [515c56ba-0003-00d7-0108-fc1ef3000000] + x-ms-request-id: [a49468b3-0003-0009-6b03-fd4e5a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_create_queue.yaml b/tests/recordings/test_queue.test_create_queue.yaml index 94223691..51272d45 100644 --- a/tests/recordings/test_queue.test_create_queue.yaml +++ b/tests/recordings/test_queue.test_create_queue.yaml @@ -4,28 +4,28 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0ecd0868-67fc-11e7-b6e2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [410f579c-68f6-11e7-bb74-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuea7af0b8a response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7302a029-0003-0106-5708-fce5f9000000] + x-ms-request-id: [90c7ec3e-0003-0113-0d03-fd2760000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0ee9c43a-67fc-11e7-abf2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4123f6ca-68f6-11e7-bdd6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:52 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queuea7af0b8a?comp=metadata @@ -33,11 +33,11 @@ interactions: body: {string: ''} headers: Cache-Control: [no-cache] - Date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-approximate-messages-count: ['0'] - x-ms-request-id: [7302a036-0003-0106-6208-fce5f9000000] + x-ms-request-id: [90c7ec46-0003-0113-1303-fd2760000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_create_queue_already_exist.yaml b/tests/recordings/test_queue.test_create_queue_already_exist.yaml index 376cc650..61140dc4 100644 --- a/tests/recordings/test_queue.test_create_queue_already_exist.yaml +++ b/tests/recordings/test_queue.test_create_queue_already_exist.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0f02c73e-67fc-11e7-a49c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [413eea98-68f6-11e7-958c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queue73d11157 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4a5da0c3-0003-0058-2308-fc50af000000] + x-ms-request-id: [dbde50bb-0003-0066-2503-fde68e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -24,9 +24,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0f179a68-67fc-11e7-939c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [41572d24-68f6-11e7-9620-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queue73d11157 @@ -34,9 +34,9 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [4a5da0df-0003-0058-3d08-fc50af000000] + x-ms-request-id: [dbde50ca-0003-0066-3103-fde68e000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} version: 1 diff --git a/tests/recordings/test_queue.test_create_queue_fail_on_exist.yaml b/tests/recordings/test_queue.test_create_queue_fail_on_exist.yaml index 9c2f6ec8..81547ea4 100644 --- a/tests/recordings/test_queue.test_create_queue_fail_on_exist.yaml +++ b/tests/recordings/test_queue.test_create_queue_fail_on_exist.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0f31d5a6-67fc-11e7-a209-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4170f9d4-68f6-11e7-b803-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queue736a114d response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:53 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5f609d37-0003-0023-4008-fc3b1f000000] + x-ms-request-id: [10263abf-0003-00e4-6a03-fd47de000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -24,9 +24,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0f482b26-67fc-11e7-805d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [418616fa-68f6-11e7-803d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queue736a114d @@ -34,9 +34,9 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:53 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [5f609d44-0003-0023-4b08-fc3b1f000000] + x-ms-request-id: [10263ac8-0003-00e4-7103-fd47de000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} version: 1 diff --git a/tests/recordings/test_queue.test_create_queue_with_options.yaml b/tests/recordings/test_queue.test_create_queue_with_options.yaml index 6b08bad8..221d828a 100644 --- a/tests/recordings/test_queue.test_create_queue_with_options.yaml +++ b/tests/recordings/test_queue.test_create_queue_with_options.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0f627cba-67fc-11e7-91a1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [41a5a29c-68f6-11e7-9a16-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:53 GMT'] x-ms-meta-val1: [test] x-ms-meta-val2: [blah] x-ms-version: ['2017-04-17'] @@ -15,19 +15,19 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:54 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b00c05ee-0003-003e-1e08-fce2f5000000] + x-ms-request-id: [4c7f5317-0003-00d6-3403-fd1f0e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0f79ddba-67fc-11e7-bf07-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [41ba3868-68f6-11e7-8b46-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:53 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queue63ff1110?comp=metadata @@ -35,13 +35,13 @@ interactions: body: {string: ''} headers: Cache-Control: [no-cache] - Date: ['Thu, 13 Jul 2017 18:49:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:54 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-approximate-messages-count: ['0'] x-ms-meta-val1: [test] x-ms-meta-val2: [blah] - x-ms-request-id: [b00c05fd-0003-003e-2a08-fce2f5000000] + x-ms-request-id: [4c7f5323-0003-00d6-3e03-fd1f0e000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_delete_message.yaml b/tests/recordings/test_queue.test_delete_message.yaml index af2f045c..13580567 100644 --- a/tests/recordings/test_queue.test_delete_message.yaml +++ b/tests/recordings/test_queue.test_delete_message.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0f9520f4-67fc-11e7-a418-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [41d92414-68f6-11e7-a9ee-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:53 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuebf910c49 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0df40976-0003-0052-3c08-fc4926000000] + x-ms-request-id: [9a857bfb-0003-008c-3c03-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0fb000a2-67fc-11e7-9a9b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [41edcaa4-68f6-11e7-93c2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:53 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuebf910c49/messages response: - body: {string: "\uFEFF5a5d4c64-e768-4b0e-b2d1-b6152f2d7310Thu,\ - \ 13 Jul 2017 18:49:54 GMTThu, 20 Jul 2017\ - \ 18:49:54 GMTAgAAAAMAAAAAAAAAVGVh0Qj80gE=Thu,\ - \ 13 Jul 2017 18:49:54 GMT"} + body: {string: "\uFEFF4eb11987-6f77-4e1a-b1dd-8a1244c9262fSat,\ + \ 15 Jul 2017 00:40:54 GMTSat, 22 Jul 2017\ + \ 00:40:54 GMTAgAAAAMAAAAAAAAAWrMqBAP90gE=Sat,\ + \ 15 Jul 2017 00:40:54 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0df4097d-0003-0052-4108-fc4926000000] + x-ms-request-id: [9a857c04-0003-008c-4203-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -52,23 +52,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0fb533f6-67fc-11e7-8b56-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [41f4410c-68f6-11e7-8c8a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:53 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuebf910c49/messages response: - body: {string: "\uFEFFd647b0ee-ddf8-4f4f-b29f-635e419fe749Thu,\ - \ 13 Jul 2017 18:49:55 GMTThu, 20 Jul 2017\ - \ 18:49:55 GMTAgAAAAMAAAAAAAAAfZZm0Qj80gE=Thu,\ - \ 13 Jul 2017 18:49:55 GMT"} + body: {string: "\uFEFF213d6acf-a3b4-496c-930b-59fe0eb33801Sat,\ + \ 15 Jul 2017 00:40:54 GMTSat, 22 Jul 2017\ + \ 00:40:54 GMTAgAAAAMAAAAAAAAAJh0xBAP90gE=Sat,\ + \ 15 Jul 2017 00:40:54 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0df40981-0003-0052-4408-fc4926000000] + x-ms-request-id: [9a857c0b-0003-008c-4903-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -78,23 +78,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0fbf0066-67fc-11e7-8176-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [41f9dfec-68f6-11e7-adf5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:53 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuebf910c49/messages response: - body: {string: "\uFEFFe44b35e9-3bbf-44a5-8826-0e172cda3f56Thu,\ - \ 13 Jul 2017 18:49:55 GMTThu, 20 Jul 2017\ - \ 18:49:55 GMTAgAAAAMAAAAAAAAACQ5w0Qj80gE=Thu,\ - \ 13 Jul 2017 18:49:55 GMT"} + body: {string: "\uFEFFcd81c102-6ffb-42ca-9f67-8b1dad3cf883Sat,\ + \ 15 Jul 2017 00:40:54 GMTSat, 22 Jul 2017\ + \ 00:40:54 GMTAgAAAAMAAAAAAAAAmeo2BAP90gE=Sat,\ + \ 15 Jul 2017 00:40:54 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0df4098a-0003-0052-4b08-fc4926000000] + x-ms-request-id: [9a857c14-0003-008c-5103-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -104,47 +104,47 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0fc3ff12-67fc-11e7-a4f2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [41ff5b18-68f6-11e7-991e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:53 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuebf910c49/messages response: - body: {string: "\uFEFF10b53e07-b3d6-4b58-8023-3b1e0bb43538Thu,\ - \ 13 Jul 2017 18:49:55 GMTThu, 20 Jul 2017\ - \ 18:49:55 GMTAgAAAAMAAAAAAAAAHT910Qj80gE=Thu,\ - \ 13 Jul 2017 18:49:55 GMT"} + body: {string: "\uFEFF86b2a1a3-7931-42f0-bc42-fb71154a9920Sat,\ + \ 15 Jul 2017 00:40:54 GMTSat, 22 Jul 2017\ + \ 00:40:54 GMTAgAAAAMAAAAAAAAAxkI8BAP90gE=Sat,\ + \ 15 Jul 2017 00:40:54 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0df4098c-0003-0052-4d08-fc4926000000] + x-ms-request-id: [9a857c1a-0003-008c-5703-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0fc91754-67fc-11e7-bb68-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4204b778-68f6-11e7-8a96-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:53 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queuebf910c49/messages response: - body: {string: "\uFEFF5a5d4c64-e768-4b0e-b2d1-b6152f2d7310Thu,\ - \ 13 Jul 2017 18:49:54 GMTThu, 20 Jul 2017\ - \ 18:49:54 GMTAgAAAAMAAAAAAAAAMRNc4wj80gE=Thu,\ - \ 13 Jul 2017 18:50:25 GMT1message1"} + body: {string: "\uFEFF4eb11987-6f77-4e1a-b1dd-8a1244c9262fSat,\ + \ 15 Jul 2017 00:40:54 GMTSat, 22 Jul 2017\ + \ 00:40:54 GMTAgAAAAMAAAAAAAAA9D0jFgP90gE=Sat,\ + \ 15 Jul 2017 00:41:24 GMT1message1"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0df40992-0003-0052-5108-fc4926000000] + x-ms-request-id: [9a857c22-0003-008c-5f03-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -152,49 +152,49 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0fce55d4-67fc-11e7-a9ae-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [420a373e-68f6-11e7-90ca-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:53 GMT'] x-ms-version: ['2017-04-17'] method: DELETE - uri: https://storagename.queue.core.windows.net/queuebf910c49/messages/5a5d4c64-e768-4b0e-b2d1-b6152f2d7310?popreceipt=AgAAAAMAAAAAAAAAMRNc4wj80gE%3D + uri: https://storagename.queue.core.windows.net/queuebf910c49/messages/4eb11987-6f77-4e1a-b1dd-8a1244c9262f?popreceipt=AgAAAAMAAAAAAAAA9D0jFgP90gE%3D response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [0df40998-0003-0052-5608-fc4926000000] + x-ms-request-id: [9a857c2c-0003-008c-6803-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0fd37b36-67fc-11e7-84c6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [420fc4f6-68f6-11e7-8ada-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:53 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queuebf910c49/messages?numofmessages=32 response: - body: {string: "\uFEFFd647b0ee-ddf8-4f4f-b29f-635e419fe749Thu,\ - \ 13 Jul 2017 18:49:55 GMTThu, 20 Jul 2017\ - \ 18:49:55 GMTAgAAAAMAAAAAAAAAPU5m4wj80gE=Thu,\ - \ 13 Jul 2017 18:50:25 GMT1message2e44b35e9-3bbf-44a5-8826-0e172cda3f56Thu,\ - \ 13 Jul 2017 18:49:55 GMTThu, 20 Jul 2017\ - \ 18:49:55 GMTAgAAAAMAAAAAAAAAPU5m4wj80gE=Thu,\ - \ 13 Jul 2017 18:50:25 GMT1message310b53e07-b3d6-4b58-8023-3b1e0bb43538Thu,\ - \ 13 Jul 2017 18:49:55 GMTThu, 20 Jul 2017\ - \ 18:49:55 GMTAgAAAAMAAAAAAAAAPU5m4wj80gE=Thu,\ - \ 13 Jul 2017 18:50:25 GMT1message4"} + body: {string: "\uFEFF213d6acf-a3b4-496c-930b-59fe0eb33801Sat,\ + \ 15 Jul 2017 00:40:54 GMTSat, 22 Jul 2017\ + \ 00:40:54 GMTAgAAAAMAAAAAAAAA1oouFgP90gE=Sat,\ + \ 15 Jul 2017 00:41:24 GMT1message2cd81c102-6ffb-42ca-9f67-8b1dad3cf883Sat,\ + \ 15 Jul 2017 00:40:54 GMTSat, 22 Jul 2017\ + \ 00:40:54 GMTAgAAAAMAAAAAAAAA1oouFgP90gE=Sat,\ + \ 15 Jul 2017 00:41:24 GMT1message386b2a1a3-7931-42f0-bc42-fb71154a9920Sat,\ + \ 15 Jul 2017 00:40:54 GMTSat, 22 Jul 2017\ + \ 00:40:54 GMTAgAAAAMAAAAAAAAA1oouFgP90gE=Sat,\ + \ 15 Jul 2017 00:41:24 GMT1message4"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:52 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [0df4099b-0003-0052-5908-fc4926000000] + x-ms-request-id: [9a857c36-0003-008c-7103-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_delete_queue_fail_not_exist_already_exist.yaml b/tests/recordings/test_queue.test_delete_queue_fail_not_exist_already_exist.yaml index 1173ba78..ffb882fd 100644 --- a/tests/recordings/test_queue.test_delete_queue_fail_not_exist_already_exist.yaml +++ b/tests/recordings/test_queue.test_delete_queue_fail_not_exist_already_exist.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0ff42f98-67fc-11e7-acae-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [422f8a8c-68f6-11e7-a48e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:53 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuea844178d response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:55 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [2d9fe8a4-0003-00a9-5008-fc813c000000] + x-ms-request-id: [10423e85-0003-0110-2603-fd2467000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -24,9 +24,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10095ecc-67fc-11e7-a12f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [42468a18-68f6-11e7-a1f9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:54 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.queue.core.windows.net/queuea844178d @@ -34,9 +34,9 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:49:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:55 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [2d9fe8a8-0003-00a9-5208-fc813c000000] + x-ms-request-id: [10423e8b-0003-0110-2a03-fd2467000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} version: 1 diff --git a/tests/recordings/test_queue.test_delete_queue_fail_not_exist_not_exist.yaml b/tests/recordings/test_queue.test_delete_queue_fail_not_exist_not_exist.yaml index 6c3120bc..b5c83947 100644 --- a/tests/recordings/test_queue.test_delete_queue_fail_not_exist_not_exist.yaml +++ b/tests/recordings/test_queue.test_delete_queue_fail_not_exist_not_exist.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10363de8-67fc-11e7-89ee-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4263f2e2-68f6-11e7-b43b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:54 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.queue.core.windows.net/queue4d9d15fc response: body: {string: "\uFEFFQueueNotFoundThe\ - \ specified queue does not exist.\nRequestId:8a7fde5f-0003-009b-6508-fcd9ec000000\n\ - Time:2017-07-13T18:49:55.8152656Z"} + \ specified queue does not exist.\nRequestId:6c9f8445-0003-0103-7903-fd1186000000\n\ + Time:2017-07-15T00:40:55.6779511Z"} headers: Content-Length: ['217'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:54 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [8a7fde5f-0003-009b-6508-fcd9ec000000] + x-ms-request-id: [6c9f8445-0003-0103-7903-fd1186000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified queue does not exist.} version: 1 diff --git a/tests/recordings/test_queue.test_delete_queue_not_exist.yaml b/tests/recordings/test_queue.test_delete_queue_not_exist.yaml index 451c6e50..73f1678f 100644 --- a/tests/recordings/test_queue.test_delete_queue_not_exist.yaml +++ b/tests/recordings/test_queue.test_delete_queue_not_exist.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [105e1234-67fc-11e7-9d2f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [428d18de-68f6-11e7-abc2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:54 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.queue.core.windows.net/queue31df0fc5 response: body: {string: "\uFEFFQueueNotFoundThe\ - \ specified queue does not exist.\nRequestId:51b55278-0003-00de-0708-fc047d000000\n\ - Time:2017-07-13T18:49:55.9743989Z"} + \ specified queue does not exist.\nRequestId:16da1d5c-0003-0131-3403-fd4956000000\n\ + Time:2017-07-15T00:40:55.6188931Z"} headers: Content-Length: ['217'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:55 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [51b55278-0003-00de-0708-fc047d000000] + x-ms-request-id: [16da1d5c-0003-0131-3403-fd4956000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified queue does not exist.} version: 1 diff --git a/tests/recordings/test_queue.test_get_messages.yaml b/tests/recordings/test_queue.test_get_messages.yaml index 5728070d..ece8b697 100644 --- a/tests/recordings/test_queue.test_get_messages.yaml +++ b/tests/recordings/test_queue.test_get_messages.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [108d8d46-67fc-11e7-a1d5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [42b68de2-68f6-11e7-bd76-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuea7c20b89 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:55 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5413a70c-0003-00d1-2c08-fce98b000000] + x-ms-request-id: [7fecf724-0003-0137-7203-fdbe2e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10a22d6e-67fc-11e7-b6eb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [42cd77ee-68f6-11e7-bb4e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:55 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuea7c20b89/messages response: - body: {string: "\uFEFF7edcc5e6-ceff-4d94-8ff6-34fbc4c9c8b1Thu,\ - \ 13 Jul 2017 18:49:56 GMTThu, 20 Jul 2017\ - \ 18:49:56 GMTAgAAAAMAAAAAAAAABLpT0gj80gE=Thu,\ - \ 13 Jul 2017 18:49:56 GMT"} + body: {string: "\uFEFF607a2795-45f6-47e5-88a8-c4de2be4468aSat,\ + \ 15 Jul 2017 00:40:55 GMTSat, 22 Jul 2017\ + \ 00:40:55 GMTAgAAAAMAAAAAAAAAzSoLBQP90gE=Sat,\ + \ 15 Jul 2017 00:40:55 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:55 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5413a71a-0003-00d1-3708-fce98b000000] + x-ms-request-id: [7fecf730-0003-0137-7c03-fdbe2e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -52,23 +52,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10a78f66-67fc-11e7-9f5b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [42d3de74-68f6-11e7-afd7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:55 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuea7c20b89/messages response: - body: {string: "\uFEFF4887a170-8872-4e4e-b177-fc753fb05736Thu,\ - \ 13 Jul 2017 18:49:56 GMTThu, 20 Jul 2017\ - \ 18:49:56 GMTAgAAAAMAAAAAAAAAXmBZ0gj80gE=Thu,\ - \ 13 Jul 2017 18:49:56 GMT"} + body: {string: "\uFEFF78f67993-615d-44ad-8a06-bf8c9d666f76Sat,\ + \ 15 Jul 2017 00:40:55 GMTSat, 22 Jul 2017\ + \ 00:40:55 GMTAgAAAAMAAAAAAAAAopQRBQP90gE=Sat,\ + \ 15 Jul 2017 00:40:55 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:55 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5413a721-0003-00d1-3c08-fce98b000000] + x-ms-request-id: [7fecf739-0003-0137-0303-fdbe2e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -78,23 +78,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10add98c-67fc-11e7-8ddb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [42daad2e-68f6-11e7-a033-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:55 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuea7c20b89/messages response: - body: {string: "\uFEFF1746f49c-50dc-46d4-8329-13aecb94098eThu,\ - \ 13 Jul 2017 18:49:56 GMTThu, 20 Jul 2017\ - \ 18:49:56 GMTAgAAAAMAAAAAAAAAyy1f0gj80gE=Thu,\ - \ 13 Jul 2017 18:49:56 GMT"} + body: {string: "\uFEFF5ec57c0d-a4da-47cc-b3a4-a678e04982bbSat,\ + \ 15 Jul 2017 00:40:55 GMTSat, 22 Jul 2017\ + \ 00:40:55 GMTAgAAAAMAAAAAAAAAxpoYBQP90gE=Sat,\ + \ 15 Jul 2017 00:40:55 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:56 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5413a72d-0003-00d1-4808-fce98b000000] + x-ms-request-id: [7fecf73d-0003-0137-0703-fdbe2e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -104,47 +104,47 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10b315a2-67fc-11e7-aa0d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [42e45752-68f6-11e7-8695-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:55 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuea7c20b89/messages response: - body: {string: "\uFEFF87cc5ea1-acc7-4333-a36e-fb1334714edcThu,\ - \ 13 Jul 2017 18:49:56 GMTThu, 20 Jul 2017\ - \ 18:49:56 GMTAgAAAAMAAAAAAAAA3l5k0gj80gE=Thu,\ - \ 13 Jul 2017 18:49:56 GMT"} + body: {string: "\uFEFF1604f4a3-93fa-4283-bbd7-232e73849c58Sat,\ + \ 15 Jul 2017 00:40:55 GMTSat, 22 Jul 2017\ + \ 00:40:55 GMTAgAAAAMAAAAAAAAAE3YhBQP90gE=Sat,\ + \ 15 Jul 2017 00:40:55 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:56 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5413a735-0003-00d1-5008-fce98b000000] + x-ms-request-id: [7fecf74a-0003-0137-1303-fdbe2e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10b8198a-67fc-11e7-8e21-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [42ea3eb0-68f6-11e7-beae-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:55 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queuea7c20b89/messages response: - body: {string: "\uFEFF7edcc5e6-ceff-4d94-8ff6-34fbc4c9c8b1Thu,\ - \ 13 Jul 2017 18:49:56 GMTThu, 20 Jul 2017\ - \ 18:49:56 GMTAgAAAAMAAAAAAAAAsb1K5Aj80gE=Thu,\ - \ 13 Jul 2017 18:50:26 GMT1message1"} + body: {string: "\uFEFF607a2795-45f6-47e5-88a8-c4de2be4468aSat,\ + \ 15 Jul 2017 00:40:55 GMTSat, 22 Jul 2017\ + \ 00:40:55 GMTAgAAAAMAAAAAAAAAnGkMFwP90gE=Sat,\ + \ 15 Jul 2017 00:41:26 GMT1message1"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:56 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5413a73a-0003-00d1-5408-fce98b000000] + x-ms-request-id: [7fecf750-0003-0137-1803-fdbe2e000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_get_messages_with_options.yaml b/tests/recordings/test_queue.test_get_messages_with_options.yaml index f7467a47..64044c0e 100644 --- a/tests/recordings/test_queue.test_get_messages_with_options.yaml +++ b/tests/recordings/test_queue.test_get_messages_with_options.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10d371c6-67fc-11e7-a63d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [431188e4-68f6-11e7-90ad-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queue6405110f response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:55 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c9d1ab00-0003-00ff-6d08-fc694c000000] + x-ms-request-id: [14cdeaff-0003-0061-4c03-fd100b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10e7892c-67fc-11e7-bf5f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4326288a-68f6-11e7-b0bb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:55 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queue6405110f/messages response: - body: {string: "\uFEFF4673d0bf-54fd-4ae0-8fdc-774f25d0a644Thu,\ - \ 13 Jul 2017 18:49:57 GMTThu, 20 Jul 2017\ - \ 18:49:57 GMTAgAAAAMAAAAAAAAATVuZ0gj80gE=Thu,\ - \ 13 Jul 2017 18:49:57 GMT"} + body: {string: "\uFEFFdcd91c16-0fad-4446-8269-23a50d4059cdSat,\ + \ 15 Jul 2017 00:40:56 GMTSat, 22 Jul 2017\ + \ 00:40:56 GMTAgAAAAMAAAAAAAAAhrtjBQP90gE=Sat,\ + \ 15 Jul 2017 00:40:56 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:55 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c9d1ab08-0003-00ff-7308-fc694c000000] + x-ms-request-id: [14cdeb04-0003-0061-4f03-fd100b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -52,23 +52,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10ed6146-67fc-11e7-93ff-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [432c74c6-68f6-11e7-ba43-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:55 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queue6405110f/messages response: - body: {string: "\uFEFF6b49e4f3-5c90-4f25-a046-44609df9cad0Thu,\ - \ 13 Jul 2017 18:49:57 GMTThu, 20 Jul 2017\ - \ 18:49:57 GMTAgAAAAMAAAAAAAAAdLOe0gj80gE=Thu,\ - \ 13 Jul 2017 18:49:57 GMT"} + body: {string: "\uFEFFe87c48f9-2cba-400a-92d9-355d3f601d8fSat,\ + \ 15 Jul 2017 00:40:56 GMTSat, 22 Jul 2017\ + \ 00:40:56 GMTAgAAAAMAAAAAAAAAippqBQP90gE=Sat,\ + \ 15 Jul 2017 00:40:56 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:55 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c9d1ab10-0003-00ff-7b08-fc694c000000] + x-ms-request-id: [14cdeb0a-0003-0061-5403-fd100b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -78,23 +78,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10f29918-67fc-11e7-983a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4333db7e-68f6-11e7-98b9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:55 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queue6405110f/messages response: - body: {string: "\uFEFF0e0bb457-a6f4-40cd-b260-46722e031cdfThu,\ - \ 13 Jul 2017 18:49:57 GMTThu, 20 Jul 2017\ - \ 18:49:57 GMTAgAAAAMAAAAAAAAAnwuk0gj80gE=Thu,\ - \ 13 Jul 2017 18:49:57 GMT"} + body: {string: "\uFEFF4883e160-dcc5-471f-b872-ee3d69ecd686Sat,\ + \ 15 Jul 2017 00:40:56 GMTSat, 22 Jul 2017\ + \ 00:40:56 GMTAgAAAAMAAAAAAAAAEI9wBQP90gE=Sat,\ + \ 15 Jul 2017 00:40:56 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:55 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c9d1ab1b-0003-00ff-0508-fc694c000000] + x-ms-request-id: [14cdeb11-0003-0061-5903-fd100b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -104,56 +104,56 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10f806e4-67fc-11e7-9c4c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [433930a6-68f6-11e7-8ae4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:55 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queue6405110f/messages response: - body: {string: "\uFEFF80695b65-3856-4e89-8532-bc1342b03c54Thu,\ - \ 13 Jul 2017 18:49:57 GMTThu, 20 Jul 2017\ - \ 18:49:57 GMTAgAAAAMAAAAAAAAAszyp0gj80gE=Thu,\ - \ 13 Jul 2017 18:49:57 GMT"} + body: {string: "\uFEFF52809e6a-ac5e-4f03-ab0e-8a1fd75a949fSat,\ + \ 15 Jul 2017 00:40:56 GMTSat, 22 Jul 2017\ + \ 00:40:56 GMTAgAAAAMAAAAAAAAAPud1BQP90gE=Sat,\ + \ 15 Jul 2017 00:40:56 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:55 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c9d1ab26-0003-00ff-1008-fc694c000000] + x-ms-request-id: [14cdeb17-0003-0061-5e03-fd100b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10fd8986-67fc-11e7-9a2e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [433e6ef4-68f6-11e7-bf19-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:55 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queue6405110f/messages?numofmessages=4&visibilitytimeout=20 response: - body: {string: "\uFEFF4673d0bf-54fd-4ae0-8fdc-774f25d0a644Thu,\ - \ 13 Jul 2017 18:49:57 GMTThu, 20 Jul 2017\ - \ 18:49:57 GMTAgAAAAMAAAAAAAAAsmSd3gj80gE=Thu,\ - \ 13 Jul 2017 18:50:17 GMT1message16b49e4f3-5c90-4f25-a046-44609df9cad0Thu,\ - \ 13 Jul 2017 18:49:57 GMTThu, 20 Jul 2017\ - \ 18:49:57 GMTAgAAAAMAAAAAAAAAsmSd3gj80gE=Thu,\ - \ 13 Jul 2017 18:50:17 GMT1message20e0bb457-a6f4-40cd-b260-46722e031cdfThu,\ - \ 13 Jul 2017 18:49:57 GMTThu, 20 Jul 2017\ - \ 18:49:57 GMTAgAAAAMAAAAAAAAAsmSd3gj80gE=Thu,\ - \ 13 Jul 2017 18:50:17 GMT1message380695b65-3856-4e89-8532-bc1342b03c54Thu,\ - \ 13 Jul 2017 18:49:57 GMTThu, 20 Jul 2017\ - \ 18:49:57 GMTAgAAAAMAAAAAAAAAsmSd3gj80gE=Thu,\ - \ 13 Jul 2017 18:50:17 GMT1message4"} + body: {string: "\uFEFFdcd91c16-0fad-4446-8269-23a50d4059cdSat,\ + \ 15 Jul 2017 00:40:56 GMTSat, 22 Jul 2017\ + \ 00:40:56 GMTAgAAAAMAAAAAAAAAawFnEQP90gE=Sat,\ + \ 15 Jul 2017 00:41:16 GMT1message1e87c48f9-2cba-400a-92d9-355d3f601d8fSat,\ + \ 15 Jul 2017 00:40:56 GMTSat, 22 Jul 2017\ + \ 00:40:56 GMTAgAAAAMAAAAAAAAAawFnEQP90gE=Sat,\ + \ 15 Jul 2017 00:41:16 GMT1message24883e160-dcc5-471f-b872-ee3d69ecd686Sat,\ + \ 15 Jul 2017 00:40:56 GMTSat, 22 Jul 2017\ + \ 00:40:56 GMTAgAAAAMAAAAAAAAAawFnEQP90gE=Sat,\ + \ 15 Jul 2017 00:41:16 GMT1message352809e6a-ac5e-4f03-ab0e-8a1fd75a949fSat,\ + \ 15 Jul 2017 00:40:56 GMTSat, 22 Jul 2017\ + \ 00:40:56 GMTAgAAAAMAAAAAAAAAawFnEQP90gE=Sat,\ + \ 15 Jul 2017 00:41:16 GMT1message4"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:55 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c9d1ab34-0003-00ff-1d08-fc694c000000] + x-ms-request-id: [14cdeb1c-0003-0061-6203-fd100b000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_get_queue_acl.yaml b/tests/recordings/test_queue.test_get_queue_acl.yaml index 6f7f1fa5..c2fa104c 100644 --- a/tests/recordings/test_queue.test_get_queue_acl.yaml +++ b/tests/recordings/test_queue.test_get_queue_acl.yaml @@ -4,28 +4,28 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [111f7a58-67fc-11e7-935b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [435dbb24-68f6-11e7-807a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queueb3cd0be5 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:56 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [67e62fbd-0003-00f2-2f08-fc8640000000] + x-ms-request-id: [e8218e2b-0003-008f-5803-fd1a88000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [113368b0-67fc-11e7-a218-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4375d8a8-68f6-11e7-ac81-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:56 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queueb3cd0be5?comp=acl @@ -35,10 +35,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:56 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [67e62fc2-0003-00f2-3208-fc8640000000] + x-ms-request-id: [e8218e35-0003-008f-6003-fd1a88000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_get_queue_acl_iter.yaml b/tests/recordings/test_queue.test_get_queue_acl_iter.yaml index 93544189..2ec71710 100644 --- a/tests/recordings/test_queue.test_get_queue_acl_iter.yaml +++ b/tests/recordings/test_queue.test_get_queue_acl_iter.yaml @@ -4,28 +4,28 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [11510d52-67fc-11e7-8d09-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [44a24d68-68f6-11e7-8bd8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuef55d0df8 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:57 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c72f563f-0003-0081-2c08-fcf683000000] + x-ms-request-id: [4e8aba0d-0003-0128-4303-fd653e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1165bb30-67fc-11e7-884b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:57 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [44ba7214-68f6-11e7-abb1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:58 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queuef55d0df8?comp=acl @@ -35,10 +35,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:57 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c72f5650-0003-0081-3b08-fcf683000000] + x-ms-request-id: [4e8aba16-0003-0128-4a03-fd653e000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_get_queue_acl_with_non_existing_queue.yaml b/tests/recordings/test_queue.test_get_queue_acl_with_non_existing_queue.yaml index c4856537..c8c2a239 100644 --- a/tests/recordings/test_queue.test_get_queue_acl_with_non_existing_queue.yaml +++ b/tests/recordings/test_queue.test_get_queue_acl_with_non_existing_queue.yaml @@ -3,22 +3,22 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1186d4f0-67fc-11e7-b54f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [44df4526-68f6-11e7-b9c5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:58 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queue4ef515f8?comp=acl response: body: {string: "\uFEFFQueueNotFoundThe\ - \ specified queue does not exist.\nRequestId:8fc0f908-0003-0113-0d08-fc2760000000\n\ - Time:2017-07-13T18:49:57.9575116Z"} + \ specified queue does not exist.\nRequestId:b10dd82e-0003-003e-0803-fde2f5000000\n\ + Time:2017-07-15T00:40:59.5635296Z"} headers: Content-Length: ['217'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:57 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:58 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [8fc0f908-0003-0113-0d08-fc2760000000] + x-ms-request-id: [b10dd82e-0003-003e-0803-fde2f5000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified queue does not exist.} version: 1 diff --git a/tests/recordings/test_queue.test_get_queue_metadata_message_count.yaml b/tests/recordings/test_queue.test_get_queue_metadata_message_count.yaml index 01e34caa..a95e1207 100644 --- a/tests/recordings/test_queue.test_get_queue_metadata_message_count.yaml +++ b/tests/recordings/test_queue.test_get_queue_metadata_message_count.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [11b54ad8-67fc-11e7-9fc7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [450c035e-68f6-11e7-86c8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuee42613c2 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:59 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d3905451-0003-012e-3208-fc9246000000] + x-ms-request-id: [8fcddb8c-0003-00d0-4603-fde876000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,32 +26,32 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [11ccc24c-67fc-11e7-945a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [45209558-68f6-11e7-80f9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:58 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuee42613c2/messages response: - body: {string: "\uFEFF9d95b4e7-9d84-4e69-a10f-dc847eca1aceThu,\ - \ 13 Jul 2017 18:49:58 GMTThu, 20 Jul 2017\ - \ 18:49:58 GMTAgAAAAMAAAAAAAAAz/F90wj80gE=Thu,\ - \ 13 Jul 2017 18:49:58 GMT"} + body: {string: "\uFEFF48c37a5e-1416-4312-8d53-ddae5bf6a7c9Sat,\ + \ 15 Jul 2017 00:40:59 GMTSat, 22 Jul 2017\ + \ 00:40:59 GMTAgAAAAMAAAAAAAAAT8ZdBwP90gE=Sat,\ + \ 15 Jul 2017 00:40:59 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:59 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d3905463-0003-012e-4208-fc9246000000] + x-ms-request-id: [8fcddb92-0003-00d0-4a03-fde876000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [11d1fc28-67fc-11e7-a800-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [45278f18-68f6-11e7-97b7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:58 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queuee42613c2?comp=metadata @@ -59,11 +59,11 @@ interactions: body: {string: ''} headers: Cache-Control: [no-cache] - Date: ['Thu, 13 Jul 2017 18:49:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:59 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-approximate-messages-count: ['1'] - x-ms-request-id: [d390546e-0003-012e-4d08-fc9246000000] + x-ms-request-id: [8fcddb99-0003-00d0-5103-fde876000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_list_queues.yaml b/tests/recordings/test_queue.test_list_queues.yaml index f747a208..5355e16d 100644 --- a/tests/recordings/test_queue.test_list_queues.yaml +++ b/tests/recordings/test_queue.test_list_queues.yaml @@ -3,23 +3,23 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [11f08b0c-67fc-11e7-b2cc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:58 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4542c3c6-68f6-11e7-9b68-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:59 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/?comp=list response: body: {string: "\uFEFF0c4a79c8059d4787a4c304e6ce1f914821dd754367424c8fbef3bade5cfaf9cc23a28f3ff12e4290a5822f058384210c3ed88c47f5bd4db4a6c7584755714fd8462b279766014137b4e7fd3b639e976c4704b4602807430b992806a312d5469c583e4cc8a62f40889b65489c4c322d167962c06eda4c460aaa8b4766e0607a8b888fd14095cc47d894813670e35ab856992534a95ab44203bc6185bc4ea424b0a0714840-054c-4a13-8004-f6c9b4ed36cb0a0714840-054c-4a13-8004-f6c9b4ed36cb1a0714840-054c-4a13-8004-f6c9b4ed36cb10a0714840-054c-4a13-8004-f6c9b4ed36cb100a0714840-054c-4a13-8004-f6c9b4ed36cb101a0714840-054c-4a13-8004-f6c9b4ed36cb102a0714840-054c-4a13-8004-f6c9b4ed36cb103a0714840-054c-4a13-8004-f6c9b4ed36cb104a0714840-054c-4a13-8004-f6c9b4ed36cb105a0714840-054c-4a13-8004-f6c9b4ed36cb106a0714840-054c-4a13-8004-f6c9b4ed36cb107a0714840-054c-4a13-8004-f6c9b4ed36cb108a0714840-054c-4a13-8004-f6c9b4ed36cb109a0714840-054c-4a13-8004-f6c9b4ed36cb11a0714840-054c-4a13-8004-f6c9b4ed36cb110a0714840-054c-4a13-8004-f6c9b4ed36cb111a0714840-054c-4a13-8004-f6c9b4ed36cb112a0714840-054c-4a13-8004-f6c9b4ed36cb113a0714840-054c-4a13-8004-f6c9b4ed36cb114a0714840-054c-4a13-8004-f6c9b4ed36cb115a0714840-054c-4a13-8004-f6c9b4ed36cb116a0714840-054c-4a13-8004-f6c9b4ed36cb117a0714840-054c-4a13-8004-f6c9b4ed36cb118a0714840-054c-4a13-8004-f6c9b4ed36cb119a0714840-054c-4a13-8004-f6c9b4ed36cb12a0714840-054c-4a13-8004-f6c9b4ed36cb120a0714840-054c-4a13-8004-f6c9b4ed36cb121a0714840-054c-4a13-8004-f6c9b4ed36cb122a0714840-054c-4a13-8004-f6c9b4ed36cb123a0714840-054c-4a13-8004-f6c9b4ed36cb124a0714840-054c-4a13-8004-f6c9b4ed36cb125a0714840-054c-4a13-8004-f6c9b4ed36cb126a0714840-054c-4a13-8004-f6c9b4ed36cb127a0714840-054c-4a13-8004-f6c9b4ed36cb128a0714840-054c-4a13-8004-f6c9b4ed36cb129a0714840-054c-4a13-8004-f6c9b4ed36cb13a0714840-054c-4a13-8004-f6c9b4ed36cb130a0714840-054c-4a13-8004-f6c9b4ed36cb131a0714840-054c-4a13-8004-f6c9b4ed36cb132a0714840-054c-4a13-8004-f6c9b4ed36cb133a0714840-054c-4a13-8004-f6c9b4ed36cb134a0714840-054c-4a13-8004-f6c9b4ed36cb135a0714840-054c-4a13-8004-f6c9b4ed36cb136a0714840-054c-4a13-8004-f6c9b4ed36cb137a0714840-054c-4a13-8004-f6c9b4ed36cb138a0714840-054c-4a13-8004-f6c9b4ed36cb139a0714840-054c-4a13-8004-f6c9b4ed36cb14a0714840-054c-4a13-8004-f6c9b4ed36cb140a0714840-054c-4a13-8004-f6c9b4ed36cb141a0714840-054c-4a13-8004-f6c9b4ed36cb142a0714840-054c-4a13-8004-f6c9b4ed36cb143a0714840-054c-4a13-8004-f6c9b4ed36cb144a0714840-054c-4a13-8004-f6c9b4ed36cb145a0714840-054c-4a13-8004-f6c9b4ed36cb146a0714840-054c-4a13-8004-f6c9b4ed36cb147a0714840-054c-4a13-8004-f6c9b4ed36cb148a0714840-054c-4a13-8004-f6c9b4ed36cb149a0714840-054c-4a13-8004-f6c9b4ed36cb15a0714840-054c-4a13-8004-f6c9b4ed36cb150a0714840-054c-4a13-8004-f6c9b4ed36cb151a0714840-054c-4a13-8004-f6c9b4ed36cb152a0714840-054c-4a13-8004-f6c9b4ed36cb153a0714840-054c-4a13-8004-f6c9b4ed36cb154a0714840-054c-4a13-8004-f6c9b4ed36cb155a0714840-054c-4a13-8004-f6c9b4ed36cb156a0714840-054c-4a13-8004-f6c9b4ed36cb157a0714840-054c-4a13-8004-f6c9b4ed36cb158a0714840-054c-4a13-8004-f6c9b4ed36cb159a0714840-054c-4a13-8004-f6c9b4ed36cb16a0714840-054c-4a13-8004-f6c9b4ed36cb160a0714840-054c-4a13-8004-f6c9b4ed36cb161a0714840-054c-4a13-8004-f6c9b4ed36cb162a0714840-054c-4a13-8004-f6c9b4ed36cb163a0714840-054c-4a13-8004-f6c9b4ed36cb164a0714840-054c-4a13-8004-f6c9b4ed36cb165a0714840-054c-4a13-8004-f6c9b4ed36cb166a0714840-054c-4a13-8004-f6c9b4ed36cb167a0714840-054c-4a13-8004-f6c9b4ed36cb168a0714840-054c-4a13-8004-f6c9b4ed36cb169a0714840-054c-4a13-8004-f6c9b4ed36cb17a0714840-054c-4a13-8004-f6c9b4ed36cb170a0714840-054c-4a13-8004-f6c9b4ed36cb171a0714840-054c-4a13-8004-f6c9b4ed36cb172a0714840-054c-4a13-8004-f6c9b4ed36cb173a0714840-054c-4a13-8004-f6c9b4ed36cb174a0714840-054c-4a13-8004-f6c9b4ed36cb175a0714840-054c-4a13-8004-f6c9b4ed36cb176a0714840-054c-4a13-8004-f6c9b4ed36cb177a0714840-054c-4a13-8004-f6c9b4ed36cb178a0714840-054c-4a13-8004-f6c9b4ed36cb179a0714840-054c-4a13-8004-f6c9b4ed36cb18a0714840-054c-4a13-8004-f6c9b4ed36cb180a0714840-054c-4a13-8004-f6c9b4ed36cb181a0714840-054c-4a13-8004-f6c9b4ed36cb182a0714840-054c-4a13-8004-f6c9b4ed36cb183a0714840-054c-4a13-8004-f6c9b4ed36cb184a0714840-054c-4a13-8004-f6c9b4ed36cb185a0714840-054c-4a13-8004-f6c9b4ed36cb186a0714840-054c-4a13-8004-f6c9b4ed36cb187a0714840-054c-4a13-8004-f6c9b4ed36cb188a0714840-054c-4a13-8004-f6c9b4ed36cb189a0714840-054c-4a13-8004-f6c9b4ed36cb19a0714840-054c-4a13-8004-f6c9b4ed36cb190a0714840-054c-4a13-8004-f6c9b4ed36cb191a0714840-054c-4a13-8004-f6c9b4ed36cb192a0714840-054c-4a13-8004-f6c9b4ed36cb193a0714840-054c-4a13-8004-f6c9b4ed36cb194a0714840-054c-4a13-8004-f6c9b4ed36cb195a0714840-054c-4a13-8004-f6c9b4ed36cb196a0714840-054c-4a13-8004-f6c9b4ed36cb197a0714840-054c-4a13-8004-f6c9b4ed36cb198a0714840-054c-4a13-8004-f6c9b4ed36cb199a0714840-054c-4a13-8004-f6c9b4ed36cb2a0714840-054c-4a13-8004-f6c9b4ed36cb20a0714840-054c-4a13-8004-f6c9b4ed36cb200a0714840-054c-4a13-8004-f6c9b4ed36cb201a0714840-054c-4a13-8004-f6c9b4ed36cb202a0714840-054c-4a13-8004-f6c9b4ed36cb203a0714840-054c-4a13-8004-f6c9b4ed36cb204a0714840-054c-4a13-8004-f6c9b4ed36cb205a0714840-054c-4a13-8004-f6c9b4ed36cb206a0714840-054c-4a13-8004-f6c9b4ed36cb207a0714840-054c-4a13-8004-f6c9b4ed36cb208a0714840-054c-4a13-8004-f6c9b4ed36cb209a0714840-054c-4a13-8004-f6c9b4ed36cb21a0714840-054c-4a13-8004-f6c9b4ed36cb210a0714840-054c-4a13-8004-f6c9b4ed36cb211a0714840-054c-4a13-8004-f6c9b4ed36cb212a0714840-054c-4a13-8004-f6c9b4ed36cb213a0714840-054c-4a13-8004-f6c9b4ed36cb214a0714840-054c-4a13-8004-f6c9b4ed36cb215a0714840-054c-4a13-8004-f6c9b4ed36cb216a0714840-054c-4a13-8004-f6c9b4ed36cb217a0714840-054c-4a13-8004-f6c9b4ed36cb218a0714840-054c-4a13-8004-f6c9b4ed36cb219a0714840-054c-4a13-8004-f6c9b4ed36cb22a0714840-054c-4a13-8004-f6c9b4ed36cb220a0714840-054c-4a13-8004-f6c9b4ed36cb221a0714840-054c-4a13-8004-f6c9b4ed36cb222a0714840-054c-4a13-8004-f6c9b4ed36cb223a0714840-054c-4a13-8004-f6c9b4ed36cb224a0714840-054c-4a13-8004-f6c9b4ed36cb225a0714840-054c-4a13-8004-f6c9b4ed36cb226a0714840-054c-4a13-8004-f6c9b4ed36cb227a0714840-054c-4a13-8004-f6c9b4ed36cb228a0714840-054c-4a13-8004-f6c9b4ed36cb229a0714840-054c-4a13-8004-f6c9b4ed36cb23a0714840-054c-4a13-8004-f6c9b4ed36cb230a0714840-054c-4a13-8004-f6c9b4ed36cb231a0714840-054c-4a13-8004-f6c9b4ed36cb232a0714840-054c-4a13-8004-f6c9b4ed36cb233a0714840-054c-4a13-8004-f6c9b4ed36cb234a0714840-054c-4a13-8004-f6c9b4ed36cb235a0714840-054c-4a13-8004-f6c9b4ed36cb236a0714840-054c-4a13-8004-f6c9b4ed36cb237a0714840-054c-4a13-8004-f6c9b4ed36cb238a0714840-054c-4a13-8004-f6c9b4ed36cb239a0714840-054c-4a13-8004-f6c9b4ed36cb24a0714840-054c-4a13-8004-f6c9b4ed36cb240a0714840-054c-4a13-8004-f6c9b4ed36cb241a0714840-054c-4a13-8004-f6c9b4ed36cb242a0714840-054c-4a13-8004-f6c9b4ed36cb243a0714840-054c-4a13-8004-f6c9b4ed36cb244a0714840-054c-4a13-8004-f6c9b4ed36cb245a0714840-054c-4a13-8004-f6c9b4ed36cb246a0714840-054c-4a13-8004-f6c9b4ed36cb247a0714840-054c-4a13-8004-f6c9b4ed36cb248a0714840-054c-4a13-8004-f6c9b4ed36cb249a0714840-054c-4a13-8004-f6c9b4ed36cb25a0714840-054c-4a13-8004-f6c9b4ed36cb250a0714840-054c-4a13-8004-f6c9b4ed36cb251a0714840-054c-4a13-8004-f6c9b4ed36cb252a0714840-054c-4a13-8004-f6c9b4ed36cb253a0714840-054c-4a13-8004-f6c9b4ed36cb254a0714840-054c-4a13-8004-f6c9b4ed36cb255a0714840-054c-4a13-8004-f6c9b4ed36cb256a0714840-054c-4a13-8004-f6c9b4ed36cb257a0714840-054c-4a13-8004-f6c9b4ed36cb258a0714840-054c-4a13-8004-f6c9b4ed36cb259a0714840-054c-4a13-8004-f6c9b4ed36cb26a0714840-054c-4a13-8004-f6c9b4ed36cb260a0714840-054c-4a13-8004-f6c9b4ed36cb261a0714840-054c-4a13-8004-f6c9b4ed36cb262a0714840-054c-4a13-8004-f6c9b4ed36cb263a0714840-054c-4a13-8004-f6c9b4ed36cb264a0714840-054c-4a13-8004-f6c9b4ed36cb265a0714840-054c-4a13-8004-f6c9b4ed36cb266a0714840-054c-4a13-8004-f6c9b4ed36cb267a0714840-054c-4a13-8004-f6c9b4ed36cb268a0714840-054c-4a13-8004-f6c9b4ed36cb269a0714840-054c-4a13-8004-f6c9b4ed36cb27a0714840-054c-4a13-8004-f6c9b4ed36cb270a0714840-054c-4a13-8004-f6c9b4ed36cb271a0714840-054c-4a13-8004-f6c9b4ed36cb272a0714840-054c-4a13-8004-f6c9b4ed36cb273a0714840-054c-4a13-8004-f6c9b4ed36cb274a0714840-054c-4a13-8004-f6c9b4ed36cb275a0714840-054c-4a13-8004-f6c9b4ed36cb276a0714840-054c-4a13-8004-f6c9b4ed36cb277a0714840-054c-4a13-8004-f6c9b4ed36cb278a0714840-054c-4a13-8004-f6c9b4ed36cb279a0714840-054c-4a13-8004-f6c9b4ed36cb28a0714840-054c-4a13-8004-f6c9b4ed36cb280a0714840-054c-4a13-8004-f6c9b4ed36cb281a0714840-054c-4a13-8004-f6c9b4ed36cb282a0714840-054c-4a13-8004-f6c9b4ed36cb283a0714840-054c-4a13-8004-f6c9b4ed36cb284a0714840-054c-4a13-8004-f6c9b4ed36cb285a0714840-054c-4a13-8004-f6c9b4ed36cb286a0714840-054c-4a13-8004-f6c9b4ed36cb287a0714840-054c-4a13-8004-f6c9b4ed36cb288a0714840-054c-4a13-8004-f6c9b4ed36cb289a0714840-054c-4a13-8004-f6c9b4ed36cb29a0714840-054c-4a13-8004-f6c9b4ed36cb290a0714840-054c-4a13-8004-f6c9b4ed36cb291a0714840-054c-4a13-8004-f6c9b4ed36cb292a0714840-054c-4a13-8004-f6c9b4ed36cb293a0714840-054c-4a13-8004-f6c9b4ed36cb294a0714840-054c-4a13-8004-f6c9b4ed36cb295a0714840-054c-4a13-8004-f6c9b4ed36cb296a0714840-054c-4a13-8004-f6c9b4ed36cb297a0714840-054c-4a13-8004-f6c9b4ed36cb298a0714840-054c-4a13-8004-f6c9b4ed36cb299a0714840-054c-4a13-8004-f6c9b4ed36cb3a0714840-054c-4a13-8004-f6c9b4ed36cb30a0714840-054c-4a13-8004-f6c9b4ed36cb300a0714840-054c-4a13-8004-f6c9b4ed36cb301a0714840-054c-4a13-8004-f6c9b4ed36cb302a0714840-054c-4a13-8004-f6c9b4ed36cb303a0714840-054c-4a13-8004-f6c9b4ed36cb304a0714840-054c-4a13-8004-f6c9b4ed36cb305a0714840-054c-4a13-8004-f6c9b4ed36cb306a0714840-054c-4a13-8004-f6c9b4ed36cb307a0714840-054c-4a13-8004-f6c9b4ed36cb308a0714840-054c-4a13-8004-f6c9b4ed36cb309a0714840-054c-4a13-8004-f6c9b4ed36cb31a0714840-054c-4a13-8004-f6c9b4ed36cb310a0714840-054c-4a13-8004-f6c9b4ed36cb311a0714840-054c-4a13-8004-f6c9b4ed36cb312a0714840-054c-4a13-8004-f6c9b4ed36cb313a0714840-054c-4a13-8004-f6c9b4ed36cb314a0714840-054c-4a13-8004-f6c9b4ed36cb315a0714840-054c-4a13-8004-f6c9b4ed36cb316a0714840-054c-4a13-8004-f6c9b4ed36cb317a0714840-054c-4a13-8004-f6c9b4ed36cb318a0714840-054c-4a13-8004-f6c9b4ed36cb319a0714840-054c-4a13-8004-f6c9b4ed36cb32a0714840-054c-4a13-8004-f6c9b4ed36cb320a0714840-054c-4a13-8004-f6c9b4ed36cb321a0714840-054c-4a13-8004-f6c9b4ed36cb322a0714840-054c-4a13-8004-f6c9b4ed36cb323a0714840-054c-4a13-8004-f6c9b4ed36cb324a0714840-054c-4a13-8004-f6c9b4ed36cb325a0714840-054c-4a13-8004-f6c9b4ed36cb326a0714840-054c-4a13-8004-f6c9b4ed36cb327a0714840-054c-4a13-8004-f6c9b4ed36cb328a0714840-054c-4a13-8004-f6c9b4ed36cb329a0714840-054c-4a13-8004-f6c9b4ed36cb33a0714840-054c-4a13-8004-f6c9b4ed36cb330a0714840-054c-4a13-8004-f6c9b4ed36cb331a0714840-054c-4a13-8004-f6c9b4ed36cb332a0714840-054c-4a13-8004-f6c9b4ed36cb333a0714840-054c-4a13-8004-f6c9b4ed36cb334a0714840-054c-4a13-8004-f6c9b4ed36cb335a0714840-054c-4a13-8004-f6c9b4ed36cb336a0714840-054c-4a13-8004-f6c9b4ed36cb337a0714840-054c-4a13-8004-f6c9b4ed36cb338a0714840-054c-4a13-8004-f6c9b4ed36cb339a0714840-054c-4a13-8004-f6c9b4ed36cb34a0714840-054c-4a13-8004-f6c9b4ed36cb340a0714840-054c-4a13-8004-f6c9b4ed36cb341a0714840-054c-4a13-8004-f6c9b4ed36cb342a0714840-054c-4a13-8004-f6c9b4ed36cb343a0714840-054c-4a13-8004-f6c9b4ed36cb344a0714840-054c-4a13-8004-f6c9b4ed36cb345a0714840-054c-4a13-8004-f6c9b4ed36cb346a0714840-054c-4a13-8004-f6c9b4ed36cb347a0714840-054c-4a13-8004-f6c9b4ed36cb348a0714840-054c-4a13-8004-f6c9b4ed36cb349a0714840-054c-4a13-8004-f6c9b4ed36cb35a0714840-054c-4a13-8004-f6c9b4ed36cb350a0714840-054c-4a13-8004-f6c9b4ed36cb351a0714840-054c-4a13-8004-f6c9b4ed36cb352a0714840-054c-4a13-8004-f6c9b4ed36cb353a0714840-054c-4a13-8004-f6c9b4ed36cb354a0714840-054c-4a13-8004-f6c9b4ed36cb355a0714840-054c-4a13-8004-f6c9b4ed36cb356a0714840-054c-4a13-8004-f6c9b4ed36cb357a0714840-054c-4a13-8004-f6c9b4ed36cb358a0714840-054c-4a13-8004-f6c9b4ed36cb359a0714840-054c-4a13-8004-f6c9b4ed36cb36a0714840-054c-4a13-8004-f6c9b4ed36cb360a0714840-054c-4a13-8004-f6c9b4ed36cb361a0714840-054c-4a13-8004-f6c9b4ed36cb362a0714840-054c-4a13-8004-f6c9b4ed36cb363a0714840-054c-4a13-8004-f6c9b4ed36cb364a0714840-054c-4a13-8004-f6c9b4ed36cb365a0714840-054c-4a13-8004-f6c9b4ed36cb366a0714840-054c-4a13-8004-f6c9b4ed36cb367a0714840-054c-4a13-8004-f6c9b4ed36cb368a0714840-054c-4a13-8004-f6c9b4ed36cb369a0714840-054c-4a13-8004-f6c9b4ed36cb37a0714840-054c-4a13-8004-f6c9b4ed36cb370a0714840-054c-4a13-8004-f6c9b4ed36cb371a0714840-054c-4a13-8004-f6c9b4ed36cb372a0714840-054c-4a13-8004-f6c9b4ed36cb373a0714840-054c-4a13-8004-f6c9b4ed36cb374a0714840-054c-4a13-8004-f6c9b4ed36cb375a0714840-054c-4a13-8004-f6c9b4ed36cb376a0714840-054c-4a13-8004-f6c9b4ed36cb377a0714840-054c-4a13-8004-f6c9b4ed36cb378a0714840-054c-4a13-8004-f6c9b4ed36cb379a0714840-054c-4a13-8004-f6c9b4ed36cb38a0714840-054c-4a13-8004-f6c9b4ed36cb380a0714840-054c-4a13-8004-f6c9b4ed36cb381a0714840-054c-4a13-8004-f6c9b4ed36cb382a0714840-054c-4a13-8004-f6c9b4ed36cb383a0714840-054c-4a13-8004-f6c9b4ed36cb384a0714840-054c-4a13-8004-f6c9b4ed36cb385a0714840-054c-4a13-8004-f6c9b4ed36cb386a0714840-054c-4a13-8004-f6c9b4ed36cb387a0714840-054c-4a13-8004-f6c9b4ed36cb388a0714840-054c-4a13-8004-f6c9b4ed36cb389a0714840-054c-4a13-8004-f6c9b4ed36cb39a0714840-054c-4a13-8004-f6c9b4ed36cb390a0714840-054c-4a13-8004-f6c9b4ed36cb391a0714840-054c-4a13-8004-f6c9b4ed36cb392a0714840-054c-4a13-8004-f6c9b4ed36cb393a0714840-054c-4a13-8004-f6c9b4ed36cb394a0714840-054c-4a13-8004-f6c9b4ed36cb395a0714840-054c-4a13-8004-f6c9b4ed36cb396a0714840-054c-4a13-8004-f6c9b4ed36cb397a0714840-054c-4a13-8004-f6c9b4ed36cb398a0714840-054c-4a13-8004-f6c9b4ed36cb399a0714840-054c-4a13-8004-f6c9b4ed36cb4a0714840-054c-4a13-8004-f6c9b4ed36cb40a0714840-054c-4a13-8004-f6c9b4ed36cb400a0714840-054c-4a13-8004-f6c9b4ed36cb401a0714840-054c-4a13-8004-f6c9b4ed36cb402a0714840-054c-4a13-8004-f6c9b4ed36cb403a0714840-054c-4a13-8004-f6c9b4ed36cb404a0714840-054c-4a13-8004-f6c9b4ed36cb405a0714840-054c-4a13-8004-f6c9b4ed36cb406a0714840-054c-4a13-8004-f6c9b4ed36cb407a0714840-054c-4a13-8004-f6c9b4ed36cb408a0714840-054c-4a13-8004-f6c9b4ed36cb409a0714840-054c-4a13-8004-f6c9b4ed36cb41a0714840-054c-4a13-8004-f6c9b4ed36cb410a0714840-054c-4a13-8004-f6c9b4ed36cb411a0714840-054c-4a13-8004-f6c9b4ed36cb412a0714840-054c-4a13-8004-f6c9b4ed36cb413a0714840-054c-4a13-8004-f6c9b4ed36cb414a0714840-054c-4a13-8004-f6c9b4ed36cb415a0714840-054c-4a13-8004-f6c9b4ed36cb416a0714840-054c-4a13-8004-f6c9b4ed36cb417a0714840-054c-4a13-8004-f6c9b4ed36cb418a0714840-054c-4a13-8004-f6c9b4ed36cb419a0714840-054c-4a13-8004-f6c9b4ed36cb42a0714840-054c-4a13-8004-f6c9b4ed36cb420a0714840-054c-4a13-8004-f6c9b4ed36cb421a0714840-054c-4a13-8004-f6c9b4ed36cb422a0714840-054c-4a13-8004-f6c9b4ed36cb423a0714840-054c-4a13-8004-f6c9b4ed36cb424a0714840-054c-4a13-8004-f6c9b4ed36cb425a0714840-054c-4a13-8004-f6c9b4ed36cb426a0714840-054c-4a13-8004-f6c9b4ed36cb427a0714840-054c-4a13-8004-f6c9b4ed36cb428a0714840-054c-4a13-8004-f6c9b4ed36cb429a0714840-054c-4a13-8004-f6c9b4ed36cb43a0714840-054c-4a13-8004-f6c9b4ed36cb430a0714840-054c-4a13-8004-f6c9b4ed36cb431a0714840-054c-4a13-8004-f6c9b4ed36cb432a0714840-054c-4a13-8004-f6c9b4ed36cb433a0714840-054c-4a13-8004-f6c9b4ed36cb434a0714840-054c-4a13-8004-f6c9b4ed36cb435a0714840-054c-4a13-8004-f6c9b4ed36cb436a0714840-054c-4a13-8004-f6c9b4ed36cb437a0714840-054c-4a13-8004-f6c9b4ed36cb438a0714840-054c-4a13-8004-f6c9b4ed36cb439a0714840-054c-4a13-8004-f6c9b4ed36cb44a0714840-054c-4a13-8004-f6c9b4ed36cb440a0714840-054c-4a13-8004-f6c9b4ed36cb441a0714840-054c-4a13-8004-f6c9b4ed36cb442a0714840-054c-4a13-8004-f6c9b4ed36cb443a0714840-054c-4a13-8004-f6c9b4ed36cb444a0714840-054c-4a13-8004-f6c9b4ed36cb445a0714840-054c-4a13-8004-f6c9b4ed36cb446a0714840-054c-4a13-8004-f6c9b4ed36cb447a0714840-054c-4a13-8004-f6c9b4ed36cb448a0714840-054c-4a13-8004-f6c9b4ed36cb449a0714840-054c-4a13-8004-f6c9b4ed36cb45a0714840-054c-4a13-8004-f6c9b4ed36cb450a0714840-054c-4a13-8004-f6c9b4ed36cb451a0714840-054c-4a13-8004-f6c9b4ed36cb452a0714840-054c-4a13-8004-f6c9b4ed36cb453a0714840-054c-4a13-8004-f6c9b4ed36cb454a0714840-054c-4a13-8004-f6c9b4ed36cb455a0714840-054c-4a13-8004-f6c9b4ed36cb456a0714840-054c-4a13-8004-f6c9b4ed36cb457a0714840-054c-4a13-8004-f6c9b4ed36cb458a0714840-054c-4a13-8004-f6c9b4ed36cb459a0714840-054c-4a13-8004-f6c9b4ed36cb46a0714840-054c-4a13-8004-f6c9b4ed36cb460a0714840-054c-4a13-8004-f6c9b4ed36cb461a0714840-054c-4a13-8004-f6c9b4ed36cb462a0714840-054c-4a13-8004-f6c9b4ed36cb463a0714840-054c-4a13-8004-f6c9b4ed36cb464a0714840-054c-4a13-8004-f6c9b4ed36cb465a0714840-054c-4a13-8004-f6c9b4ed36cb466a0714840-054c-4a13-8004-f6c9b4ed36cb467a0714840-054c-4a13-8004-f6c9b4ed36cb468a0714840-054c-4a13-8004-f6c9b4ed36cb469a0714840-054c-4a13-8004-f6c9b4ed36cb47a0714840-054c-4a13-8004-f6c9b4ed36cb470a0714840-054c-4a13-8004-f6c9b4ed36cb471a0714840-054c-4a13-8004-f6c9b4ed36cb472a0714840-054c-4a13-8004-f6c9b4ed36cb473a0714840-054c-4a13-8004-f6c9b4ed36cb474a0714840-054c-4a13-8004-f6c9b4ed36cb475a0714840-054c-4a13-8004-f6c9b4ed36cb476a0714840-054c-4a13-8004-f6c9b4ed36cb477a0714840-054c-4a13-8004-f6c9b4ed36cb478a0714840-054c-4a13-8004-f6c9b4ed36cb479a0714840-054c-4a13-8004-f6c9b4ed36cb48a0714840-054c-4a13-8004-f6c9b4ed36cb480a0714840-054c-4a13-8004-f6c9b4ed36cb481a0714840-054c-4a13-8004-f6c9b4ed36cb482a0714840-054c-4a13-8004-f6c9b4ed36cb483a0714840-054c-4a13-8004-f6c9b4ed36cb484a0714840-054c-4a13-8004-f6c9b4ed36cb485a0714840-054c-4a13-8004-f6c9b4ed36cb486a0714840-054c-4a13-8004-f6c9b4ed36cb487a0714840-054c-4a13-8004-f6c9b4ed36cb488a0714840-054c-4a13-8004-f6c9b4ed36cb489a0714840-054c-4a13-8004-f6c9b4ed36cb49a0714840-054c-4a13-8004-f6c9b4ed36cb490a0714840-054c-4a13-8004-f6c9b4ed36cb491a0714840-054c-4a13-8004-f6c9b4ed36cb492a0714840-054c-4a13-8004-f6c9b4ed36cb493a0714840-054c-4a13-8004-f6c9b4ed36cb494a0714840-054c-4a13-8004-f6c9b4ed36cb495a0714840-054c-4a13-8004-f6c9b4ed36cb496a0714840-054c-4a13-8004-f6c9b4ed36cb497a0714840-054c-4a13-8004-f6c9b4ed36cb498a0714840-054c-4a13-8004-f6c9b4ed36cb499a0714840-054c-4a13-8004-f6c9b4ed36cb5a0714840-054c-4a13-8004-f6c9b4ed36cb50a0714840-054c-4a13-8004-f6c9b4ed36cb500a0714840-054c-4a13-8004-f6c9b4ed36cb501a0714840-054c-4a13-8004-f6c9b4ed36cb502a0714840-054c-4a13-8004-f6c9b4ed36cb503a0714840-054c-4a13-8004-f6c9b4ed36cb504a0714840-054c-4a13-8004-f6c9b4ed36cb51a0714840-054c-4a13-8004-f6c9b4ed36cb52a0714840-054c-4a13-8004-f6c9b4ed36cb53a0714840-054c-4a13-8004-f6c9b4ed36cb54a0714840-054c-4a13-8004-f6c9b4ed36cb55a0714840-054c-4a13-8004-f6c9b4ed36cb56a0714840-054c-4a13-8004-f6c9b4ed36cb57a0714840-054c-4a13-8004-f6c9b4ed36cb58a0714840-054c-4a13-8004-f6c9b4ed36cb59a0714840-054c-4a13-8004-f6c9b4ed36cb6a0714840-054c-4a13-8004-f6c9b4ed36cb60a0714840-054c-4a13-8004-f6c9b4ed36cb61a0714840-054c-4a13-8004-f6c9b4ed36cb62a0714840-054c-4a13-8004-f6c9b4ed36cb63a0714840-054c-4a13-8004-f6c9b4ed36cb64a0714840-054c-4a13-8004-f6c9b4ed36cb65a0714840-054c-4a13-8004-f6c9b4ed36cb66a0714840-054c-4a13-8004-f6c9b4ed36cb67a0714840-054c-4a13-8004-f6c9b4ed36cb68a0714840-054c-4a13-8004-f6c9b4ed36cb69a0714840-054c-4a13-8004-f6c9b4ed36cb7a0714840-054c-4a13-8004-f6c9b4ed36cb70a0714840-054c-4a13-8004-f6c9b4ed36cb71a0714840-054c-4a13-8004-f6c9b4ed36cb72a0714840-054c-4a13-8004-f6c9b4ed36cb73a0714840-054c-4a13-8004-f6c9b4ed36cb74a0714840-054c-4a13-8004-f6c9b4ed36cb75a0714840-054c-4a13-8004-f6c9b4ed36cb76a0714840-054c-4a13-8004-f6c9b4ed36cb77a0714840-054c-4a13-8004-f6c9b4ed36cb78a0714840-054c-4a13-8004-f6c9b4ed36cb79a0714840-054c-4a13-8004-f6c9b4ed36cb8a0714840-054c-4a13-8004-f6c9b4ed36cb80a0714840-054c-4a13-8004-f6c9b4ed36cb81a0714840-054c-4a13-8004-f6c9b4ed36cb82a0714840-054c-4a13-8004-f6c9b4ed36cb83a0714840-054c-4a13-8004-f6c9b4ed36cb84a0714840-054c-4a13-8004-f6c9b4ed36cb85a0714840-054c-4a13-8004-f6c9b4ed36cb86a0714840-054c-4a13-8004-f6c9b4ed36cb87a0714840-054c-4a13-8004-f6c9b4ed36cb88a0714840-054c-4a13-8004-f6c9b4ed36cb89a0714840-054c-4a13-8004-f6c9b4ed36cb9a0714840-054c-4a13-8004-f6c9b4ed36cb90a0714840-054c-4a13-8004-f6c9b4ed36cb91a0714840-054c-4a13-8004-f6c9b4ed36cb92a0714840-054c-4a13-8004-f6c9b4ed36cb93a0714840-054c-4a13-8004-f6c9b4ed36cb94a0714840-054c-4a13-8004-f6c9b4ed36cb95a0714840-054c-4a13-8004-f6c9b4ed36cb96a0714840-054c-4a13-8004-f6c9b4ed36cb97a0714840-054c-4a13-8004-f6c9b4ed36cb98a0714840-054c-4a13-8004-f6c9b4ed36cb99aafdc50c-e6ca-4603-a190-7f0849a6ca010aafdc50c-e6ca-4603-a190-7f0849a6ca011aafdc50c-e6ca-4603-a190-7f0849a6ca0110aafdc50c-e6ca-4603-a190-7f0849a6ca0111aafdc50c-e6ca-4603-a190-7f0849a6ca0112aafdc50c-e6ca-4603-a190-7f0849a6ca0113aafdc50c-e6ca-4603-a190-7f0849a6ca0114aafdc50c-e6ca-4603-a190-7f0849a6ca0115aafdc50c-e6ca-4603-a190-7f0849a6ca0116aafdc50c-e6ca-4603-a190-7f0849a6ca0117aafdc50c-e6ca-4603-a190-7f0849a6ca0118aafdc50c-e6ca-4603-a190-7f0849a6ca0119aafdc50c-e6ca-4603-a190-7f0849a6ca012aafdc50c-e6ca-4603-a190-7f0849a6ca0120aafdc50c-e6ca-4603-a190-7f0849a6ca0121aafdc50c-e6ca-4603-a190-7f0849a6ca0122aafdc50c-e6ca-4603-a190-7f0849a6ca0123aafdc50c-e6ca-4603-a190-7f0849a6ca0124aafdc50c-e6ca-4603-a190-7f0849a6ca013aafdc50c-e6ca-4603-a190-7f0849a6ca014aafdc50c-e6ca-4603-a190-7f0849a6ca015aafdc50c-e6ca-4603-a190-7f0849a6ca016aafdc50c-e6ca-4603-a190-7f0849a6ca017aafdc50c-e6ca-4603-a190-7f0849a6ca018aafdc50c-e6ca-4603-a190-7f0849a6ca019aafdc50c-e6ca-4603-a190-7f0849a6ca01a0aafdc50c-e6ca-4603-a190-7f0849a6ca01a1aafdc50c-e6ca-4603-a190-7f0849a6ca01a10aafdc50c-e6ca-4603-a190-7f0849a6ca01a11aafdc50c-e6ca-4603-a190-7f0849a6ca01a12aafdc50c-e6ca-4603-a190-7f0849a6ca01a13aafdc50c-e6ca-4603-a190-7f0849a6ca01a14aafdc50c-e6ca-4603-a190-7f0849a6ca01a15aafdc50c-e6ca-4603-a190-7f0849a6ca01a16aafdc50c-e6ca-4603-a190-7f0849a6ca01a17aafdc50c-e6ca-4603-a190-7f0849a6ca01a18aafdc50c-e6ca-4603-a190-7f0849a6ca01a19aafdc50c-e6ca-4603-a190-7f0849a6ca01a2aafdc50c-e6ca-4603-a190-7f0849a6ca01a20aafdc50c-e6ca-4603-a190-7f0849a6ca01a21aafdc50c-e6ca-4603-a190-7f0849a6ca01a22aafdc50c-e6ca-4603-a190-7f0849a6ca01a23aafdc50c-e6ca-4603-a190-7f0849a6ca01a24aafdc50c-e6ca-4603-a190-7f0849a6ca01a3aafdc50c-e6ca-4603-a190-7f0849a6ca01a4aafdc50c-e6ca-4603-a190-7f0849a6ca01a5aafdc50c-e6ca-4603-a190-7f0849a6ca01a6aafdc50c-e6ca-4603-a190-7f0849a6ca01a7aafdc50c-e6ca-4603-a190-7f0849a6ca01a8aafdc50c-e6ca-4603-a190-7f0849a6ca01a9b130223e15db4abbb4359b084321fa5cc66c1ca9866d4beb90571bd9e5a22752d706e44199b7415ba43bc45dc4439e98fcd120248a4d4b3e886d7353324df371libqueuetest002d082580b6403994faa27d937c074flibqueuetest003932a61eab4cab8f29b8f1f529855dlibqueuetest00818cfdf08d4ecf9967b37b882a1e92libqueuetest0116d108c0da486090982340ad3fb0a9libqueuetest01463a76178843abb510f251d19f85d7libqueuetest03639ed8784c4283b71697dc28330addlibqueuetest0471cfc1772748ef8fb50c7939ef4867libqueuetest04e9570a60654d11a0f8195be6be516elibqueuetest057b2b6eebd645df8d0a39f2e26583c1libqueuetest0654f26bfd7d4ce1b740dbaf8e1688d1libqueuetest069b26704d0448cebf0c1168ab9d4383libqueuetest07811d7be39e47d893b8bb73156c4a39libqueuetest07bd9e0e665b45119131d8171942671blibqueuetest082773c6fe6f41489afc9b5d4e9f5072libqueuetest083189c3af9d4e99bea60c700978c21blibqueuetest092d5a15ff19440ba3a7f64a012a44b8libqueuetest0975810a15b048769bf2378692b9b67dlibqueuetest0a4851bdabb14231a6469c8ad5bd3170libqueuetest0aceaa206f7f4983b65796d42e9be025libqueuetest0c30d1d779b84c1c83328e15dfd0b485libqueuetest0c5c9a7ca8f34ac298360bc16ee58f94libqueuetest0cc948774092450889a6b3ab3f470cc3libqueuetest0cebb1d4dcfa42cb921facca588adb70libqueuetest0f1f7ebdb8eb4e18aea82579d9205b4blibqueuetest0fe2a5a1baab448fa50f7393672f1865libqueuetest0feeb7ee47d845978a9f11d476c14f92libqueuetest10eed0e08e67454291e8646d434a316alibqueuetest11421dd1aaef43918447f6c940859b2dlibqueuetest1218ea58583a4c9ba4986ed93c36c375libqueuetest12f0726099c24342b22e1038b5d84c41libqueuetest12f30707e9c3466c9950f16a11838042libqueuetest14339d4dbbf04221a003069f097cf1ddlibqueuetest14e1873c017741e0b49ed00e49dd964dlibqueuetest14fc93c3ec0a45119ca0bcb116c3a27flibqueuetest154173530ab44ab897e6aeec2e911bb4libqueuetest16d95faf3e114746a3e3b29cf7c73dadlibqueuetest185113d155094da0a4427f5454e2f159libqueuetest18cb1b05fbe242af92cdf75c22c14a51libqueuetest18d10206616b4e419842aafca5048cbblibqueuetest18e76f2c368349528921a1147273b779libqueuetest19b1b2b666ea4d2d8f377fb1a45242d3libqueuetest1d6d2ead58914e37b530fa772a76a3aelibqueuetest2016db1ebd9e46b9b7417fa2634a16a6libqueuetest20655b629f0e4187aa91ed38cbd79b99libqueuetest21bade9aa8e542e3a760ddec1dafc1cdlibqueuetest22e5aa1918154126a4241e31abcee07elibqueuetest2443daa037e044558f958a9672103b74libqueuetest2467451dbf1e48e2be5684e352cd8e9dlibqueuetest2570b0acb0644ed0aa5aeee153666dfalibqueuetest2906650317174994814288ffb1c2de16libqueuetest29824696fda74c2094fa72e7faf78ed7libqueuetest2ce30f307eff46309125aa9e6a177f7clibqueuetest2dca91c0f8cd41459260769a4bbffc5elibqueuetest2de0e31243964160987df5dab940479elibqueuetest2ec806ad6b034a8cafe0578183e72990libqueuetest2f1f2dd6f689407aab5a89d306b35fc1libqueuetest2fb2e62f4c9c418da6d0d3627aad924dlibqueuetest302d802e283249988f93f04f2f172b1alibqueuetest30d2c36f5ca0485984a20efd1b1644ealibqueuetest31afc4a5a40144098146a56be2a64f4dlibqueuetest327f61c28b604e0ba3c50f3f94bbffa5libqueuetest32e4557aa7b045449c8c73eddfcb970flibqueuetest33be839eeaf8482c92ee7a0ef031da23libqueuetest36a3ffeb30ff4da09bcb72cbf2975fcelibqueuetest36e4ab146fb94820a7bcb70dd456cac5libqueuetest371e0d6f2a3940448d8252c45793664flibqueuetest386833a163074ef99c1a4932b066b16alibqueuetest3877adf0177e4264be6103df4b75457alibqueuetest39cae1caac8044fc829ff04bf8faa88dlibqueuetest3b45ce80f3744759a6844ea9f581d3f1libqueuetest3c24b19cb4d749788418d82875796667libqueuetest3ce00126a3564dd996316ed1d0c91c2elibqueuetest3d4787cd159f4469bc755be9ca6e2041libqueuetest3ddca4760667487a922ebac576a1d6a8libqueuetest3f3ec52dbeb04799aa3fe08e1a306673libqueuetest416c1f8dbd7c4bb1844d54da490edcc1libqueuetest41b76b3b3a1f4e06ba9c34bc0d6cdb90libqueuetest41ef359d9f6f40c9825d31a39582557alibqueuetest4264708a828f4c89b8dbd5dd990a00eflibqueuetest460d1712438c45bd87fd375831a64634libqueuetest46dd5ed3cd01462d9ce32daf3f93eeb0libqueuetest4b6dcfe25083462d90e86ce9ff67e467libqueuetest4b7188ccc5c449d4902f506a68507deblibqueuetest4ee6f567da44418d8316f3eb3d731888libqueuetest4fcd7d73a1194aa5a43e227bcdd762d3libqueuetest5273e56fdc1b40d9a7ca1a963c30d84elibqueuetest5348a0d9d94648bb88c0bf554c8ea8celibqueuetest539c3ec36bda42b3b165c0d78d58a25flibqueuetest543b8539bea64ce1be6e535e42369d93libqueuetest547ff13666ad4d61bfa8dfbc95763f8clibqueuetest54f10d02a73849d6aa5664dff2b71719libqueuetest56531e8eb13e4885ae8f63645277d4f1libqueuetest5723ac90bf91452ba197f4ecbe32b6ealibqueuetest580b9b9e6d994a088b7f7274abb81c21libqueuetest586a280606b0442094b7ab6cb6f6834alibqueuetest5b10363915f24112bcfc396521d6fd54libqueuetest5c1cab293861419f8b233ea5cebb369flibqueuetest605335ec8ec649a08e8317728b1c39d7libqueuetest60d0d65010ef4ee49b7407eb6996368blibqueuetest623a80ef851d4f7fb33c0c9cd0ce6c92libqueuetest631be3384ac94361b799c0177e4d7a41libqueuetest6474213d0ae742b4a9b932f4d0652a93libqueuetest649f67f239d64596a57ad8675c2141a3libqueuetest64e6a35003904f71806bf765130af2c5libqueuetest653c3e451a354323bf1d941f1f04580dlibqueuetest657ad818ce8f47d99348b459b20f675blibqueuetest65983bee87834594a609f21cf33f090elibqueuetest65c5b988df944718a20d4eeacee19fcdlibqueuetest666568ffe780479fa887d12886857312libqueuetest69450dba809b4110b827852cf78ce6b9libqueuetest6ac85dd1ab224eae93be047c43f76a79libqueuetest6afd84c95eba412384702b3e4004f1d2libqueuetest6c68902a98464d2f8523ca73649f5399libqueuetest71988a2e5b994e1d8e8faf21258525edlibqueuetest733d61dd581545249468190abcaff745libqueuetest73f5973d23fb4e97b4daaeb005c5dbcalibqueuetest749de190a72344e1bb985ab7ad2049aalibqueuetest751dc1053cb141d3bfe17792d39944e4libqueuetest7626a5aa946e490eb781f4395cbb1f0clibqueuetest7667db59e8de4d729a63cd257b4ef604libqueuetest78bc563677c746b98d09e6d92c231839libqueuetest7978242bbf8740cba7301adbfafb211blibqueuetest7a43fef4a20f425286e8633842a24044libqueuetest7a68c95324304efea30dc5be881a77b4libqueuetest7bd25e13f25d4e0e8aaeaf0b5d5fe4a0libqueuetest7c5892ced59248cca230630749b6daaflibqueuetest7d1ec927ab1040c9976f02126fb0711clibqueuetest7d2e9f4f5eec4a04b8ef962c7421e2a6libqueuetest80b91307886545939b04a5b143ab282flibqueuetest813417f3f29346389e8af7f80931ef09libqueuetest8136f2d4c1004c3d8a08d94d8b7ce929libqueuetest826b948c63af4d63924c972160b8ebfalibqueuetest840e37fade9e45c5be13e8d0f59c3150libqueuetest8600b641988b443d8624e617de3846e2libqueuetest880ff5d375004f719499f84c4ec7c771libqueuetest896c207bb89c43f58e8d2efc4fee3a94libqueuetest8a22f25035ea49eb8e29b8e4c8dcc69dlibqueuetest9002897afc9145d2b181ce56d7f8a536libqueuetest910c33dd87fe4be99fd53b7afb13acc3libqueuetest91160e1e536e4cf099cc6a0656acdfealibqueuetest9143b5c44f3f4032ba202974c59d29b4libqueuetest91f4539db94b4161a42f09ef11407722libqueuetest969b52ca28e644218ed7a6f55c9d5ce4libqueuetest96cfd3cf2fff461ab3bfeafc1fac2b54libqueuetest9755f06fdfb34452b5cef050a0bcc9d7libqueuetest98a4f75e1fb74af8813a51894867325flibqueuetest9aa1a563e18a48c7a05752847382d6eclibqueuetest9b9496132be24f7098bd3050493c5b8flibqueuetest9c84c8265c634feb9e4c3250d3f4d018libqueuetest9daddaf169d249b888c164c497dc3d1clibqueuetest9e0a452496b641a486c3eb38247c7d8blibqueuetesta11028fb8f754b7a834136b839d08f37libqueuetesta113e9e334da458fb2c449d6cddd34b5libqueuetesta1d8ea639d0143cea84f004302ea2638libqueuetesta2365f25912e411f92334a427d237a51libqueuetesta3fa94ce12a7426f8c010162ce6d446flibqueuetesta44998cf7e9d4692bcaafd61a759d178libqueuetesta467d0f93d544f66a80e48958927d115libqueuetesta820d6dfcb984b07aec46cdee4b2c552libqueuetesta85ec734e5734f2885d7939feb2facc5libqueuetesta8937499b7254720a004ff8762024277libqueuetesta9165ff3641b4604875832f896ca7766libqueuetesta9da65e648374ef2abcfff624a74baa0libqueuetesta9e90c2e46cc46119c77149d2ad25130libqueuetestabf8990558184bcda92539ae6b97c6b9libqueuetestac85d22d25fb4cd29ec2f5b27143ac42libqueuetestaca9054209a64ce0afab9a13b84fdcb1libqueuetestaf27a9ce7b2e4da8b8a6584696eaaab1libqueuetestaf9ac3aa1b284645a321e8dbef6b8b94libqueuetestb05d6d70fe5f4b66a1ce113e66b079calibqueuetestb1286bdd1575430db9c002b5521b3ee4libqueuetestb19b104538ad4ac980c44d63496c51ealibqueuetestb26f787743e8426aae1ccef9dafad984libqueuetestb2b3ca439d924adc8dadae99efb5199blibqueuetestb2ecf20f60484c5da20e3786aaca1978libqueuetestb32539fb9adf4e488f78a920414b8efdlibqueuetestb55fb47016e74e0e9df393b5abde8c589libqueuetestb5d04beec1f5481086d3a156419a84aelibqueuetestb63410bb1c2e4f8e89339682a4b2c4fclibqueuetestb75760a491344522bf18c65484b3c671libqueuetestb75b7c301e18401d90596cab11442bbblibqueuetestb8cc4a46eb144994ba83f21261f94309libqueuetestb9e1e25162a14a798601c37395bdadcalibqueuetestba6d4b288aec4a16940916c258f15298libqueuetestba72bc01b54a45a4b25f866e23ee7e07libqueuetestbca09d996b824dd5beef02f1d8df5285libqueuetestbd1dae790f9d40adb3ebe003a25d4de6libqueuetestbf2557e1f95045e489d5227ffd47aa92libqueuetestc2f88d177cf4421b8456bc8288039f72libqueuetestc52889a95c9d48738ca479791ad9d0a0libqueuetestc5df319d570044e0ab5fed7cc3913234libqueuetestc5f33a5a4f8f4bb894f1bae231adf58alibqueuetestc6a1d0c3234740c691f0d50ef9996467libqueuetestc77a61f5d9f8401099e42c67ef838b66libqueuetestc907d42adc6f45acba5c05a3ca04c1b3libqueuetestc9e4fe6fc974439f8b296ac3cdfa6662libqueuetestc9ffd90e634a4df3ad9c1e19b3faf940libqueuetestca19bbbd8e554834851106391b465ecelibqueuetestcd2a4869af3a45998cddb669b92c8ae6libqueuetestce8806d087694f1d823bb95926cf6af7libqueuetestce93149ad15242cb83c005a9ca06577blibqueuetestcf3227f9e1424aec9a2f4cb8a113f47flibqueuetestd2b4e8c62d9f40dcab419c7552e08c3clibqueuetestd5535c47080948939a3a2df3a8c27862libqueuetestd5bfb5f082ba4ddba0491646afea5cadlibqueuetestd674f0d73de741349aecfc7987251d14libqueuetestd90b1f4693c94b239a9256569c1c6c47libqueuetestd9226fac3101445188f2f6570ef889a9libqueuetestd925dc725be44d2a83b0e9b2abdfc465libqueuetestdde74812f452407da46d3ff406ce27c5libqueuetestde5f75ebb7e145a0af2a24afc0b08c15libqueuetestdea90127bc614bdfa1530cd6d7514dbdlibqueueteste0e375cb043d43c7ab72937d2c2bf82alibqueueteste17c589218784fef97c01e7341852daclibqueueteste2ab2ea549b5448c9936eb69d91164d1libqueueteste3212063cf8e4df8985bdcc60e53923blibqueueteste3ee4ffced55473b817116696ba3678blibqueueteste5c1dc96d5bc4ac68cc1ee988d2238cdlibqueueteste8586f4da273463bb3b2c7e20038ffa5libqueueteste86419ca7d614281889d45aec1ba1c21libqueueteste88b4e93bac545afb9e7f0aea6ff7287libqueuetestea8c2fd8baec4db5adc2737975b20caelibqueuetesteac621318ffd4b5d8685971e6c211a39libqueuetesteadab865c26e4e31874a01947ee46f39libqueuetesteb40233d72b549e5a6f1940b39044848libqueuetestedc2f8817c3f4e71b015b26f1aa2ba18libqueuetestee010bbef6004c39bb93348819f1e827libqueuetestf055dc24696a4ac69d3fc25cc86983falibqueuetestf20c5080821547ed898b7bdc95bf3ef6libqueuetestf27c0b990fba492fa45f232ab28abab5libqueuetestf3dc054893ba4529ac3c42ca1d1cccdalibqueuetestf4f74b8278df49e3bec5fa292d299841libqueuetestf5190554a9cd4c0f8ac40bb1d0ff783elibqueuetestf6a7a366fb04483c8c1ef131a92b6c31libqueuetestf6c9c6194bde495baa70f339a5244337libqueuetestf7414e03b21c4a59b80788ab59d77a1elibqueuetestf846253f42354a38840fe08ceae0269flibqueuetestfb0b8593f3db400fa99a547b4c2b2af7libqueuetestfb9b6ecd9217461cb3bf583ece43c18flibqueuetestfc79004a3aec4d7c894cd9697690eed7libqueuetestfc9f1e5b157d4fdcbaed189d4dbdabb4libqueuetestfe280cfa9e0e4edf995281eafc3186f2libqueuetestfe4230f19d22440eb2fedb7201b26d4alibqueuetestfe70da519ddd4aa8b071e18486b2d6c5libqueuetestfea5c8b49e094d72b83b7acf050bad8flibqueuetestff3735d536be4992909f6535b7f404b0netcoreazurestorageq078079a54c8e4d8dbb84c45465bc8d00q07a58bf73b204f1082c632bc8cb6d496q2909af0fc5ad4e1dba161274f3eb37f3q2f627ba25b784a5d917cd9c01991ec6cq56747699aa0641c89080332bca598d94q738362919f9b49b89b1a7e4f6e5c8d43q786bd1708d2a4515b1f4976332f08f2aqb5eadc5e87ce48a181e9e4d588489173qd3474ef296a54959b624effee4f500dfqef2d753659df4105b2d16a8042db014eqfdf5f5a65a324aad943a8a3473a3d88asegment1539e9f70482caa4-9722-4084-974f-942731cf6305segment1539e9f70a1235ee-3b02-4948-9a74-91fb3131aff7segment1539e9f718784b70-4189-4034-b174-4fd8f2617a2asegment1539e9f7237a8d31-3dc7-44b2-abf4-a70ea2b040fasegment1539e9f726b99a18-ab41-4a7f-b541-aa128d3110absegment1539e9f72b4aeef9-7aae-4f4d-9d8d-62dc65b47b9fsegment1539e9f72be17372-5eaa-4e02-b003-52c5b1f7c362segment1539e9f738c43c79-0163-4cc1-9684-bcfedb177a47segment1539e9f74382969a-1fc6-49ef-b332-3eb4d24eac09segment1539e9f748d4c65f-c526-4b10-8db1-f86548d48a08segment1539e9f74e6c13e8-11ef-4c01-b628-03f49408cb8fsegment1539e9f75381e7f2-e737-4731-b7a1-b8454cc247d2segment1539e9f756ddae8c-cd0f-49f0-b283-60462aad2657segment1539e9f759dc89e3-6762-44ba-975b-cfb349c77e7esegment1539e9f75e4cc0ce-fc83-4038-87e1-b55c36760eb9segment1539e9f75e843a53-092b-4574-a098-927f9f291a97segment1539e9f766f6694d-d2ca-4326-bc5b-b42b94833758segment1539e9f76bbe9142-d0f7-49b4-aa15-ab10bc2719e5segment1539e9f76bf6df60-ef3b-47e9-8eae-3f04ab59e9dbsegment1539e9f77003556d-41f7-4180-a797-da615631e0a9segment1539e9f777747b82-8964-4d87-9a0d-9d549aae7a43segment1539e9f77dc608bf-ebdc-456d-b19d-e449026b5aacsegment1539e9f78c96c67a-75aa-4a9f-a53e-ce233d141102segment1539e9f79118e3ee-ea77-421c-beb3-a608895618d4segment1539e9f793a08f2a-a5c1-4970-afc8-3dde148c62acsegment1539e9f7987666ca-cf22-4e0b-bc3c-ccab1fc5bb4fsegment1539e9f7a16ba40d-94b3-4aa5-96e1-31d48e9470f2segment1539e9f7aa0d587c-6c3a-458f-aef4-610266f11961segment1539e9f7aa97f43a-8977-43ed-bfeb-08bacbb24860segment1539e9f7abe28e85-56d9-48c6-ace4-77bdd712ba56segment1539e9f7b6ae21d1-5176-4641-993a-6e38dd051126segment1539e9f7de4dc45e-fa64-4d2b-9e68-77a9ca1e932asegment1539e9f7eb2d84fa-2960-492a-bf82-3f7ecee66930segment1539e9f7eb7e5de4-e1ff-4ccc-bf01-0b775665e988segment1539e9f7fb3efa6d-d75c-4516-8ad9-0a31d4b89c1btaskqueuetest0c4a79c8059d4787a4c304e6ce1f914821dd754367424c8fbef3bade5cfaf9cc23a28f3ff12e4290a5822f058384210c3ed88c47f5bd4db4a6c7584755714fd8462b279766014137b4e7fd3b639e976c4704b4602807430b992806a312d5469c583e4cc8a62f40889b65489c4c322d167962c06eda4c460aaa8b4766e0607a8b888fd14095cc47d894813670e35ab856992534a95ab44203bc6185bc4ea424b0a0714840-054c-4a13-8004-f6c9b4ed36cb0a0714840-054c-4a13-8004-f6c9b4ed36cb1a0714840-054c-4a13-8004-f6c9b4ed36cb10a0714840-054c-4a13-8004-f6c9b4ed36cb100a0714840-054c-4a13-8004-f6c9b4ed36cb101a0714840-054c-4a13-8004-f6c9b4ed36cb102a0714840-054c-4a13-8004-f6c9b4ed36cb103a0714840-054c-4a13-8004-f6c9b4ed36cb104a0714840-054c-4a13-8004-f6c9b4ed36cb105a0714840-054c-4a13-8004-f6c9b4ed36cb106a0714840-054c-4a13-8004-f6c9b4ed36cb107a0714840-054c-4a13-8004-f6c9b4ed36cb108a0714840-054c-4a13-8004-f6c9b4ed36cb109a0714840-054c-4a13-8004-f6c9b4ed36cb11a0714840-054c-4a13-8004-f6c9b4ed36cb110a0714840-054c-4a13-8004-f6c9b4ed36cb111a0714840-054c-4a13-8004-f6c9b4ed36cb112a0714840-054c-4a13-8004-f6c9b4ed36cb113a0714840-054c-4a13-8004-f6c9b4ed36cb114a0714840-054c-4a13-8004-f6c9b4ed36cb115a0714840-054c-4a13-8004-f6c9b4ed36cb116a0714840-054c-4a13-8004-f6c9b4ed36cb117a0714840-054c-4a13-8004-f6c9b4ed36cb118a0714840-054c-4a13-8004-f6c9b4ed36cb119a0714840-054c-4a13-8004-f6c9b4ed36cb12a0714840-054c-4a13-8004-f6c9b4ed36cb120a0714840-054c-4a13-8004-f6c9b4ed36cb121a0714840-054c-4a13-8004-f6c9b4ed36cb122a0714840-054c-4a13-8004-f6c9b4ed36cb123a0714840-054c-4a13-8004-f6c9b4ed36cb124a0714840-054c-4a13-8004-f6c9b4ed36cb125a0714840-054c-4a13-8004-f6c9b4ed36cb126a0714840-054c-4a13-8004-f6c9b4ed36cb127a0714840-054c-4a13-8004-f6c9b4ed36cb128a0714840-054c-4a13-8004-f6c9b4ed36cb129a0714840-054c-4a13-8004-f6c9b4ed36cb13a0714840-054c-4a13-8004-f6c9b4ed36cb130a0714840-054c-4a13-8004-f6c9b4ed36cb131a0714840-054c-4a13-8004-f6c9b4ed36cb132a0714840-054c-4a13-8004-f6c9b4ed36cb133a0714840-054c-4a13-8004-f6c9b4ed36cb134a0714840-054c-4a13-8004-f6c9b4ed36cb135a0714840-054c-4a13-8004-f6c9b4ed36cb136a0714840-054c-4a13-8004-f6c9b4ed36cb137a0714840-054c-4a13-8004-f6c9b4ed36cb138a0714840-054c-4a13-8004-f6c9b4ed36cb139a0714840-054c-4a13-8004-f6c9b4ed36cb14a0714840-054c-4a13-8004-f6c9b4ed36cb140a0714840-054c-4a13-8004-f6c9b4ed36cb141a0714840-054c-4a13-8004-f6c9b4ed36cb142a0714840-054c-4a13-8004-f6c9b4ed36cb143a0714840-054c-4a13-8004-f6c9b4ed36cb144a0714840-054c-4a13-8004-f6c9b4ed36cb145a0714840-054c-4a13-8004-f6c9b4ed36cb146a0714840-054c-4a13-8004-f6c9b4ed36cb147a0714840-054c-4a13-8004-f6c9b4ed36cb148a0714840-054c-4a13-8004-f6c9b4ed36cb149a0714840-054c-4a13-8004-f6c9b4ed36cb15a0714840-054c-4a13-8004-f6c9b4ed36cb150a0714840-054c-4a13-8004-f6c9b4ed36cb151a0714840-054c-4a13-8004-f6c9b4ed36cb152a0714840-054c-4a13-8004-f6c9b4ed36cb153a0714840-054c-4a13-8004-f6c9b4ed36cb154a0714840-054c-4a13-8004-f6c9b4ed36cb155a0714840-054c-4a13-8004-f6c9b4ed36cb156a0714840-054c-4a13-8004-f6c9b4ed36cb157a0714840-054c-4a13-8004-f6c9b4ed36cb158a0714840-054c-4a13-8004-f6c9b4ed36cb159a0714840-054c-4a13-8004-f6c9b4ed36cb16a0714840-054c-4a13-8004-f6c9b4ed36cb160a0714840-054c-4a13-8004-f6c9b4ed36cb161a0714840-054c-4a13-8004-f6c9b4ed36cb162a0714840-054c-4a13-8004-f6c9b4ed36cb163a0714840-054c-4a13-8004-f6c9b4ed36cb164a0714840-054c-4a13-8004-f6c9b4ed36cb165a0714840-054c-4a13-8004-f6c9b4ed36cb166a0714840-054c-4a13-8004-f6c9b4ed36cb167a0714840-054c-4a13-8004-f6c9b4ed36cb168a0714840-054c-4a13-8004-f6c9b4ed36cb169a0714840-054c-4a13-8004-f6c9b4ed36cb17a0714840-054c-4a13-8004-f6c9b4ed36cb170a0714840-054c-4a13-8004-f6c9b4ed36cb171a0714840-054c-4a13-8004-f6c9b4ed36cb172a0714840-054c-4a13-8004-f6c9b4ed36cb173a0714840-054c-4a13-8004-f6c9b4ed36cb174a0714840-054c-4a13-8004-f6c9b4ed36cb175a0714840-054c-4a13-8004-f6c9b4ed36cb176a0714840-054c-4a13-8004-f6c9b4ed36cb177a0714840-054c-4a13-8004-f6c9b4ed36cb178a0714840-054c-4a13-8004-f6c9b4ed36cb179a0714840-054c-4a13-8004-f6c9b4ed36cb18a0714840-054c-4a13-8004-f6c9b4ed36cb180a0714840-054c-4a13-8004-f6c9b4ed36cb181a0714840-054c-4a13-8004-f6c9b4ed36cb182a0714840-054c-4a13-8004-f6c9b4ed36cb183a0714840-054c-4a13-8004-f6c9b4ed36cb184a0714840-054c-4a13-8004-f6c9b4ed36cb185a0714840-054c-4a13-8004-f6c9b4ed36cb186a0714840-054c-4a13-8004-f6c9b4ed36cb187a0714840-054c-4a13-8004-f6c9b4ed36cb188a0714840-054c-4a13-8004-f6c9b4ed36cb189a0714840-054c-4a13-8004-f6c9b4ed36cb19a0714840-054c-4a13-8004-f6c9b4ed36cb190a0714840-054c-4a13-8004-f6c9b4ed36cb191a0714840-054c-4a13-8004-f6c9b4ed36cb192a0714840-054c-4a13-8004-f6c9b4ed36cb193a0714840-054c-4a13-8004-f6c9b4ed36cb194a0714840-054c-4a13-8004-f6c9b4ed36cb195a0714840-054c-4a13-8004-f6c9b4ed36cb196a0714840-054c-4a13-8004-f6c9b4ed36cb197a0714840-054c-4a13-8004-f6c9b4ed36cb198a0714840-054c-4a13-8004-f6c9b4ed36cb199a0714840-054c-4a13-8004-f6c9b4ed36cb2a0714840-054c-4a13-8004-f6c9b4ed36cb20a0714840-054c-4a13-8004-f6c9b4ed36cb200a0714840-054c-4a13-8004-f6c9b4ed36cb201a0714840-054c-4a13-8004-f6c9b4ed36cb202a0714840-054c-4a13-8004-f6c9b4ed36cb203a0714840-054c-4a13-8004-f6c9b4ed36cb204a0714840-054c-4a13-8004-f6c9b4ed36cb205a0714840-054c-4a13-8004-f6c9b4ed36cb206a0714840-054c-4a13-8004-f6c9b4ed36cb207a0714840-054c-4a13-8004-f6c9b4ed36cb208a0714840-054c-4a13-8004-f6c9b4ed36cb209a0714840-054c-4a13-8004-f6c9b4ed36cb21a0714840-054c-4a13-8004-f6c9b4ed36cb210a0714840-054c-4a13-8004-f6c9b4ed36cb211a0714840-054c-4a13-8004-f6c9b4ed36cb212a0714840-054c-4a13-8004-f6c9b4ed36cb213a0714840-054c-4a13-8004-f6c9b4ed36cb214a0714840-054c-4a13-8004-f6c9b4ed36cb215a0714840-054c-4a13-8004-f6c9b4ed36cb216a0714840-054c-4a13-8004-f6c9b4ed36cb217a0714840-054c-4a13-8004-f6c9b4ed36cb218a0714840-054c-4a13-8004-f6c9b4ed36cb219a0714840-054c-4a13-8004-f6c9b4ed36cb22a0714840-054c-4a13-8004-f6c9b4ed36cb220a0714840-054c-4a13-8004-f6c9b4ed36cb221a0714840-054c-4a13-8004-f6c9b4ed36cb222a0714840-054c-4a13-8004-f6c9b4ed36cb223a0714840-054c-4a13-8004-f6c9b4ed36cb224a0714840-054c-4a13-8004-f6c9b4ed36cb225a0714840-054c-4a13-8004-f6c9b4ed36cb226a0714840-054c-4a13-8004-f6c9b4ed36cb227a0714840-054c-4a13-8004-f6c9b4ed36cb228a0714840-054c-4a13-8004-f6c9b4ed36cb229a0714840-054c-4a13-8004-f6c9b4ed36cb23a0714840-054c-4a13-8004-f6c9b4ed36cb230a0714840-054c-4a13-8004-f6c9b4ed36cb231a0714840-054c-4a13-8004-f6c9b4ed36cb232a0714840-054c-4a13-8004-f6c9b4ed36cb233a0714840-054c-4a13-8004-f6c9b4ed36cb234a0714840-054c-4a13-8004-f6c9b4ed36cb235a0714840-054c-4a13-8004-f6c9b4ed36cb236a0714840-054c-4a13-8004-f6c9b4ed36cb237a0714840-054c-4a13-8004-f6c9b4ed36cb238a0714840-054c-4a13-8004-f6c9b4ed36cb239a0714840-054c-4a13-8004-f6c9b4ed36cb24a0714840-054c-4a13-8004-f6c9b4ed36cb240a0714840-054c-4a13-8004-f6c9b4ed36cb241a0714840-054c-4a13-8004-f6c9b4ed36cb242a0714840-054c-4a13-8004-f6c9b4ed36cb243a0714840-054c-4a13-8004-f6c9b4ed36cb244a0714840-054c-4a13-8004-f6c9b4ed36cb245a0714840-054c-4a13-8004-f6c9b4ed36cb246a0714840-054c-4a13-8004-f6c9b4ed36cb247a0714840-054c-4a13-8004-f6c9b4ed36cb248a0714840-054c-4a13-8004-f6c9b4ed36cb249a0714840-054c-4a13-8004-f6c9b4ed36cb25a0714840-054c-4a13-8004-f6c9b4ed36cb250a0714840-054c-4a13-8004-f6c9b4ed36cb251a0714840-054c-4a13-8004-f6c9b4ed36cb252a0714840-054c-4a13-8004-f6c9b4ed36cb253a0714840-054c-4a13-8004-f6c9b4ed36cb254a0714840-054c-4a13-8004-f6c9b4ed36cb255a0714840-054c-4a13-8004-f6c9b4ed36cb256a0714840-054c-4a13-8004-f6c9b4ed36cb257a0714840-054c-4a13-8004-f6c9b4ed36cb258a0714840-054c-4a13-8004-f6c9b4ed36cb259a0714840-054c-4a13-8004-f6c9b4ed36cb26a0714840-054c-4a13-8004-f6c9b4ed36cb260a0714840-054c-4a13-8004-f6c9b4ed36cb261a0714840-054c-4a13-8004-f6c9b4ed36cb262a0714840-054c-4a13-8004-f6c9b4ed36cb263a0714840-054c-4a13-8004-f6c9b4ed36cb264a0714840-054c-4a13-8004-f6c9b4ed36cb265a0714840-054c-4a13-8004-f6c9b4ed36cb266a0714840-054c-4a13-8004-f6c9b4ed36cb267a0714840-054c-4a13-8004-f6c9b4ed36cb268a0714840-054c-4a13-8004-f6c9b4ed36cb269a0714840-054c-4a13-8004-f6c9b4ed36cb27a0714840-054c-4a13-8004-f6c9b4ed36cb270a0714840-054c-4a13-8004-f6c9b4ed36cb271a0714840-054c-4a13-8004-f6c9b4ed36cb272a0714840-054c-4a13-8004-f6c9b4ed36cb273a0714840-054c-4a13-8004-f6c9b4ed36cb274a0714840-054c-4a13-8004-f6c9b4ed36cb275a0714840-054c-4a13-8004-f6c9b4ed36cb276a0714840-054c-4a13-8004-f6c9b4ed36cb277a0714840-054c-4a13-8004-f6c9b4ed36cb278a0714840-054c-4a13-8004-f6c9b4ed36cb279a0714840-054c-4a13-8004-f6c9b4ed36cb28a0714840-054c-4a13-8004-f6c9b4ed36cb280a0714840-054c-4a13-8004-f6c9b4ed36cb281a0714840-054c-4a13-8004-f6c9b4ed36cb282a0714840-054c-4a13-8004-f6c9b4ed36cb283a0714840-054c-4a13-8004-f6c9b4ed36cb284a0714840-054c-4a13-8004-f6c9b4ed36cb285a0714840-054c-4a13-8004-f6c9b4ed36cb286a0714840-054c-4a13-8004-f6c9b4ed36cb287a0714840-054c-4a13-8004-f6c9b4ed36cb288a0714840-054c-4a13-8004-f6c9b4ed36cb289a0714840-054c-4a13-8004-f6c9b4ed36cb29a0714840-054c-4a13-8004-f6c9b4ed36cb290a0714840-054c-4a13-8004-f6c9b4ed36cb291a0714840-054c-4a13-8004-f6c9b4ed36cb292a0714840-054c-4a13-8004-f6c9b4ed36cb293a0714840-054c-4a13-8004-f6c9b4ed36cb294a0714840-054c-4a13-8004-f6c9b4ed36cb295a0714840-054c-4a13-8004-f6c9b4ed36cb296a0714840-054c-4a13-8004-f6c9b4ed36cb297a0714840-054c-4a13-8004-f6c9b4ed36cb298a0714840-054c-4a13-8004-f6c9b4ed36cb299a0714840-054c-4a13-8004-f6c9b4ed36cb3a0714840-054c-4a13-8004-f6c9b4ed36cb30a0714840-054c-4a13-8004-f6c9b4ed36cb300a0714840-054c-4a13-8004-f6c9b4ed36cb301a0714840-054c-4a13-8004-f6c9b4ed36cb302a0714840-054c-4a13-8004-f6c9b4ed36cb303a0714840-054c-4a13-8004-f6c9b4ed36cb304a0714840-054c-4a13-8004-f6c9b4ed36cb305a0714840-054c-4a13-8004-f6c9b4ed36cb306a0714840-054c-4a13-8004-f6c9b4ed36cb307a0714840-054c-4a13-8004-f6c9b4ed36cb308a0714840-054c-4a13-8004-f6c9b4ed36cb309a0714840-054c-4a13-8004-f6c9b4ed36cb31a0714840-054c-4a13-8004-f6c9b4ed36cb310a0714840-054c-4a13-8004-f6c9b4ed36cb311a0714840-054c-4a13-8004-f6c9b4ed36cb312a0714840-054c-4a13-8004-f6c9b4ed36cb313a0714840-054c-4a13-8004-f6c9b4ed36cb314a0714840-054c-4a13-8004-f6c9b4ed36cb315a0714840-054c-4a13-8004-f6c9b4ed36cb316a0714840-054c-4a13-8004-f6c9b4ed36cb317a0714840-054c-4a13-8004-f6c9b4ed36cb318a0714840-054c-4a13-8004-f6c9b4ed36cb319a0714840-054c-4a13-8004-f6c9b4ed36cb32a0714840-054c-4a13-8004-f6c9b4ed36cb320a0714840-054c-4a13-8004-f6c9b4ed36cb321a0714840-054c-4a13-8004-f6c9b4ed36cb322a0714840-054c-4a13-8004-f6c9b4ed36cb323a0714840-054c-4a13-8004-f6c9b4ed36cb324a0714840-054c-4a13-8004-f6c9b4ed36cb325a0714840-054c-4a13-8004-f6c9b4ed36cb326a0714840-054c-4a13-8004-f6c9b4ed36cb327a0714840-054c-4a13-8004-f6c9b4ed36cb328a0714840-054c-4a13-8004-f6c9b4ed36cb329a0714840-054c-4a13-8004-f6c9b4ed36cb33a0714840-054c-4a13-8004-f6c9b4ed36cb330a0714840-054c-4a13-8004-f6c9b4ed36cb331a0714840-054c-4a13-8004-f6c9b4ed36cb332a0714840-054c-4a13-8004-f6c9b4ed36cb333a0714840-054c-4a13-8004-f6c9b4ed36cb334a0714840-054c-4a13-8004-f6c9b4ed36cb335a0714840-054c-4a13-8004-f6c9b4ed36cb336a0714840-054c-4a13-8004-f6c9b4ed36cb337a0714840-054c-4a13-8004-f6c9b4ed36cb338a0714840-054c-4a13-8004-f6c9b4ed36cb339a0714840-054c-4a13-8004-f6c9b4ed36cb34a0714840-054c-4a13-8004-f6c9b4ed36cb340a0714840-054c-4a13-8004-f6c9b4ed36cb341a0714840-054c-4a13-8004-f6c9b4ed36cb342a0714840-054c-4a13-8004-f6c9b4ed36cb343a0714840-054c-4a13-8004-f6c9b4ed36cb344a0714840-054c-4a13-8004-f6c9b4ed36cb345a0714840-054c-4a13-8004-f6c9b4ed36cb346a0714840-054c-4a13-8004-f6c9b4ed36cb347a0714840-054c-4a13-8004-f6c9b4ed36cb348a0714840-054c-4a13-8004-f6c9b4ed36cb349a0714840-054c-4a13-8004-f6c9b4ed36cb35a0714840-054c-4a13-8004-f6c9b4ed36cb350a0714840-054c-4a13-8004-f6c9b4ed36cb351a0714840-054c-4a13-8004-f6c9b4ed36cb352a0714840-054c-4a13-8004-f6c9b4ed36cb353a0714840-054c-4a13-8004-f6c9b4ed36cb354a0714840-054c-4a13-8004-f6c9b4ed36cb355a0714840-054c-4a13-8004-f6c9b4ed36cb356a0714840-054c-4a13-8004-f6c9b4ed36cb357a0714840-054c-4a13-8004-f6c9b4ed36cb358a0714840-054c-4a13-8004-f6c9b4ed36cb359a0714840-054c-4a13-8004-f6c9b4ed36cb36a0714840-054c-4a13-8004-f6c9b4ed36cb360a0714840-054c-4a13-8004-f6c9b4ed36cb361a0714840-054c-4a13-8004-f6c9b4ed36cb362a0714840-054c-4a13-8004-f6c9b4ed36cb363a0714840-054c-4a13-8004-f6c9b4ed36cb364a0714840-054c-4a13-8004-f6c9b4ed36cb365a0714840-054c-4a13-8004-f6c9b4ed36cb366a0714840-054c-4a13-8004-f6c9b4ed36cb367a0714840-054c-4a13-8004-f6c9b4ed36cb368a0714840-054c-4a13-8004-f6c9b4ed36cb369a0714840-054c-4a13-8004-f6c9b4ed36cb37a0714840-054c-4a13-8004-f6c9b4ed36cb370a0714840-054c-4a13-8004-f6c9b4ed36cb371a0714840-054c-4a13-8004-f6c9b4ed36cb372a0714840-054c-4a13-8004-f6c9b4ed36cb373a0714840-054c-4a13-8004-f6c9b4ed36cb374a0714840-054c-4a13-8004-f6c9b4ed36cb375a0714840-054c-4a13-8004-f6c9b4ed36cb376a0714840-054c-4a13-8004-f6c9b4ed36cb377a0714840-054c-4a13-8004-f6c9b4ed36cb378a0714840-054c-4a13-8004-f6c9b4ed36cb379a0714840-054c-4a13-8004-f6c9b4ed36cb38a0714840-054c-4a13-8004-f6c9b4ed36cb380a0714840-054c-4a13-8004-f6c9b4ed36cb381a0714840-054c-4a13-8004-f6c9b4ed36cb382a0714840-054c-4a13-8004-f6c9b4ed36cb383a0714840-054c-4a13-8004-f6c9b4ed36cb384a0714840-054c-4a13-8004-f6c9b4ed36cb385a0714840-054c-4a13-8004-f6c9b4ed36cb386a0714840-054c-4a13-8004-f6c9b4ed36cb387a0714840-054c-4a13-8004-f6c9b4ed36cb388a0714840-054c-4a13-8004-f6c9b4ed36cb389a0714840-054c-4a13-8004-f6c9b4ed36cb39a0714840-054c-4a13-8004-f6c9b4ed36cb390a0714840-054c-4a13-8004-f6c9b4ed36cb391a0714840-054c-4a13-8004-f6c9b4ed36cb392a0714840-054c-4a13-8004-f6c9b4ed36cb393a0714840-054c-4a13-8004-f6c9b4ed36cb394a0714840-054c-4a13-8004-f6c9b4ed36cb395a0714840-054c-4a13-8004-f6c9b4ed36cb396a0714840-054c-4a13-8004-f6c9b4ed36cb397a0714840-054c-4a13-8004-f6c9b4ed36cb398a0714840-054c-4a13-8004-f6c9b4ed36cb399a0714840-054c-4a13-8004-f6c9b4ed36cb4a0714840-054c-4a13-8004-f6c9b4ed36cb40a0714840-054c-4a13-8004-f6c9b4ed36cb400a0714840-054c-4a13-8004-f6c9b4ed36cb401a0714840-054c-4a13-8004-f6c9b4ed36cb402a0714840-054c-4a13-8004-f6c9b4ed36cb403a0714840-054c-4a13-8004-f6c9b4ed36cb404a0714840-054c-4a13-8004-f6c9b4ed36cb405a0714840-054c-4a13-8004-f6c9b4ed36cb406a0714840-054c-4a13-8004-f6c9b4ed36cb407a0714840-054c-4a13-8004-f6c9b4ed36cb408a0714840-054c-4a13-8004-f6c9b4ed36cb409a0714840-054c-4a13-8004-f6c9b4ed36cb41a0714840-054c-4a13-8004-f6c9b4ed36cb410a0714840-054c-4a13-8004-f6c9b4ed36cb411a0714840-054c-4a13-8004-f6c9b4ed36cb412a0714840-054c-4a13-8004-f6c9b4ed36cb413a0714840-054c-4a13-8004-f6c9b4ed36cb414a0714840-054c-4a13-8004-f6c9b4ed36cb415a0714840-054c-4a13-8004-f6c9b4ed36cb416a0714840-054c-4a13-8004-f6c9b4ed36cb417a0714840-054c-4a13-8004-f6c9b4ed36cb418a0714840-054c-4a13-8004-f6c9b4ed36cb419a0714840-054c-4a13-8004-f6c9b4ed36cb42a0714840-054c-4a13-8004-f6c9b4ed36cb420a0714840-054c-4a13-8004-f6c9b4ed36cb421a0714840-054c-4a13-8004-f6c9b4ed36cb422a0714840-054c-4a13-8004-f6c9b4ed36cb423a0714840-054c-4a13-8004-f6c9b4ed36cb424a0714840-054c-4a13-8004-f6c9b4ed36cb425a0714840-054c-4a13-8004-f6c9b4ed36cb426a0714840-054c-4a13-8004-f6c9b4ed36cb427a0714840-054c-4a13-8004-f6c9b4ed36cb428a0714840-054c-4a13-8004-f6c9b4ed36cb429a0714840-054c-4a13-8004-f6c9b4ed36cb43a0714840-054c-4a13-8004-f6c9b4ed36cb430a0714840-054c-4a13-8004-f6c9b4ed36cb431a0714840-054c-4a13-8004-f6c9b4ed36cb432a0714840-054c-4a13-8004-f6c9b4ed36cb433a0714840-054c-4a13-8004-f6c9b4ed36cb434a0714840-054c-4a13-8004-f6c9b4ed36cb435a0714840-054c-4a13-8004-f6c9b4ed36cb436a0714840-054c-4a13-8004-f6c9b4ed36cb437a0714840-054c-4a13-8004-f6c9b4ed36cb438a0714840-054c-4a13-8004-f6c9b4ed36cb439a0714840-054c-4a13-8004-f6c9b4ed36cb44a0714840-054c-4a13-8004-f6c9b4ed36cb440a0714840-054c-4a13-8004-f6c9b4ed36cb441a0714840-054c-4a13-8004-f6c9b4ed36cb442a0714840-054c-4a13-8004-f6c9b4ed36cb443a0714840-054c-4a13-8004-f6c9b4ed36cb444a0714840-054c-4a13-8004-f6c9b4ed36cb445a0714840-054c-4a13-8004-f6c9b4ed36cb446a0714840-054c-4a13-8004-f6c9b4ed36cb447a0714840-054c-4a13-8004-f6c9b4ed36cb448a0714840-054c-4a13-8004-f6c9b4ed36cb449a0714840-054c-4a13-8004-f6c9b4ed36cb45a0714840-054c-4a13-8004-f6c9b4ed36cb450a0714840-054c-4a13-8004-f6c9b4ed36cb451a0714840-054c-4a13-8004-f6c9b4ed36cb452a0714840-054c-4a13-8004-f6c9b4ed36cb453a0714840-054c-4a13-8004-f6c9b4ed36cb454a0714840-054c-4a13-8004-f6c9b4ed36cb455a0714840-054c-4a13-8004-f6c9b4ed36cb456a0714840-054c-4a13-8004-f6c9b4ed36cb457a0714840-054c-4a13-8004-f6c9b4ed36cb458a0714840-054c-4a13-8004-f6c9b4ed36cb459a0714840-054c-4a13-8004-f6c9b4ed36cb46a0714840-054c-4a13-8004-f6c9b4ed36cb460a0714840-054c-4a13-8004-f6c9b4ed36cb461a0714840-054c-4a13-8004-f6c9b4ed36cb462a0714840-054c-4a13-8004-f6c9b4ed36cb463a0714840-054c-4a13-8004-f6c9b4ed36cb464a0714840-054c-4a13-8004-f6c9b4ed36cb465a0714840-054c-4a13-8004-f6c9b4ed36cb466a0714840-054c-4a13-8004-f6c9b4ed36cb467a0714840-054c-4a13-8004-f6c9b4ed36cb468a0714840-054c-4a13-8004-f6c9b4ed36cb469a0714840-054c-4a13-8004-f6c9b4ed36cb47a0714840-054c-4a13-8004-f6c9b4ed36cb470a0714840-054c-4a13-8004-f6c9b4ed36cb471a0714840-054c-4a13-8004-f6c9b4ed36cb472a0714840-054c-4a13-8004-f6c9b4ed36cb473a0714840-054c-4a13-8004-f6c9b4ed36cb474a0714840-054c-4a13-8004-f6c9b4ed36cb475a0714840-054c-4a13-8004-f6c9b4ed36cb476a0714840-054c-4a13-8004-f6c9b4ed36cb477a0714840-054c-4a13-8004-f6c9b4ed36cb478a0714840-054c-4a13-8004-f6c9b4ed36cb479a0714840-054c-4a13-8004-f6c9b4ed36cb48a0714840-054c-4a13-8004-f6c9b4ed36cb480a0714840-054c-4a13-8004-f6c9b4ed36cb481a0714840-054c-4a13-8004-f6c9b4ed36cb482a0714840-054c-4a13-8004-f6c9b4ed36cb483a0714840-054c-4a13-8004-f6c9b4ed36cb484a0714840-054c-4a13-8004-f6c9b4ed36cb485a0714840-054c-4a13-8004-f6c9b4ed36cb486a0714840-054c-4a13-8004-f6c9b4ed36cb487a0714840-054c-4a13-8004-f6c9b4ed36cb488a0714840-054c-4a13-8004-f6c9b4ed36cb489a0714840-054c-4a13-8004-f6c9b4ed36cb49a0714840-054c-4a13-8004-f6c9b4ed36cb490a0714840-054c-4a13-8004-f6c9b4ed36cb491a0714840-054c-4a13-8004-f6c9b4ed36cb492a0714840-054c-4a13-8004-f6c9b4ed36cb493a0714840-054c-4a13-8004-f6c9b4ed36cb494a0714840-054c-4a13-8004-f6c9b4ed36cb495a0714840-054c-4a13-8004-f6c9b4ed36cb496a0714840-054c-4a13-8004-f6c9b4ed36cb497a0714840-054c-4a13-8004-f6c9b4ed36cb498a0714840-054c-4a13-8004-f6c9b4ed36cb499a0714840-054c-4a13-8004-f6c9b4ed36cb5a0714840-054c-4a13-8004-f6c9b4ed36cb50a0714840-054c-4a13-8004-f6c9b4ed36cb500a0714840-054c-4a13-8004-f6c9b4ed36cb501a0714840-054c-4a13-8004-f6c9b4ed36cb502a0714840-054c-4a13-8004-f6c9b4ed36cb503a0714840-054c-4a13-8004-f6c9b4ed36cb504a0714840-054c-4a13-8004-f6c9b4ed36cb51a0714840-054c-4a13-8004-f6c9b4ed36cb52a0714840-054c-4a13-8004-f6c9b4ed36cb53a0714840-054c-4a13-8004-f6c9b4ed36cb54a0714840-054c-4a13-8004-f6c9b4ed36cb55a0714840-054c-4a13-8004-f6c9b4ed36cb56a0714840-054c-4a13-8004-f6c9b4ed36cb57a0714840-054c-4a13-8004-f6c9b4ed36cb58a0714840-054c-4a13-8004-f6c9b4ed36cb59a0714840-054c-4a13-8004-f6c9b4ed36cb6a0714840-054c-4a13-8004-f6c9b4ed36cb60a0714840-054c-4a13-8004-f6c9b4ed36cb61a0714840-054c-4a13-8004-f6c9b4ed36cb62a0714840-054c-4a13-8004-f6c9b4ed36cb63a0714840-054c-4a13-8004-f6c9b4ed36cb64a0714840-054c-4a13-8004-f6c9b4ed36cb65a0714840-054c-4a13-8004-f6c9b4ed36cb66a0714840-054c-4a13-8004-f6c9b4ed36cb67a0714840-054c-4a13-8004-f6c9b4ed36cb68a0714840-054c-4a13-8004-f6c9b4ed36cb69a0714840-054c-4a13-8004-f6c9b4ed36cb7a0714840-054c-4a13-8004-f6c9b4ed36cb70a0714840-054c-4a13-8004-f6c9b4ed36cb71a0714840-054c-4a13-8004-f6c9b4ed36cb72a0714840-054c-4a13-8004-f6c9b4ed36cb73a0714840-054c-4a13-8004-f6c9b4ed36cb74a0714840-054c-4a13-8004-f6c9b4ed36cb75a0714840-054c-4a13-8004-f6c9b4ed36cb76a0714840-054c-4a13-8004-f6c9b4ed36cb77a0714840-054c-4a13-8004-f6c9b4ed36cb78a0714840-054c-4a13-8004-f6c9b4ed36cb79a0714840-054c-4a13-8004-f6c9b4ed36cb8a0714840-054c-4a13-8004-f6c9b4ed36cb80a0714840-054c-4a13-8004-f6c9b4ed36cb81a0714840-054c-4a13-8004-f6c9b4ed36cb82a0714840-054c-4a13-8004-f6c9b4ed36cb83a0714840-054c-4a13-8004-f6c9b4ed36cb84a0714840-054c-4a13-8004-f6c9b4ed36cb85a0714840-054c-4a13-8004-f6c9b4ed36cb86a0714840-054c-4a13-8004-f6c9b4ed36cb87a0714840-054c-4a13-8004-f6c9b4ed36cb88a0714840-054c-4a13-8004-f6c9b4ed36cb89a0714840-054c-4a13-8004-f6c9b4ed36cb9a0714840-054c-4a13-8004-f6c9b4ed36cb90a0714840-054c-4a13-8004-f6c9b4ed36cb91a0714840-054c-4a13-8004-f6c9b4ed36cb92a0714840-054c-4a13-8004-f6c9b4ed36cb93a0714840-054c-4a13-8004-f6c9b4ed36cb94a0714840-054c-4a13-8004-f6c9b4ed36cb95a0714840-054c-4a13-8004-f6c9b4ed36cb96a0714840-054c-4a13-8004-f6c9b4ed36cb97a0714840-054c-4a13-8004-f6c9b4ed36cb98a0714840-054c-4a13-8004-f6c9b4ed36cb99aafdc50c-e6ca-4603-a190-7f0849a6ca010aafdc50c-e6ca-4603-a190-7f0849a6ca011aafdc50c-e6ca-4603-a190-7f0849a6ca0110aafdc50c-e6ca-4603-a190-7f0849a6ca0111aafdc50c-e6ca-4603-a190-7f0849a6ca0112aafdc50c-e6ca-4603-a190-7f0849a6ca0113aafdc50c-e6ca-4603-a190-7f0849a6ca0114aafdc50c-e6ca-4603-a190-7f0849a6ca0115aafdc50c-e6ca-4603-a190-7f0849a6ca0116aafdc50c-e6ca-4603-a190-7f0849a6ca0117aafdc50c-e6ca-4603-a190-7f0849a6ca0118aafdc50c-e6ca-4603-a190-7f0849a6ca0119aafdc50c-e6ca-4603-a190-7f0849a6ca012aafdc50c-e6ca-4603-a190-7f0849a6ca0120aafdc50c-e6ca-4603-a190-7f0849a6ca0121aafdc50c-e6ca-4603-a190-7f0849a6ca0122aafdc50c-e6ca-4603-a190-7f0849a6ca0123aafdc50c-e6ca-4603-a190-7f0849a6ca0124aafdc50c-e6ca-4603-a190-7f0849a6ca013aafdc50c-e6ca-4603-a190-7f0849a6ca014aafdc50c-e6ca-4603-a190-7f0849a6ca015aafdc50c-e6ca-4603-a190-7f0849a6ca016aafdc50c-e6ca-4603-a190-7f0849a6ca017aafdc50c-e6ca-4603-a190-7f0849a6ca018aafdc50c-e6ca-4603-a190-7f0849a6ca019aafdc50c-e6ca-4603-a190-7f0849a6ca01a0aafdc50c-e6ca-4603-a190-7f0849a6ca01a1aafdc50c-e6ca-4603-a190-7f0849a6ca01a10aafdc50c-e6ca-4603-a190-7f0849a6ca01a11aafdc50c-e6ca-4603-a190-7f0849a6ca01a12aafdc50c-e6ca-4603-a190-7f0849a6ca01a13aafdc50c-e6ca-4603-a190-7f0849a6ca01a14aafdc50c-e6ca-4603-a190-7f0849a6ca01a15aafdc50c-e6ca-4603-a190-7f0849a6ca01a16aafdc50c-e6ca-4603-a190-7f0849a6ca01a17aafdc50c-e6ca-4603-a190-7f0849a6ca01a18aafdc50c-e6ca-4603-a190-7f0849a6ca01a19aafdc50c-e6ca-4603-a190-7f0849a6ca01a2aafdc50c-e6ca-4603-a190-7f0849a6ca01a20aafdc50c-e6ca-4603-a190-7f0849a6ca01a21aafdc50c-e6ca-4603-a190-7f0849a6ca01a22aafdc50c-e6ca-4603-a190-7f0849a6ca01a23aafdc50c-e6ca-4603-a190-7f0849a6ca01a24aafdc50c-e6ca-4603-a190-7f0849a6ca01a3aafdc50c-e6ca-4603-a190-7f0849a6ca01a4aafdc50c-e6ca-4603-a190-7f0849a6ca01a5aafdc50c-e6ca-4603-a190-7f0849a6ca01a6aafdc50c-e6ca-4603-a190-7f0849a6ca01a7aafdc50c-e6ca-4603-a190-7f0849a6ca01a8aafdc50c-e6ca-4603-a190-7f0849a6ca01a9b130223e15db4abbb4359b084321fa5cc66c1ca9866d4beb90571bd9e5a22752d706e44199b7415ba43bc45dc4439e98fcd120248a4d4b3e886d7353324df371libqueuetest002d082580b6403994faa27d937c074flibqueuetest003932a61eab4cab8f29b8f1f529855dlibqueuetest00818cfdf08d4ecf9967b37b882a1e92libqueuetest0116d108c0da486090982340ad3fb0a9libqueuetest01463a76178843abb510f251d19f85d7libqueuetest03639ed8784c4283b71697dc28330addlibqueuetest0471cfc1772748ef8fb50c7939ef4867libqueuetest04e9570a60654d11a0f8195be6be516elibqueuetest057b2b6eebd645df8d0a39f2e26583c1libqueuetest0654f26bfd7d4ce1b740dbaf8e1688d1libqueuetest069b26704d0448cebf0c1168ab9d4383libqueuetest07811d7be39e47d893b8bb73156c4a39libqueuetest07bd9e0e665b45119131d8171942671blibqueuetest082773c6fe6f41489afc9b5d4e9f5072libqueuetest083189c3af9d4e99bea60c700978c21blibqueuetest092d5a15ff19440ba3a7f64a012a44b8libqueuetest0975810a15b048769bf2378692b9b67dlibqueuetest0a4851bdabb14231a6469c8ad5bd3170libqueuetest0aceaa206f7f4983b65796d42e9be025libqueuetest0c30d1d779b84c1c83328e15dfd0b485libqueuetest0c5c9a7ca8f34ac298360bc16ee58f94libqueuetest0cc948774092450889a6b3ab3f470cc3libqueuetest0cebb1d4dcfa42cb921facca588adb70libqueuetest0f1f7ebdb8eb4e18aea82579d9205b4blibqueuetest0fe2a5a1baab448fa50f7393672f1865libqueuetest0feeb7ee47d845978a9f11d476c14f92libqueuetest10eed0e08e67454291e8646d434a316alibqueuetest11421dd1aaef43918447f6c940859b2dlibqueuetest1218ea58583a4c9ba4986ed93c36c375libqueuetest12f0726099c24342b22e1038b5d84c41libqueuetest12f30707e9c3466c9950f16a11838042libqueuetest14339d4dbbf04221a003069f097cf1ddlibqueuetest14e1873c017741e0b49ed00e49dd964dlibqueuetest14fc93c3ec0a45119ca0bcb116c3a27flibqueuetest154173530ab44ab897e6aeec2e911bb4libqueuetest16d95faf3e114746a3e3b29cf7c73dadlibqueuetest185113d155094da0a4427f5454e2f159libqueuetest18cb1b05fbe242af92cdf75c22c14a51libqueuetest18d10206616b4e419842aafca5048cbblibqueuetest18e76f2c368349528921a1147273b779libqueuetest19b1b2b666ea4d2d8f377fb1a45242d3libqueuetest1d6d2ead58914e37b530fa772a76a3aelibqueuetest2016db1ebd9e46b9b7417fa2634a16a6libqueuetest20655b629f0e4187aa91ed38cbd79b99libqueuetest21bade9aa8e542e3a760ddec1dafc1cdlibqueuetest22e5aa1918154126a4241e31abcee07elibqueuetest2443daa037e044558f958a9672103b74libqueuetest2467451dbf1e48e2be5684e352cd8e9dlibqueuetest2570b0acb0644ed0aa5aeee153666dfalibqueuetest2906650317174994814288ffb1c2de16libqueuetest29824696fda74c2094fa72e7faf78ed7libqueuetest2ce30f307eff46309125aa9e6a177f7clibqueuetest2dca91c0f8cd41459260769a4bbffc5elibqueuetest2de0e31243964160987df5dab940479elibqueuetest2ec806ad6b034a8cafe0578183e72990libqueuetest2f1f2dd6f689407aab5a89d306b35fc1libqueuetest2fb2e62f4c9c418da6d0d3627aad924dlibqueuetest302d802e283249988f93f04f2f172b1alibqueuetest30d2c36f5ca0485984a20efd1b1644ealibqueuetest31afc4a5a40144098146a56be2a64f4dlibqueuetest327f61c28b604e0ba3c50f3f94bbffa5libqueuetest32e4557aa7b045449c8c73eddfcb970flibqueuetest33be839eeaf8482c92ee7a0ef031da23libqueuetest36a3ffeb30ff4da09bcb72cbf2975fcelibqueuetest36e4ab146fb94820a7bcb70dd456cac5libqueuetest371e0d6f2a3940448d8252c45793664flibqueuetest386833a163074ef99c1a4932b066b16alibqueuetest3877adf0177e4264be6103df4b75457alibqueuetest39cae1caac8044fc829ff04bf8faa88dlibqueuetest3b45ce80f3744759a6844ea9f581d3f1libqueuetest3c24b19cb4d749788418d82875796667libqueuetest3ce00126a3564dd996316ed1d0c91c2elibqueuetest3d4787cd159f4469bc755be9ca6e2041libqueuetest3ddca4760667487a922ebac576a1d6a8libqueuetest3f3ec52dbeb04799aa3fe08e1a306673libqueuetest416c1f8dbd7c4bb1844d54da490edcc1libqueuetest41b76b3b3a1f4e06ba9c34bc0d6cdb90libqueuetest41ef359d9f6f40c9825d31a39582557alibqueuetest4264708a828f4c89b8dbd5dd990a00eflibqueuetest460d1712438c45bd87fd375831a64634libqueuetest46dd5ed3cd01462d9ce32daf3f93eeb0libqueuetest4b6dcfe25083462d90e86ce9ff67e467libqueuetest4b7188ccc5c449d4902f506a68507deblibqueuetest4ee6f567da44418d8316f3eb3d731888libqueuetest4fcd7d73a1194aa5a43e227bcdd762d3libqueuetest5273e56fdc1b40d9a7ca1a963c30d84elibqueuetest5348a0d9d94648bb88c0bf554c8ea8celibqueuetest539c3ec36bda42b3b165c0d78d58a25flibqueuetest543b8539bea64ce1be6e535e42369d93libqueuetest547ff13666ad4d61bfa8dfbc95763f8clibqueuetest54f10d02a73849d6aa5664dff2b71719libqueuetest56531e8eb13e4885ae8f63645277d4f1libqueuetest5723ac90bf91452ba197f4ecbe32b6ealibqueuetest580b9b9e6d994a088b7f7274abb81c21libqueuetest586a280606b0442094b7ab6cb6f6834alibqueuetest5b10363915f24112bcfc396521d6fd54libqueuetest5c1cab293861419f8b233ea5cebb369flibqueuetest605335ec8ec649a08e8317728b1c39d7libqueuetest60d0d65010ef4ee49b7407eb6996368blibqueuetest623a80ef851d4f7fb33c0c9cd0ce6c92libqueuetest631be3384ac94361b799c0177e4d7a41libqueuetest6474213d0ae742b4a9b932f4d0652a93libqueuetest649f67f239d64596a57ad8675c2141a3libqueuetest64e6a35003904f71806bf765130af2c5libqueuetest653c3e451a354323bf1d941f1f04580dlibqueuetest657ad818ce8f47d99348b459b20f675blibqueuetest65983bee87834594a609f21cf33f090elibqueuetest65c5b988df944718a20d4eeacee19fcdlibqueuetest666568ffe780479fa887d12886857312libqueuetest69450dba809b4110b827852cf78ce6b9libqueuetest6ac85dd1ab224eae93be047c43f76a79libqueuetest6afd84c95eba412384702b3e4004f1d2libqueuetest6c68902a98464d2f8523ca73649f5399libqueuetest71988a2e5b994e1d8e8faf21258525edlibqueuetest733d61dd581545249468190abcaff745libqueuetest73f5973d23fb4e97b4daaeb005c5dbcalibqueuetest749de190a72344e1bb985ab7ad2049aalibqueuetest751dc1053cb141d3bfe17792d39944e4libqueuetest7626a5aa946e490eb781f4395cbb1f0clibqueuetest7667db59e8de4d729a63cd257b4ef604libqueuetest78757102ae9843b08cbbc795a241e1b7libqueuetest78bc563677c746b98d09e6d92c231839libqueuetest7978242bbf8740cba7301adbfafb211blibqueuetest7a43fef4a20f425286e8633842a24044libqueuetest7a68c95324304efea30dc5be881a77b4libqueuetest7bd25e13f25d4e0e8aaeaf0b5d5fe4a0libqueuetest7c5892ced59248cca230630749b6daaflibqueuetest7d1ec927ab1040c9976f02126fb0711clibqueuetest7d2e9f4f5eec4a04b8ef962c7421e2a6libqueuetest80b91307886545939b04a5b143ab282flibqueuetest813417f3f29346389e8af7f80931ef09libqueuetest8136f2d4c1004c3d8a08d94d8b7ce929libqueuetest826b948c63af4d63924c972160b8ebfalibqueuetest840e37fade9e45c5be13e8d0f59c3150libqueuetest8600b641988b443d8624e617de3846e2libqueuetest880ff5d375004f719499f84c4ec7c771libqueuetest8866765b5e804dd89b8a844d4da8fa1dlibqueuetest896c207bb89c43f58e8d2efc4fee3a94libqueuetest8a22f25035ea49eb8e29b8e4c8dcc69dlibqueuetest9002897afc9145d2b181ce56d7f8a536libqueuetest910c33dd87fe4be99fd53b7afb13acc3libqueuetest91160e1e536e4cf099cc6a0656acdfealibqueuetest9143b5c44f3f4032ba202974c59d29b4libqueuetest91f4539db94b4161a42f09ef11407722libqueuetest969b52ca28e644218ed7a6f55c9d5ce4libqueuetest96cfd3cf2fff461ab3bfeafc1fac2b54libqueuetest9755f06fdfb34452b5cef050a0bcc9d7libqueuetest98a4f75e1fb74af8813a51894867325flibqueuetest9aa1a563e18a48c7a05752847382d6eclibqueuetest9b9496132be24f7098bd3050493c5b8flibqueuetest9c84c8265c634feb9e4c3250d3f4d018libqueuetest9daddaf169d249b888c164c497dc3d1clibqueuetest9e0a452496b641a486c3eb38247c7d8blibqueuetesta11028fb8f754b7a834136b839d08f37libqueuetesta113e9e334da458fb2c449d6cddd34b5libqueuetesta1d8ea639d0143cea84f004302ea2638libqueuetesta2365f25912e411f92334a427d237a51libqueuetesta3fa94ce12a7426f8c010162ce6d446flibqueuetesta44998cf7e9d4692bcaafd61a759d178libqueuetesta467d0f93d544f66a80e48958927d115libqueuetesta820d6dfcb984b07aec46cdee4b2c552libqueuetesta85ec734e5734f2885d7939feb2facc5libqueuetesta8937499b7254720a004ff8762024277libqueuetesta9165ff3641b4604875832f896ca7766libqueuetesta9da65e648374ef2abcfff624a74baa0libqueuetesta9e90c2e46cc46119c77149d2ad25130libqueuetestabf8990558184bcda92539ae6b97c6b9libqueuetestac85d22d25fb4cd29ec2f5b27143ac42libqueuetestaca9054209a64ce0afab9a13b84fdcb1libqueuetestaf27a9ce7b2e4da8b8a6584696eaaab1libqueuetestaf9ac3aa1b284645a321e8dbef6b8b94libqueuetestb05d6d70fe5f4b66a1ce113e66b079calibqueuetestb1286bdd1575430db9c002b5521b3ee4libqueuetestb19b104538ad4ac980c44d63496c51ealibqueuetestb26f787743e8426aae1ccef9dafad984libqueuetestb2b3ca439d924adc8dadae99efb5199blibqueuetestb2ecf20f60484c5da20e3786aaca1978libqueuetestb32539fb9adf4e488f78a920414b8efdlibqueuetestb55fb47016e74e0e9df393b5abde8c589libqueuetestb5d04beec1f5481086d3a156419a84aelibqueuetestb63410bb1c2e4f8e89339682a4b2c4fclibqueuetestb75760a491344522bf18c65484b3c671libqueuetestb75b7c301e18401d90596cab11442bbblibqueuetestb8cc4a46eb144994ba83f21261f94309libqueuetestb9e1e25162a14a798601c37395bdadcalibqueuetestba6d4b288aec4a16940916c258f15298libqueuetestba72bc01b54a45a4b25f866e23ee7e07libqueuetestbca09d996b824dd5beef02f1d8df5285libqueuetestbd1dae790f9d40adb3ebe003a25d4de6libqueuetestbf2557e1f95045e489d5227ffd47aa92libqueuetestc2f88d177cf4421b8456bc8288039f72libqueuetestc52889a95c9d48738ca479791ad9d0a0libqueuetestc5df319d570044e0ab5fed7cc3913234libqueuetestc5f33a5a4f8f4bb894f1bae231adf58alibqueuetestc6a1d0c3234740c691f0d50ef9996467libqueuetestc77a61f5d9f8401099e42c67ef838b66libqueuetestc907d42adc6f45acba5c05a3ca04c1b3libqueuetestc9e4fe6fc974439f8b296ac3cdfa6662libqueuetestc9ffd90e634a4df3ad9c1e19b3faf940libqueuetestca19bbbd8e554834851106391b465ecelibqueuetestcd2a4869af3a45998cddb669b92c8ae6libqueuetestce8806d087694f1d823bb95926cf6af7libqueuetestce93149ad15242cb83c005a9ca06577blibqueuetestcf3227f9e1424aec9a2f4cb8a113f47flibqueuetestd2b4e8c62d9f40dcab419c7552e08c3clibqueuetestd5535c47080948939a3a2df3a8c27862libqueuetestd5bfb5f082ba4ddba0491646afea5cadlibqueuetestd674f0d73de741349aecfc7987251d14libqueuetestd90b1f4693c94b239a9256569c1c6c47libqueuetestd9226fac3101445188f2f6570ef889a9libqueuetestd925dc725be44d2a83b0e9b2abdfc465libqueuetestdde74812f452407da46d3ff406ce27c5libqueuetestde5f75ebb7e145a0af2a24afc0b08c15libqueuetestdea90127bc614bdfa1530cd6d7514dbdlibqueueteste0e375cb043d43c7ab72937d2c2bf82alibqueueteste17c589218784fef97c01e7341852daclibqueueteste2ab2ea549b5448c9936eb69d91164d1libqueueteste3212063cf8e4df8985bdcc60e53923blibqueueteste3ee4ffced55473b817116696ba3678blibqueueteste5c1dc96d5bc4ac68cc1ee988d2238cdlibqueueteste8586f4da273463bb3b2c7e20038ffa5libqueueteste86419ca7d614281889d45aec1ba1c21libqueueteste88b4e93bac545afb9e7f0aea6ff7287libqueuetestea8c2fd8baec4db5adc2737975b20caelibqueuetesteac621318ffd4b5d8685971e6c211a39libqueuetesteadab865c26e4e31874a01947ee46f39libqueuetesteb40233d72b549e5a6f1940b39044848libqueuetestedc2f8817c3f4e71b015b26f1aa2ba18libqueuetestee010bbef6004c39bb93348819f1e827libqueuetestf055dc24696a4ac69d3fc25cc86983falibqueuetestf20c5080821547ed898b7bdc95bf3ef6libqueuetestf27c0b990fba492fa45f232ab28abab5libqueuetestf3dc054893ba4529ac3c42ca1d1cccdalibqueuetestf4f74b8278df49e3bec5fa292d299841libqueuetestf5190554a9cd4c0f8ac40bb1d0ff783elibqueuetestf6a7a366fb04483c8c1ef131a92b6c31libqueuetestf6c9c6194bde495baa70f339a5244337libqueuetestf7414e03b21c4a59b80788ab59d77a1elibqueuetestf846253f42354a38840fe08ceae0269flibqueuetestfb0b8593f3db400fa99a547b4c2b2af7libqueuetestfb9b6ecd9217461cb3bf583ece43c18flibqueuetestfc79004a3aec4d7c894cd9697690eed7libqueuetestfc9f1e5b157d4fdcbaed189d4dbdabb4libqueuetestfe280cfa9e0e4edf995281eafc3186f2libqueuetestfe4230f19d22440eb2fedb7201b26d4alibqueuetestfe70da519ddd4aa8b071e18486b2d6c5libqueuetestfea5c8b49e094d72b83b7acf050bad8flibqueuetestff3735d536be4992909f6535b7f404b0netcoreazurestorageq078079a54c8e4d8dbb84c45465bc8d00q07a58bf73b204f1082c632bc8cb6d496q2909af0fc5ad4e1dba161274f3eb37f3q2f627ba25b784a5d917cd9c01991ec6cq56747699aa0641c89080332bca598d94q738362919f9b49b89b1a7e4f6e5c8d43q786bd1708d2a4515b1f4976332f08f2aqb5eadc5e87ce48a181e9e4d588489173qd3474ef296a54959b624effee4f500dfqef2d753659df4105b2d16a8042db014eqfdf5f5a65a324aad943a8a3473a3d88asegment1539e9f70482caa4-9722-4084-974f-942731cf6305segment1539e9f70a1235ee-3b02-4948-9a74-91fb3131aff7segment1539e9f718784b70-4189-4034-b174-4fd8f2617a2asegment1539e9f7237a8d31-3dc7-44b2-abf4-a70ea2b040fasegment1539e9f726b99a18-ab41-4a7f-b541-aa128d3110absegment1539e9f72b4aeef9-7aae-4f4d-9d8d-62dc65b47b9fsegment1539e9f72be17372-5eaa-4e02-b003-52c5b1f7c362segment1539e9f738c43c79-0163-4cc1-9684-bcfedb177a47segment1539e9f74382969a-1fc6-49ef-b332-3eb4d24eac09segment1539e9f748d4c65f-c526-4b10-8db1-f86548d48a08segment1539e9f74e6c13e8-11ef-4c01-b628-03f49408cb8fsegment1539e9f75381e7f2-e737-4731-b7a1-b8454cc247d2segment1539e9f756ddae8c-cd0f-49f0-b283-60462aad2657segment1539e9f759dc89e3-6762-44ba-975b-cfb349c77e7esegment1539e9f75e4cc0ce-fc83-4038-87e1-b55c36760eb9segment1539e9f75e843a53-092b-4574-a098-927f9f291a97segment1539e9f766f6694d-d2ca-4326-bc5b-b42b94833758segment1539e9f76bbe9142-d0f7-49b4-aa15-ab10bc2719e5segment1539e9f76bf6df60-ef3b-47e9-8eae-3f04ab59e9dbsegment1539e9f77003556d-41f7-4180-a797-da615631e0a9segment1539e9f777747b82-8964-4d87-9a0d-9d549aae7a43segment1539e9f77dc608bf-ebdc-456d-b19d-e449026b5aacsegment1539e9f78c96c67a-75aa-4a9f-a53e-ce233d141102segment1539e9f79118e3ee-ea77-421c-beb3-a608895618d4segment1539e9f793a08f2a-a5c1-4970-afc8-3dde148c62acsegment1539e9f7987666ca-cf22-4e0b-bc3c-ccab1fc5bb4fsegment1539e9f7a16ba40d-94b3-4aa5-96e1-31d48e9470f2segment1539e9f7aa0d587c-6c3a-458f-aef4-610266f11961segment1539e9f7aa97f43a-8977-43ed-bfeb-08bacbb24860segment1539e9f7abe28e85-56d9-48c6-ace4-77bdd712ba56segment1539e9f7b6ae21d1-5176-4641-993a-6e38dd051126segment1539e9f7de4dc45e-fa64-4d2b-9e68-77a9ca1e932asegment1539e9f7eb2d84fa-2960-492a-bf82-3f7ecee66930segment1539e9f7eb7e5de4-e1ff-4ccc-bf01-0b775665e988segment1539e9f7fb3efa6d-d75c-4516-8ad9-0a31d4b89c1btaskqueuetest"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:40:59 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9c3242d4-0003-0121-3908-fc7fb0000000] + x-ms-request-id: [2b771724-0003-005e-5603-fda7d7000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_list_queues_with_metadata.yaml b/tests/recordings/test_queue.test_list_queues_with_metadata.yaml index 88c71743..88ff819b 100644 --- a/tests/recordings/test_queue.test_list_queues_with_metadata.yaml +++ b/tests/recordings/test_queue.test_list_queues_with_metadata.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [12430258-67fc-11e7-94f4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4590c128-68f6-11e7-add3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queue665a1100 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:00 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1d7d6091-0003-007a-4208-fc3e99000000] + x-ms-request-id: [34496e02-0003-00cf-1e03-fd3366000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -24,9 +24,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1293e694-67fc-11e7-b0de-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:49:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [45a552ca-68f6-11e7-9e05-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:59 GMT'] x-ms-meta-val1: [test] x-ms-meta-val2: [blah] x-ms-version: ['2017-04-17'] @@ -36,18 +36,18 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:49:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:00 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [1d7d60e8-0003-007a-1408-fc3e99000000] + x-ms-request-id: [34496e0e-0003-00cf-2703-fd3366000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [12b07142-67fc-11e7-86bc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [45ab911c-68f6-11e7-a43a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:40:59 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/?comp=list&prefix=queue665a1100&maxresults=1&include=metadata @@ -58,10 +58,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:00 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1d7d6106-0003-007a-2f08-fc3e99000000] + x-ms-request-id: [34496e17-0003-00cf-3003-fd3366000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_list_queues_with_options.yaml b/tests/recordings/test_queue.test_list_queues_with_options.yaml index 2608712c..c79a72b1 100644 --- a/tests/recordings/test_queue.test_list_queues_with_options.yaml +++ b/tests/recordings/test_queue.test_list_queues_with_options.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [12cb2e24-67fc-11e7-b233-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [45c8becc-68f6-11e7-a4a1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/listqueue0560410cb response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a92c9487-0003-0135-3d08-fcbcd4000000] + x-ms-request-id: [4e2382b7-0003-0125-6903-fd8a32000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -24,19 +24,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [12ec9762-67fc-11e7-a279-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [45dd9b6c-68f6-11e7-a556-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/listqueue1560410cb response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a92c9495-0003-0135-4508-fcbcd4000000] + x-ms-request-id: [4e2382bf-0003-0125-6e03-fd8a32000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -44,19 +44,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [12f1f5ae-67fc-11e7-a802-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [45e38cac-68f6-11e7-8ad4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/listqueue2560410cb response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a92c9497-0003-0135-4608-fcbcd4000000] + x-ms-request-id: [4e2382c1-0003-0125-6f03-fd8a32000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -64,28 +64,28 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [12f7c722-67fc-11e7-8e5b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [45e985d0-68f6-11e7-8b9f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/listqueue3560410cb response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:49:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a92c9499-0003-0135-4708-fcbcd4000000] + x-ms-request-id: [4e2382c6-0003-0125-7203-fd8a32000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [12fe3cb0-67fc-11e7-a4fd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [45f011c0-68f6-11e7-bdf6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:00 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/?comp=list&prefix=listqueue&maxresults=3 @@ -95,19 +95,19 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a92c949b-0003-0135-4808-fcbcd4000000] + x-ms-request-id: [4e2382ca-0003-0125-7503-fd8a32000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1303290a-67fc-11e7-b99e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [45f5421c-68f6-11e7-8376-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:00 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/?comp=list&prefix=listqueue&marker=%2Fstoragename%2Flistqueue3560410cb&include=metadata @@ -118,10 +118,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:49:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a92c949c-0003-0135-4908-fcbcd4000000] + x-ms-request-id: [4e2382ce-0003-0125-7903-fd8a32000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_peek_messages.yaml b/tests/recordings/test_queue.test_peek_messages.yaml index c6f514c5..02d61381 100644 --- a/tests/recordings/test_queue.test_peek_messages.yaml +++ b/tests/recordings/test_queue.test_peek_messages.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1330bd3e-67fc-11e7-85d7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4625ed9a-68f6-11e7-a02d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queueb3920bee response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [505b2a16-0003-012f-3b08-fc93bb000000] + x-ms-request-id: [6b5084bb-0003-009f-2203-fd2c6e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [134b55cc-67fc-11e7-9b57-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [463e638c-68f6-11e7-a1f7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:00 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queueb3920bee/messages response: - body: {string: "\uFEFF6c66d690-dc51-4b79-a36f-c4d9338148abThu,\ - \ 13 Jul 2017 18:50:01 GMTThu, 20 Jul 2017\ - \ 18:50:01 GMTAgAAAAMAAAAAAAAAysH81Aj80gE=Thu,\ - \ 13 Jul 2017 18:50:01 GMT"} + body: {string: "\uFEFF86d04b26-1bc1-419b-b185-e5f99a95d2f0Sat,\ + \ 15 Jul 2017 00:41:01 GMTSat, 22 Jul 2017\ + \ 00:41:01 GMTAgAAAAMAAAAAAAAAWMd7CAP90gE=Sat,\ + \ 15 Jul 2017 00:41:01 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [505b2a26-0003-012f-4708-fc93bb000000] + x-ms-request-id: [6b5084c1-0003-009f-2403-fd2c6e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -52,23 +52,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1350dc54-67fc-11e7-b0ed-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [46443098-68f6-11e7-ba7d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:00 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queueb3920bee/messages response: - body: {string: "\uFEFFe2b980d7-7c7b-4189-9763-b488aec65ecfThu,\ - \ 13 Jul 2017 18:50:01 GMTThu, 20 Jul 2017\ - \ 18:50:01 GMTAgAAAAMAAAAAAAAADEEC1Qj80gE=Thu,\ - \ 13 Jul 2017 18:50:01 GMT"} + body: {string: "\uFEFF9d2a3d06-0ede-410d-889b-de9477042051Sat,\ + \ 15 Jul 2017 00:41:01 GMTSat, 22 Jul 2017\ + \ 00:41:01 GMTAgAAAAMAAAAAAAAAfR+BCAP90gE=Sat,\ + \ 15 Jul 2017 00:41:01 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [505b2a31-0003-012f-5208-fc93bb000000] + x-ms-request-id: [6b5084c2-0003-009f-2503-fd2c6e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -78,23 +78,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [135621f0-67fc-11e7-bdaf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4649a5b4-68f6-11e7-8e90-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:00 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queueb3920bee/messages response: - body: {string: "\uFEFF3dd962e3-899a-4eef-bc0c-b16163aa0762Thu,\ - \ 13 Jul 2017 18:50:01 GMTThu, 20 Jul 2017\ - \ 18:50:01 GMTAgAAAAMAAAAAAAAADUsH1Qj80gE=Thu,\ - \ 13 Jul 2017 18:50:01 GMT"} + body: {string: "\uFEFF65a96785-d34f-4625-89dd-6bccc545931bSat,\ + \ 15 Jul 2017 00:41:01 GMTSat, 22 Jul 2017\ + \ 00:41:01 GMTAgAAAAMAAAAAAAAA5cWGCAP90gE=Sat,\ + \ 15 Jul 2017 00:41:01 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [505b2a3a-0003-012f-5b08-fc93bb000000] + x-ms-request-id: [6b5084c3-0003-009f-2603-fd2c6e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -104,46 +104,46 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [135b457a-67fc-11e7-85d1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [464f7b06-68f6-11e7-8962-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:00 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queueb3920bee/messages response: - body: {string: "\uFEFF4e71f177-e397-4178-8a7a-4ad400d99c78Thu,\ - \ 13 Jul 2017 18:50:01 GMTThu, 20 Jul 2017\ - \ 18:50:01 GMTAgAAAAMAAAAAAAAAR8oM1Qj80gE=Thu,\ - \ 13 Jul 2017 18:50:01 GMT"} + body: {string: "\uFEFFd65eaf51-028d-4b5a-b798-5f3047eb11f7Sat,\ + \ 15 Jul 2017 00:41:01 GMTSat, 22 Jul 2017\ + \ 00:41:01 GMTAgAAAAMAAAAAAAAAPWyMCAP90gE=Sat,\ + \ 15 Jul 2017 00:41:01 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [505b2a48-0003-012f-6808-fc93bb000000] + x-ms-request-id: [6b5084c4-0003-009f-2703-fd2c6e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1360bc98-67fc-11e7-a6b1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [46562ad2-68f6-11e7-812c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:00 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queueb3920bee/messages?peekonly=true response: - body: {string: "\uFEFF6c66d690-dc51-4b79-a36f-c4d9338148abThu,\ - \ 13 Jul 2017 18:50:01 GMTThu, 20 Jul 2017\ - \ 18:50:01 GMT0message1"} + body: {string: "\uFEFF86d04b26-1bc1-419b-b185-e5f99a95d2f0Sat,\ + \ 15 Jul 2017 00:41:01 GMTSat, 22 Jul 2017\ + \ 00:41:01 GMT0message1"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [505b2a51-0003-012f-7008-fc93bb000000] + x-ms-request-id: [6b5084c5-0003-009f-2803-fd2c6e000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_peek_messages_with_options.yaml b/tests/recordings/test_queue.test_peek_messages_with_options.yaml index 4ac15db7..d47dcff7 100644 --- a/tests/recordings/test_queue.test_peek_messages_with_options.yaml +++ b/tests/recordings/test_queue.test_peek_messages_with_options.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [137e7bdc-67fc-11e7-b863-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4674391e-68f6-11e7-8dde-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:01 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queue74f61174 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7ecaa1d7-0003-0045-6c08-fc8945000000] + x-ms-request-id: [179ecf04-0003-002e-7703-fdd413000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [13935c46-67fc-11e7-af06-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [46b0bb0a-68f6-11e7-9a33-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:01 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queue74f61174/messages response: - body: {string: "\uFEFF3649e0f1-77f8-4941-9536-fe38db8ea95dThu,\ - \ 13 Jul 2017 18:50:01 GMTThu, 20 Jul 2017\ - \ 18:50:01 GMTAgAAAAMAAAAAAAAAhdRE1Qj80gE=Thu,\ - \ 13 Jul 2017 18:50:01 GMT"} + body: {string: "\uFEFF816f369d-a809-496b-b9a4-c1b94bc346e3Sat,\ + \ 15 Jul 2017 00:41:02 GMTSat, 22 Jul 2017\ + \ 00:41:02 GMTAgAAAAMAAAAAAAAAgXTuCAP90gE=Sat,\ + \ 15 Jul 2017 00:41:02 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7ecaa1e5-0003-0045-7808-fc8945000000] + x-ms-request-id: [179ecf19-0003-002e-0903-fdd413000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -52,23 +52,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1398d5e2-67fc-11e7-8ddd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [46b6d288-68f6-11e7-9a4c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:01 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queue74f61174/messages response: - body: {string: "\uFEFFab5fa93b-41c1-4ba2-a875-242d7b29edecThu,\ - \ 13 Jul 2017 18:50:01 GMTThu, 20 Jul 2017\ - \ 18:50:01 GMTAgAAAAMAAAAAAAAAnQVK1Qj80gE=Thu,\ - \ 13 Jul 2017 18:50:01 GMT"} + body: {string: "\uFEFF30dbebf2-ee6a-4bb8-aa25-64e7a905bcf5Sat,\ + \ 15 Jul 2017 00:41:02 GMTSat, 22 Jul 2017\ + \ 00:41:02 GMTAgAAAAMAAAAAAAAArij3CAP90gE=Sat,\ + \ 15 Jul 2017 00:41:02 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7ecaa1e9-0003-0045-7c08-fc8945000000] + x-ms-request-id: [179ecf1a-0003-002e-0a03-fdd413000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -78,23 +78,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [139de9cc-67fc-11e7-a62d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [46bfaed0-68f6-11e7-911f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:01 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queue74f61174/messages response: - body: {string: "\uFEFFbb6fb523-2b9a-4cfa-939d-842b94bd579bThu,\ - \ 13 Jul 2017 18:50:01 GMTThu, 20 Jul 2017\ - \ 18:50:01 GMTAgAAAAMAAAAAAAAArTZP1Qj80gE=Thu,\ - \ 13 Jul 2017 18:50:01 GMT"} + body: {string: "\uFEFFb3fe0325-967e-4b7a-822f-6302170d2bb2Sat,\ + \ 15 Jul 2017 00:41:02 GMTSat, 22 Jul 2017\ + \ 00:41:02 GMTAgAAAAMAAAAAAAAA7ID8CAP90gE=Sat,\ + \ 15 Jul 2017 00:41:02 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7ecaa1ee-0003-0045-0108-fc8945000000] + x-ms-request-id: [179ecf1c-0003-002e-0c03-fdd413000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -104,52 +104,52 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [13a3566e-67fc-11e7-995d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [46c50d26-68f6-11e7-99e2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:01 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queue74f61174/messages response: - body: {string: "\uFEFFd9603e40-4d42-47f1-8dcc-f76515363b7fThu,\ - \ 13 Jul 2017 18:50:01 GMTThu, 20 Jul 2017\ - \ 18:50:01 GMTAgAAAAMAAAAAAAAA77VU1Qj80gE=Thu,\ - \ 13 Jul 2017 18:50:01 GMT"} + body: {string: "\uFEFFf3f24bd6-23bd-42bd-bd4a-4c47b9d6b680Sat,\ + \ 15 Jul 2017 00:41:02 GMTSat, 22 Jul 2017\ + \ 00:41:02 GMTAgAAAAMAAAAAAAAAq+oCCQP90gE=Sat,\ + \ 15 Jul 2017 00:41:02 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7ecaa1f6-0003-0045-0908-fc8945000000] + x-ms-request-id: [179ecf27-0003-002e-0e03-fdd413000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [13a86e92-67fc-11e7-9330-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [46cbbad8-68f6-11e7-87a9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:01 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queue74f61174/messages?peekonly=true&numofmessages=4 response: - body: {string: "\uFEFF3649e0f1-77f8-4941-9536-fe38db8ea95dThu,\ - \ 13 Jul 2017 18:50:01 GMTThu, 20 Jul 2017\ - \ 18:50:01 GMT0message1ab5fa93b-41c1-4ba2-a875-242d7b29edecThu,\ - \ 13 Jul 2017 18:50:01 GMTThu, 20 Jul 2017\ - \ 18:50:01 GMT0message2bb6fb523-2b9a-4cfa-939d-842b94bd579bThu,\ - \ 13 Jul 2017 18:50:01 GMTThu, 20 Jul 2017\ - \ 18:50:01 GMT0message3d9603e40-4d42-47f1-8dcc-f76515363b7fThu,\ - \ 13 Jul 2017 18:50:01 GMTThu, 20 Jul 2017\ - \ 18:50:01 GMT0message4"} + body: {string: "\uFEFF816f369d-a809-496b-b9a4-c1b94bc346e3Sat,\ + \ 15 Jul 2017 00:41:02 GMTSat, 22 Jul 2017\ + \ 00:41:02 GMT0message130dbebf2-ee6a-4bb8-aa25-64e7a905bcf5Sat,\ + \ 15 Jul 2017 00:41:02 GMTSat, 22 Jul 2017\ + \ 00:41:02 GMT0message2b3fe0325-967e-4b7a-822f-6302170d2bb2Sat,\ + \ 15 Jul 2017 00:41:02 GMTSat, 22 Jul 2017\ + \ 00:41:02 GMT0message3f3f24bd6-23bd-42bd-bd4a-4c47b9d6b680Sat,\ + \ 15 Jul 2017 00:41:02 GMTSat, 22 Jul 2017\ + \ 00:41:02 GMT0message4"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7ecaa1fe-0003-0045-1108-fc8945000000] + x-ms-request-id: [179ecf2e-0003-002e-1403-fdd413000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_put_message.yaml b/tests/recordings/test_queue.test_put_message.yaml index 4b12f36b..500a8da2 100644 --- a/tests/recordings/test_queue.test_put_message.yaml +++ b/tests/recordings/test_queue.test_put_message.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [13c4faa8-67fc-11e7-9b5a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [46e9051e-68f6-11e7-b080-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:01 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queue9d3c0b2f response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:02 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6afa1b9a-0003-0074-0d08-fcd292000000] + x-ms-request-id: [a2a8813b-0003-0124-3703-fd8bcf000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,23 +26,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [13da9446-67fc-11e7-94fe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4704fb28-68f6-11e7-95e2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:02 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queue9d3c0b2f/messages response: - body: {string: "\uFEFFcfa5d97e-967b-4186-864f-e82f54e15a41Thu,\ - \ 13 Jul 2017 18:50:01 GMTThu, 20 Jul 2017\ - \ 18:50:01 GMTAgAAAAMAAAAAAAAAyCOM1Qj80gE=Thu,\ - \ 13 Jul 2017 18:50:01 GMT"} + body: {string: "\uFEFFf860f84a-b92f-4a72-8f0f-aa90dfba6a3eSat,\ + \ 15 Jul 2017 00:41:02 GMTSat, 22 Jul 2017\ + \ 00:41:02 GMTAgAAAAMAAAAAAAAAQSJCCQP90gE=Sat,\ + \ 15 Jul 2017 00:41:02 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:02 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6afa1ba9-0003-0074-1a08-fcd292000000] + x-ms-request-id: [a2a8814b-0003-0124-4403-fd8bcf000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -52,23 +52,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [13e02b98-67fc-11e7-b249-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [470a89a8-68f6-11e7-b119-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:02 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queue9d3c0b2f/messages response: - body: {string: "\uFEFF9ee54f8e-1054-4a91-a57c-f6db820a4f36Thu,\ - \ 13 Jul 2017 18:50:02 GMTThu, 20 Jul 2017\ - \ 18:50:02 GMTAgAAAAMAAAAAAAAACqOR1Qj80gE=Thu,\ - \ 13 Jul 2017 18:50:02 GMT"} + body: {string: "\uFEFF31882ed7-f156-4a9b-aca7-cdbdacbe707cSat,\ + \ 15 Jul 2017 00:41:02 GMTSat, 22 Jul 2017\ + \ 00:41:02 GMTAgAAAAMAAAAAAAAAcnpHCQP90gE=Sat,\ + \ 15 Jul 2017 00:41:02 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:02 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6afa1bb2-0003-0074-2308-fcd292000000] + x-ms-request-id: [a2a8814d-0003-0124-4603-fd8bcf000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -78,23 +78,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [13e5b858-67fc-11e7-a9a3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [470fe9b8-68f6-11e7-9f1b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:02 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queue9d3c0b2f/messages response: - body: {string: "\uFEFFd84b426b-2eb4-4bb8-99d9-0a821213c8d5Thu,\ - \ 13 Jul 2017 18:50:02 GMTThu, 20 Jul 2017\ - \ 18:50:02 GMTAgAAAAMAAAAAAAAATSKX1Qj80gE=Thu,\ - \ 13 Jul 2017 18:50:02 GMT"} + body: {string: "\uFEFFf9a1391d-05a9-4991-b427-598ef9b4f89bSat,\ + \ 15 Jul 2017 00:41:02 GMTSat, 22 Jul 2017\ + \ 00:41:02 GMTAgAAAAMAAAAAAAAAnNJMCQP90gE=Sat,\ + \ 15 Jul 2017 00:41:02 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:02 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6afa1bbd-0003-0074-2d08-fcd292000000] + x-ms-request-id: [a2a88151-0003-0124-4a03-fd8bcf000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -104,23 +104,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [13eb6012-67fc-11e7-856d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [47164b64-68f6-11e7-85a9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:02 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queue9d3c0b2f/messages response: - body: {string: "\uFEFF6edc1c07-0959-44d4-ac60-e49d4d7577b2Thu,\ - \ 13 Jul 2017 18:50:02 GMTThu, 20 Jul 2017\ - \ 18:50:02 GMTAgAAAAMAAAAAAAAA2Rad1Qj80gE=Thu,\ - \ 13 Jul 2017 18:50:02 GMT"} + body: {string: "\uFEFFd1cf56fc-6b17-41f3-843d-59c103c331dcSat,\ + \ 15 Jul 2017 00:41:03 GMTSat, 22 Jul 2017\ + \ 00:41:03 GMTAgAAAAMAAAAAAAAAZzxTCQP90gE=Sat,\ + \ 15 Jul 2017 00:41:03 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:02 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6afa1bc7-0003-0074-3708-fcd292000000] + x-ms-request-id: [a2a88157-0003-0124-4e03-fd8bcf000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_queue.test_queue_exists.yaml b/tests/recordings/test_queue.test_queue_exists.yaml index 29f7895d..b3051694 100644 --- a/tests/recordings/test_queue.test_queue_exists.yaml +++ b/tests/recordings/test_queue.test_queue_exists.yaml @@ -4,28 +4,28 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1407db5c-67fc-11e7-abbb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [47348b58-68f6-11e7-ae9f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:02 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuea8d70bb6 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:02 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f29cbf60-0003-00df-7108-fc0580000000] + x-ms-request-id: [edeb60a2-0003-0062-1103-fd130c000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [141bb488-67fc-11e7-82ab-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4749bad0-68f6-11e7-94ba-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:02 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queuea8d70bb6?comp=metadata @@ -33,11 +33,11 @@ interactions: body: {string: ''} headers: Cache-Control: [no-cache] - Date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:02 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-approximate-messages-count: ['0'] - x-ms-request-id: [f29cbf68-0003-00df-7608-fc0580000000] + x-ms-request-id: [edeb60a8-0003-0062-1503-fd130c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_queue_not_exists.yaml b/tests/recordings/test_queue.test_queue_not_exists.yaml index ff8d83bc..a62153b3 100644 --- a/tests/recordings/test_queue.test_queue_not_exists.yaml +++ b/tests/recordings/test_queue.test_queue_not_exists.yaml @@ -3,22 +3,22 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1435ee52-67fc-11e7-a97d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [476722be-68f6-11e7-9efb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:02 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/missingdb9b0d66?comp=metadata response: body: {string: "\uFEFFQueueNotFoundThe\ - \ specified queue does not exist.\nRequestId:c6b9577b-0003-00e5-7808-fc4623000000\n\ - Time:2017-07-13T18:50:02.5800286Z"} + \ specified queue does not exist.\nRequestId:2bb927d4-0003-0054-4c03-fdbe5e000000\n\ + Time:2017-07-15T00:41:03.3178666Z"} headers: Content-Length: ['217'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:02 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [c6b9577b-0003-00e5-7808-fc4623000000] + x-ms-request-id: [2bb927d4-0003-0054-4c03-fdbe5e000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified queue does not exist.} version: 1 diff --git a/tests/recordings/test_queue.test_set_queue_acl.yaml b/tests/recordings/test_queue.test_set_queue_acl.yaml index 35312d8c..efb18ee8 100644 --- a/tests/recordings/test_queue.test_set_queue_acl.yaml +++ b/tests/recordings/test_queue.test_set_queue_acl.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [144b88ca-67fc-11e7-8852-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [477c8e06-68f6-11e7-939a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:02 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queueb4690bf1 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:03 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dec3bc40-0003-011b-1f08-fc3c13000000] + x-ms-request-id: [f0cf1b09-0003-00b1-6e03-fdaca9000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -24,9 +24,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [145e5dec-67fc-11e7-bef8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [478fb334-68f6-11e7-93d2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:02 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queueb4690bf1?comp=acl @@ -34,18 +34,18 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:03 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [dec3bc5b-0003-011b-3508-fc3c13000000] + x-ms-request-id: [f0cf1b13-0003-00b1-7603-fdaca9000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [146831dc-67fc-11e7-ac10-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4799ceda-68f6-11e7-9384-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:03 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queueb4690bf1?comp=acl @@ -55,10 +55,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:03 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dec3bc84-0003-011b-5d08-fc3c13000000] + x-ms-request-id: [f0cf1b1c-0003-00b1-7d03-fdaca9000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_set_queue_acl_too_many_ids.yaml b/tests/recordings/test_queue.test_set_queue_acl_too_many_ids.yaml index 844d3909..6ada6696 100644 --- a/tests/recordings/test_queue.test_set_queue_acl_too_many_ids.yaml +++ b/tests/recordings/test_queue.test_set_queue_acl_too_many_ids.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [14835462-67fc-11e7-b7bc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [47b822cc-68f6-11e7-bfde-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queue755c1155 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:03 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e7d44f47-0003-0059-3c08-fc5152000000] + x-ms-request-id: [c18972c8-0003-0017-0d03-fd94b7000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_queue.test_set_queue_acl_with_empty_signed_identifier.yaml b/tests/recordings/test_queue.test_set_queue_acl_with_empty_signed_identifier.yaml index 3cef2df3..faf1503d 100644 --- a/tests/recordings/test_queue.test_set_queue_acl_with_empty_signed_identifier.yaml +++ b/tests/recordings/test_queue.test_set_queue_acl_with_empty_signed_identifier.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [14aad9ec-67fc-11e7-9a26-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [47e3ee7a-68f6-11e7-9787-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuec3a217f5 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:04 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ff9c9b14-0003-0038-0508-fc158d000000] + x-ms-request-id: [e6591af1-0003-00aa-4103-fd823b000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['145'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [14c0895e-67fc-11e7-9bcb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [47fa4e06-68f6-11e7-b730-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuec3a217f5?comp=acl @@ -36,18 +36,18 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:04 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [ff9c9b1b-0003-0038-0a08-fc158d000000] + x-ms-request-id: [e6591b02-0003-00aa-4f03-fd823b000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [14d449ba-67fc-11e7-878b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4800863e-68f6-11e7-aeec-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:03 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queuec3a217f5?comp=acl @@ -56,10 +56,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:04 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ff9c9b2a-0003-0038-1808-fc158d000000] + x-ms-request-id: [e6591b11-0003-00aa-5d03-fd823b000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_set_queue_acl_with_empty_signed_identifiers.yaml b/tests/recordings/test_queue.test_set_queue_acl_with_empty_signed_identifiers.yaml index 348bb4d9..7b1f40f7 100644 --- a/tests/recordings/test_queue.test_set_queue_acl_with_empty_signed_identifiers.yaml +++ b/tests/recordings/test_queue.test_set_queue_acl_with_empty_signed_identifiers.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [14f2cc70-67fc-11e7-aeb9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4819dcba-68f6-11e7-ad36-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuedc0a1868 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:04 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [19c2515e-0003-002b-6108-fc206c000000] + x-ms-request-id: [34de0f49-0003-013c-6b03-fda65a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['60'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [15094cd4-67fc-11e7-ad45-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [482d73ec-68f6-11e7-b3b8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:04 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuedc0a1868?comp=acl @@ -36,18 +36,18 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:50:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:04 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [19c2516d-0003-002b-6d08-fc206c000000] + x-ms-request-id: [34de0f52-0003-013c-7203-fda65a000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [15191c2c-67fc-11e7-8771-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [483bc674-68f6-11e7-943f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:04 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queuedc0a1868?comp=acl @@ -57,10 +57,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:04 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [19c2518e-0003-002b-0a08-fc206c000000] + x-ms-request-id: [34de0f62-0003-013c-0103-fda65a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_set_queue_acl_with_non_existing_queue.yaml b/tests/recordings/test_queue.test_set_queue_acl_with_non_existing_queue.yaml index 03dd1ea3..4aab3a65 100644 --- a/tests/recordings/test_queue.test_set_queue_acl_with_non_existing_queue.yaml +++ b/tests/recordings/test_queue.test_set_queue_acl_with_non_existing_queue.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [153d68de-67fc-11e7-aa3c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4859c870-68f6-11e7-bc2a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:04 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queue50b11604?comp=acl response: body: {string: "\uFEFFQueueNotFoundThe\ - \ specified queue does not exist.\nRequestId:54bf6d2f-0003-006d-5208-fcfefa000000\n\ - Time:2017-07-13T18:50:04.4989334Z"} + \ specified queue does not exist.\nRequestId:0ec14565-0003-0052-1d03-fd4926000000\n\ + Time:2017-07-15T00:41:05.1715159Z"} headers: Content-Length: ['217'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:04 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [54bf6d2f-0003-006d-5208-fcfefa000000] + x-ms-request-id: [0ec14565-0003-0052-1d03-fd4926000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified queue does not exist.} version: 1 diff --git a/tests/recordings/test_queue.test_set_queue_acl_with_signed_identifiers.yaml b/tests/recordings/test_queue.test_set_queue_acl_with_signed_identifiers.yaml index d56c7309..c8ce5e03 100644 --- a/tests/recordings/test_queue.test_set_queue_acl_with_signed_identifiers.yaml +++ b/tests/recordings/test_queue.test_set_queue_acl_with_signed_identifiers.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [156c05cc-67fc-11e7-acf9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [488ab11a-68f6-11e7-9531-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:04 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queue4ea015da response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:04 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e55f13f8-0003-00aa-1a08-fc823b000000] + x-ms-request-id: [3d4a8586-0003-001c-2a03-fd8cc3000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['237'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1582769a-67fc-11e7-9d7c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [489fd7c0-68f6-11e7-b1f3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:04 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queue4ea015da?comp=acl @@ -36,18 +36,18 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:50:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:04 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [e55f140a-0003-00aa-2a08-fc823b000000] + x-ms-request-id: [3d4a8593-0003-001c-3403-fd8cc3000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1595e69e-67fc-11e7-a110-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [48af95b6-68f6-11e7-965a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:04 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queue4ea015da?comp=acl @@ -56,10 +56,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:04 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e55f1432-0003-00aa-4f08-fc823b000000] + x-ms-request-id: [3d4a85a6-0003-001c-4603-fd8cc3000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_set_queue_metadata.yaml b/tests/recordings/test_queue.test_set_queue_metadata.yaml index 745cc140..436a855b 100644 --- a/tests/recordings/test_queue.test_set_queue_metadata.yaml +++ b/tests/recordings/test_queue.test_set_queue_metadata.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [15b683cc-67fc-11e7-8698-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [48ce0d3e-68f6-11e7-868b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuef69d0e02 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:06 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [94945102-0003-000a-3108-fc4d5d000000] + x-ms-request-id: [dcd4067d-0003-0072-5003-fd25ea000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -24,9 +24,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [15cace9a-67fc-11e7-b472-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [48e3fc48-68f6-11e7-bad4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:05 GMT'] x-ms-meta-val1: [test] x-ms-meta-val2: [blah] x-ms-version: ['2017-04-17'] @@ -36,18 +36,18 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:50:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:06 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [94945110-0003-000a-3b08-fc4d5d000000] + x-ms-request-id: [dcd4068d-0003-0072-5e03-fd25ea000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [15cff1cc-67fc-11e7-8019-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [48e9f350-68f6-11e7-9e74-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:05 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queuef69d0e02?comp=metadata @@ -55,13 +55,13 @@ interactions: body: {string: ''} headers: Cache-Control: [no-cache] - Date: ['Thu, 13 Jul 2017 18:50:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:06 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-approximate-messages-count: ['0'] x-ms-meta-val1: [test] x-ms-meta-val2: [blah] - x-ms-request-id: [94945115-0003-000a-4008-fc4d5d000000] + x-ms-request-id: [dcd40699-0003-0072-6903-fd25ea000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_unicode_create_queue_unicode_name.yaml b/tests/recordings/test_queue.test_unicode_create_queue_unicode_name.yaml index 297a5523..31ddc4ef 100644 --- a/tests/recordings/test_queue.test_unicode_create_queue_unicode_name.yaml +++ b/tests/recordings/test_queue.test_unicode_create_queue_unicode_name.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [15ea9c28-67fc-11e7-8a2e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [490c651e-68f6-11e7-9237-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/%E5%95%8A%E9%BD%84%E4%B8%82%E7%8B%9B%E7%8B%9C response: body: {string: "\uFEFFInvalidResourceNameThe\ - \ specifed resource name contains invalid characters.\nRequestId:521834ab-0003-00ec-7108-fc5cad000000\n\ - Time:2017-07-13T18:50:06.4992319Z"} + \ specifed resource name contains invalid characters.\nRequestId:680de0bf-0003-00dc-0203-fd0687000000\n\ + Time:2017-07-15T00:41:06.5407711Z"} headers: Content-Length: ['243'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:05 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [521834ab-0003-00ec-7108-fc5cad000000] + x-ms-request-id: [680de0bf-0003-00dc-0203-fd0687000000] x-ms-version: ['2017-04-17'] status: {code: 400, message: The specifed resource name contains invalid characters.} version: 1 diff --git a/tests/recordings/test_queue.test_unicode_get_messages_unicode_data.yaml b/tests/recordings/test_queue.test_unicode_get_messages_unicode_data.yaml index 6c1c90d8..88dc60f7 100644 --- a/tests/recordings/test_queue.test_unicode_get_messages_unicode_data.yaml +++ b/tests/recordings/test_queue.test_unicode_get_messages_unicode_data.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [16a5ce64-67fc-11e7-b19f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [492f335c-68f6-11e7-a634-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:05 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuef853140e response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:06 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f9ce65bd-0003-00be-5b08-fc415f000000] + x-ms-request-id: [88ead999-0003-0139-5503-fd5225000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -25,48 +25,48 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['106'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [16bbc4e4-67fc-11e7-a826-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4954c02c-68f6-11e7-8378-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:05 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuef853140e/messages response: - body: {string: "\uFEFF76274dc7-8272-4dda-bb99-d8c31571c118Thu,\ - \ 13 Jul 2017 18:50:06 GMTThu, 20 Jul 2017\ - \ 18:50:06 GMTAgAAAAMAAAAAAAAA4lxt2Aj80gE=Thu,\ - \ 13 Jul 2017 18:50:06 GMT"} + body: {string: "\uFEFF204543eb-f354-4d53-a783-0cdef6f429daSat,\ + \ 15 Jul 2017 00:41:06 GMTSat, 22 Jul 2017\ + \ 00:41:06 GMTAgAAAAMAAAAAAAAA8q+RCwP90gE=Sat,\ + \ 15 Jul 2017 00:41:06 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:06 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f9ce65c3-0003-00be-5f08-fc415f000000] + x-ms-request-id: [88ead9ba-0003-0139-6e03-fd5225000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [16c47b70-67fc-11e7-919e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [495a549c-68f6-11e7-88ae-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:05 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queuef853140e/messages response: - body: {string: "\uFEFF76274dc7-8272-4dda-bb99-d8c31571c118Thu,\ - \ 13 Jul 2017 18:50:06 GMTThu, 20 Jul 2017\ - \ 18:50:06 GMTAgAAAAMAAAAAAAAA7IxX6gj80gE=Thu,\ - \ 13 Jul 2017 18:50:36 GMT1message1\u3688\ + body: {string: "\uFEFF204543eb-f354-4d53-a783-0cdef6f429daSat,\ + \ 15 Jul 2017 00:41:06 GMTSat, 22 Jul 2017\ + \ 00:41:06 GMTAgAAAAMAAAAAAAAAG6t4HQP90gE=Sat,\ + \ 15 Jul 2017 00:41:36 GMT1message1\u3688\ "} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:06 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f9ce65c9-0003-00be-6508-fc415f000000] + x-ms-request-id: [88ead9c8-0003-0139-7b03-fd5225000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_unicode_update_message_unicode_data.yaml b/tests/recordings/test_queue.test_unicode_update_message_unicode_data.yaml index 41424cde..71a2e9c9 100644 --- a/tests/recordings/test_queue.test_unicode_update_message_unicode_data.yaml +++ b/tests/recordings/test_queue.test_unicode_update_message_unicode_data.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [16df8190-67fc-11e7-bd8c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [49771746-68f6-11e7-89ef-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:06 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queue223e14de response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:06 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fc2f9251-0003-00b7-0208-fc5bd1000000] + x-ms-request-id: [da5b864d-0003-0078-7c03-fd3c63000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,47 +26,47 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [16f3ae90-67fc-11e7-8eed-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [498c9038-68f6-11e7-8bc1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:06 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queue223e14de/messages response: - body: {string: "\uFEFF66ae803d-281e-4ed4-ad0c-b232ae8b5c27Thu,\ - \ 13 Jul 2017 18:50:07 GMTThu, 20 Jul 2017\ - \ 18:50:07 GMTAgAAAAMAAAAAAAAAAECl2Aj80gE=Thu,\ - \ 13 Jul 2017 18:50:07 GMT"} + body: {string: "\uFEFFa53f8fa5-3140-4df6-9cc0-a3b7343c02f8Sat,\ + \ 15 Jul 2017 00:41:07 GMTSat, 22 Jul 2017\ + \ 00:41:07 GMTAgAAAAMAAAAAAAAAni/KCwP90gE=Sat,\ + \ 15 Jul 2017 00:41:07 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:06 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fc2f925a-0003-00b7-0908-fc5bd1000000] + x-ms-request-id: [da5b865e-0003-0078-0a03-fd3c63000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [16f91068-67fc-11e7-8042-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4995dd46-68f6-11e7-989d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:06 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queue223e14de/messages response: - body: {string: "\uFEFF66ae803d-281e-4ed4-ad0c-b232ae8b5c27Thu,\ - \ 13 Jul 2017 18:50:07 GMTThu, 20 Jul 2017\ - \ 18:50:07 GMTAgAAAAMAAAAAAAAA5sWL6gj80gE=Thu,\ - \ 13 Jul 2017 18:50:37 GMT1message1"} + body: {string: "\uFEFFa53f8fa5-3140-4df6-9cc0-a3b7343c02f8Sat,\ + \ 15 Jul 2017 00:41:07 GMTSat, 22 Jul 2017\ + \ 00:41:07 GMTAgAAAAMAAAAAAAAAr1+0HQP90gE=Sat,\ + \ 15 Jul 2017 00:41:37 GMT1message1"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:06 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fc2f9263-0003-00b7-1208-fc5bd1000000] + x-ms-request-id: [da5b866a-0003-0078-1603-fd3c63000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -75,46 +75,46 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['110'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [16ffea8c-67fc-11e7-917f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [499b8234-68f6-11e7-bf7b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:06 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.queue.core.windows.net/queue223e14de/messages/66ae803d-281e-4ed4-ad0c-b232ae8b5c27?popreceipt=AgAAAAMAAAAAAAAA5sWL6gj80gE%3D&visibilitytimeout=0 + uri: https://storagename.queue.core.windows.net/queue223e14de/messages/a53f8fa5-3140-4df6-9cc0-a3b7343c02f8?popreceipt=AgAAAAMAAAAAAAAAr1%2B0HQP90gE%3D&visibilitytimeout=0 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:50:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:07 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-popreceipt: [AwAAAAMAAAAAAAAAmxOy2Aj80gEBAAAA] - x-ms-request-id: [fc2f9271-0003-00b7-2008-fc5bd1000000] - x-ms-time-next-visible: ['Thu, 13 Jul 2017 18:50:07 GMT'] + x-ms-popreceipt: [AwAAAAMAAAAAAAAAJc0RDAP90gEBAAAA] + x-ms-request-id: [da5b866e-0003-0078-1a03-fd3c63000000] + x-ms-time-next-visible: ['Sat, 15 Jul 2017 00:41:07 GMT'] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [17066ef4-67fc-11e7-9c48-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [49e84a5e-68f6-11e7-b386-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:06 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queue223e14de/messages response: - body: {string: "\uFEFF66ae803d-281e-4ed4-ad0c-b232ae8b5c27Thu,\ - \ 13 Jul 2017 18:50:07 GMTThu, 20 Jul 2017\ - \ 18:50:07 GMTAgAAAAMAAAAAAAAAOKuZ6gj80gE=Thu,\ - \ 13 Jul 2017 18:50:37 GMT2\u554A\ + body: {string: "\uFEFFa53f8fa5-3140-4df6-9cc0-a3b7343c02f8Sat,\ + \ 15 Jul 2017 00:41:07 GMTSat, 22 Jul 2017\ + \ 00:41:07 GMTAgAAAAMAAAAAAAAAn9QGHgP90gE=Sat,\ + \ 15 Jul 2017 00:41:37 GMT2\u554A\ \u9F44\u4E02\u72DB\u72DC"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:07 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fc2f927f-0003-00b7-2e08-fc5bd1000000] + x-ms-request-id: [da5b86e1-0003-0078-0b03-fd3c63000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_update_message.yaml b/tests/recordings/test_queue.test_update_message.yaml index f3cfda3a..91debd48 100644 --- a/tests/recordings/test_queue.test_update_message.yaml +++ b/tests/recordings/test_queue.test_update_message.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1723b16c-67fc-11e7-bf02-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4a046842-68f6-11e7-a387-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:07 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queuec0820c59 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:07 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a3500186-0003-0075-4f08-fcd36f000000] + x-ms-request-id: [59b942f4-0003-00e2-6703-fdb0a6000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,47 +26,47 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1737419e-67fc-11e7-b232-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4a191148-68f6-11e7-a2f9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:07 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queuec0820c59/messages response: - body: {string: "\uFEFF6289e3ab-d834-4cec-83fc-2318be9f7cb5Thu,\ - \ 13 Jul 2017 18:50:07 GMTThu, 20 Jul 2017\ - \ 18:50:07 GMTAgAAAAMAAAAAAAAA8Zbo2Aj80gE=Thu,\ - \ 13 Jul 2017 18:50:07 GMT"} + body: {string: "\uFEFF22e526b7-992e-4cf5-8280-437999458e48Sat,\ + \ 15 Jul 2017 00:41:08 GMTSat, 22 Jul 2017\ + \ 00:41:08 GMTAgAAAAMAAAAAAAAACatWDAP90gE=Sat,\ + \ 15 Jul 2017 00:41:08 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:07 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a3500196-0003-0075-5c08-fcd36f000000] + x-ms-request-id: [59b942fa-0003-00e2-6b03-fdb0a6000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [173c61b4-67fc-11e7-ab26-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4a1f6548-68f6-11e7-b51a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:07 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queuec0820c59/messages response: - body: {string: "\uFEFF6289e3ab-d834-4cec-83fc-2318be9f7cb5Thu,\ - \ 13 Jul 2017 18:50:07 GMTThu, 20 Jul 2017\ - \ 18:50:07 GMTAgAAAAMAAAAAAAAA7kPP6gj80gE=Thu,\ - \ 13 Jul 2017 18:50:37 GMT1message1"} + body: {string: "\uFEFF22e526b7-992e-4cf5-8280-437999458e48Sat,\ + \ 15 Jul 2017 00:41:08 GMTSat, 22 Jul 2017\ + \ 00:41:08 GMTAgAAAAMAAAAAAAAAUs09HgP90gE=Sat,\ + \ 15 Jul 2017 00:41:38 GMT1message1"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:07 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a350019f-0003-0075-6408-fcd36f000000] + x-ms-request-id: [59b942ff-0003-00e2-7003-fdb0a6000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -74,45 +74,45 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1747464a-67fc-11e7-887c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4a266988-68f6-11e7-8ec5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:07 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.queue.core.windows.net/queuec0820c59/messages/6289e3ab-d834-4cec-83fc-2318be9f7cb5?popreceipt=AgAAAAMAAAAAAAAA7kPP6gj80gE%3D&visibilitytimeout=0 + uri: https://storagename.queue.core.windows.net/queuec0820c59/messages/22e526b7-992e-4cf5-8280-437999458e48?popreceipt=AgAAAAMAAAAAAAAAUs09HgP90gE%3D&visibilitytimeout=0 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:07 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-popreceipt: [AwAAAAMAAAAAAAAAfnj42Aj80gEBAAAA] - x-ms-request-id: [a35001b7-0003-0075-7b08-fcd36f000000] - x-ms-time-next-visible: ['Thu, 13 Jul 2017 18:50:07 GMT'] + x-ms-popreceipt: [AwAAAAMAAAAAAAAAezBjDAP90gEBAAAA] + x-ms-request-id: [59b94305-0003-00e2-7603-fdb0a6000000] + x-ms-time-next-visible: ['Sat, 15 Jul 2017 00:41:08 GMT'] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [174c7a5c-67fc-11e7-84f0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4a2bdc62-68f6-11e7-afd1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:07 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queuec0820c59/messages response: - body: {string: "\uFEFF6289e3ab-d834-4cec-83fc-2318be9f7cb5Thu,\ - \ 13 Jul 2017 18:50:07 GMTThu, 20 Jul 2017\ - \ 18:50:07 GMTAgAAAAMAAAAAAAAAmprf6gj80gE=Thu,\ - \ 13 Jul 2017 18:50:37 GMT2message1"} + body: {string: "\uFEFF22e526b7-992e-4cf5-8280-437999458e48Sat,\ + \ 15 Jul 2017 00:41:08 GMTSat, 22 Jul 2017\ + \ 00:41:08 GMTAgAAAAMAAAAAAAAAyFJKHgP90gE=Sat,\ + \ 15 Jul 2017 00:41:38 GMT2message1"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:07 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a35001c2-0003-0075-0608-fcd36f000000] + x-ms-request-id: [59b9430d-0003-00e2-7e03-fdb0a6000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue.test_update_message_content.yaml b/tests/recordings/test_queue.test_update_message_content.yaml index fb1cba7a..745fe534 100644 --- a/tests/recordings/test_queue.test_update_message_content.yaml +++ b/tests/recordings/test_queue.test_update_message_content.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [17681898-67fc-11e7-92d4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4a4f6f7a-68f6-11e7-bfef-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:07 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/queue32150fb3 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:08 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e749e6a9-0003-008f-7308-fc1a88000000] + x-ms-request-id: [5daa8053-0003-0098-4d03-fddaeb000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,47 +26,47 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [177c1dfa-67fc-11e7-9c14-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4a6cb582-68f6-11e7-8598-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:07 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/queue32150fb3/messages response: - body: {string: "\uFEFFe7ede125-991f-49cd-b9d3-9d528e176c47Thu,\ - \ 13 Jul 2017 18:50:08 GMTThu, 20 Jul 2017\ - \ 18:50:08 GMTAgAAAAMAAAAAAAAA8MIt2Qj80gE=Thu,\ - \ 13 Jul 2017 18:50:08 GMT"} + body: {string: "\uFEFF3a7ec3de-7cb1-41a3-a2be-e8cb99ac8117Sat,\ + \ 15 Jul 2017 00:41:08 GMTSat, 22 Jul 2017\ + \ 00:41:08 GMTAgAAAAMAAAAAAAAAyViqDAP90gE=Sat,\ + \ 15 Jul 2017 00:41:08 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:08 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e749e6ae-0003-008f-7608-fc1a88000000] + x-ms-request-id: [5daa805e-0003-0098-5603-fddaeb000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [17833182-67fc-11e7-971f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4a72f1cc-68f6-11e7-8c83-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:07 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queue32150fb3/messages response: - body: {string: "\uFEFFe7ede125-991f-49cd-b9d3-9d528e176c47Thu,\ - \ 13 Jul 2017 18:50:08 GMTThu, 20 Jul 2017\ - \ 18:50:08 GMTAgAAAAMAAAAAAAAAB0UW6wj80gE=Thu,\ - \ 13 Jul 2017 18:50:38 GMT1message1"} + body: {string: "\uFEFF3a7ec3de-7cb1-41a3-a2be-e8cb99ac8117Sat,\ + \ 15 Jul 2017 00:41:08 GMTSat, 22 Jul 2017\ + \ 00:41:08 GMTAgAAAAMAAAAAAAAA3yyRHgP90gE=Sat,\ + \ 15 Jul 2017 00:41:38 GMT1message1"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:08 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e749e6b1-0003-008f-7908-fc1a88000000] + x-ms-request-id: [5daa8068-0003-0098-5e03-fddaeb000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -76,46 +76,46 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['103'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1789d140-67fc-11e7-a790-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4a847c08-68f6-11e7-b81e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:07 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.queue.core.windows.net/queue32150fb3/messages/e7ede125-991f-49cd-b9d3-9d528e176c47?popreceipt=AgAAAAMAAAAAAAAAB0UW6wj80gE%3D&visibilitytimeout=0 + uri: https://storagename.queue.core.windows.net/queue32150fb3/messages/3a7ec3de-7cb1-41a3-a2be-e8cb99ac8117?popreceipt=AgAAAAMAAAAAAAAA3yyRHgP90gE%3D&visibilitytimeout=0 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:08 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-popreceipt: [AwAAAAMAAAAAAAAA1As72Qj80gEBAAAA] - x-ms-request-id: [e749e6b5-0003-008f-7d08-fc1a88000000] - x-ms-time-next-visible: ['Thu, 13 Jul 2017 18:50:08 GMT'] + x-ms-popreceipt: [AwAAAAMAAAAAAAAAno7BDAP90gEBAAAA] + x-ms-request-id: [5daa807c-0003-0098-7203-fddaeb000000] + x-ms-time-next-visible: ['Sat, 15 Jul 2017 00:41:08 GMT'] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [178fb0d8-67fc-11e7-a87f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4a90bdec-68f6-11e7-92ff-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:08 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/queue32150fb3/messages response: - body: {string: "\uFEFFe7ede125-991f-49cd-b9d3-9d528e176c47Thu,\ - \ 13 Jul 2017 18:50:08 GMTThu, 20 Jul 2017\ - \ 18:50:08 GMTAgAAAAMAAAAAAAAAuT8j6wj80gE=Thu,\ - \ 13 Jul 2017 18:50:38 GMT2new\ + body: {string: "\uFEFF3a7ec3de-7cb1-41a3-a2be-e8cb99ac8117Sat,\ + \ 15 Jul 2017 00:41:08 GMTSat, 22 Jul 2017\ + \ 00:41:08 GMTAgAAAAMAAAAAAAAAwUGvHgP90gE=Sat,\ + \ 15 Jul 2017 00:41:38 GMT2new\ \ text"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:08 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e749e6b6-0003-008f-7e08-fc1a88000000] + x-ms-request-id: [5daa8083-0003-0098-7903-fddaeb000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encodings.test_message_base64_decode_fails.yaml b/tests/recordings/test_queue_encodings.test_message_base64_decode_fails.yaml index 5ae3a618..abd5dfc4 100644 --- a/tests/recordings/test_queue_encodings.test_message_base64_decode_fails.yaml +++ b/tests/recordings/test_queue_encodings.test_message_base64_decode_fails.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [17ad0de8-67fc-11e7-9f2c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4aadabfa-68f6-11e7-a5a6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:08 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/mytestqueue0453d1525 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:50:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:09 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [17f7d9bc-0003-0011-3908-fc63cf000000] + x-ms-request-id: [0131f13b-0003-013e-1a03-fda4a0000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,115 +26,115 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['98'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [17c92ec6-67fc-11e7-91be-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4ac14354-68f6-11e7-a2de-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:08 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/mytestqueue0453d1525/messages response: - body: {string: "\uFEFF3f4d1e9b-b187-4b63-9b44-b5354b106cceThu,\ - \ 13 Jul 2017 18:50:08 GMTThu, 20 Jul 2017\ - \ 18:50:08 GMTAgAAAAMAAAAAAAAAMzqJ2Qj80gE=Thu,\ - \ 13 Jul 2017 18:50:08 GMT"} + body: {string: "\uFEFF70cc3225-6a03-4aa8-a589-ee7a84f9ad42Sat,\ + \ 15 Jul 2017 00:41:09 GMTSat, 22 Jul 2017\ + \ 00:41:09 GMTAgAAAAMAAAAAAAAAW9YMDQP90gE=Sat,\ + \ 15 Jul 2017 00:41:09 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:08 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78d1399-0003-0032-1108-fc0c04000000] + x-ms-request-id: [732f9385-0003-0033-5a03-fd0df9000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [17dea9a4-67fc-11e7-acc0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4ad52018-68f6-11e7-a5cc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:08 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/mytestqueue0453d1525/messages?peekonly=true response: - body: {string: "\uFEFF3f4d1e9b-b187-4b63-9b44-b5354b106cceThu,\ - \ 13 Jul 2017 18:50:08 GMTThu, 20 Jul 2017\ - \ 18:50:08 GMT0xyz"} + body: {string: "\uFEFF70cc3225-6a03-4aa8-a589-ee7a84f9ad42Sat,\ + \ 15 Jul 2017 00:41:09 GMTSat, 22 Jul 2017\ + \ 00:41:09 GMT0xyz"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:09 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78d13a5-0003-0032-1b08-fc0c04000000] + x-ms-request-id: [732f9396-0003-0033-6903-fd0df9000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [17dea9a4-67fc-11e7-acc0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4ad52018-68f6-11e7-a5cc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:26 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/mytestqueue0453d1525/messages?peekonly=true response: - body: {string: "\uFEFF3f4d1e9b-b187-4b63-9b44-b5354b106cceThu,\ - \ 13 Jul 2017 18:50:08 GMTThu, 20 Jul 2017\ - \ 18:50:08 GMT0xyz"} + body: {string: "\uFEFF70cc3225-6a03-4aa8-a589-ee7a84f9ad42Sat,\ + \ 15 Jul 2017 00:41:09 GMTSat, 22 Jul 2017\ + \ 00:41:09 GMT0xyz"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:27 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78d2142-0003-0032-4008-fc0c04000000] + x-ms-request-id: [732faefc-0003-0033-6103-fd0df9000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [17dea9a4-67fc-11e7-acc0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:50:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4ad52018-68f6-11e7-a5cc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:41:50 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/mytestqueue0453d1525/messages?peekonly=true response: - body: {string: "\uFEFF3f4d1e9b-b187-4b63-9b44-b5354b106cceThu,\ - \ 13 Jul 2017 18:50:08 GMTThu, 20 Jul 2017\ - \ 18:50:08 GMT0xyz"} + body: {string: "\uFEFF70cc3225-6a03-4aa8-a589-ee7a84f9ad42Sat,\ + \ 15 Jul 2017 00:41:09 GMTSat, 22 Jul 2017\ + \ 00:41:09 GMT0xyz"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:50:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:41:51 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78d3611-0003-0032-7708-fc0c04000000] + x-ms-request-id: [732fd28d-0003-0033-6403-fd0df9000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [17dea9a4-67fc-11e7-acc0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4ad52018-68f6-11e7-a5cc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:32 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/mytestqueue0453d1525/messages?peekonly=true response: - body: {string: "\uFEFF3f4d1e9b-b187-4b63-9b44-b5354b106cceThu,\ - \ 13 Jul 2017 18:50:08 GMTThu, 20 Jul 2017\ - \ 18:50:08 GMT0xyz"} + body: {string: "\uFEFF70cc3225-6a03-4aa8-a589-ee7a84f9ad42Sat,\ + \ 15 Jul 2017 00:41:09 GMTSat, 22 Jul 2017\ + \ 00:41:09 GMT0xyz"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:33 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78d5a35-0003-0032-6809-fc0c04000000] + x-ms-request-id: [73300edb-0003-0033-2b03-fd0df9000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encodings.test_message_bytes_base64.yaml b/tests/recordings/test_queue_encodings.test_message_bytes_base64.yaml index cef7dae9..3b52e222 100644 --- a/tests/recordings/test_queue_encodings.test_message_bytes_base64.yaml +++ b/tests/recordings/test_queue_encodings.test_message_bytes_base64.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4a268f3a-67fc-11e7-ab7e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7d170c80-68f6-11e7-a82d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:32 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/mytestqueue0bdb1127a response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:33 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [65db9a80-0003-009d-6f09-fc2e94000000] + x-ms-request-id: [991d104f-0003-0097-3603-fd371d000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,47 +26,47 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['99'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4a3b69e6-67fc-11e7-8440-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7d2ba2ba-68f6-11e7-a3a3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:32 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/mytestqueue0bdb1127a/messages response: - body: {string: "\uFEFFc29e769f-fdd7-41df-bafe-1447328befe6Thu,\ - \ 13 Jul 2017 18:51:33 GMTThu, 20 Jul 2017\ - \ 18:51:33 GMTAgAAAAMAAAAAAAAAbNj6Cwn80gE=Thu,\ - \ 13 Jul 2017 18:51:33 GMT"} + body: {string: "\uFEFFa4487730-8f07-44a8-b219-433999d62b49Sat,\ + \ 15 Jul 2017 00:42:33 GMTSat, 22 Jul 2017\ + \ 00:42:33 GMTAgAAAAMAAAAAAAAAM5l2PwP90gE=Sat,\ + \ 15 Jul 2017 00:42:33 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:32 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9203db4a-0003-00e7-6409-fc44d9000000] + x-ms-request-id: [2449eb8c-0003-00a5-7d03-fd6fcd000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4a4edf30-67fc-11e7-b338-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7d3f5cda-68f6-11e7-9514-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:33 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/mytestqueue0bdb1127a/messages response: - body: {string: "\uFEFFc29e769f-fdd7-41df-bafe-1447328befe6Thu,\ - \ 13 Jul 2017 18:51:33 GMTThu, 20 Jul 2017\ - \ 18:51:33 GMTAgAAAAMAAAAAAAAAgKzhHQn80gE=Thu,\ - \ 13 Jul 2017 18:52:03 GMT1eHl6"} + body: {string: "\uFEFFa4487730-8f07-44a8-b219-433999d62b49Sat,\ + \ 15 Jul 2017 00:42:33 GMTSat, 22 Jul 2017\ + \ 00:42:33 GMTAgAAAAMAAAAAAAAAo95fUQP90gE=Sat,\ + \ 15 Jul 2017 00:43:03 GMT1eHl6"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:32 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9203db50-0003-00e7-6809-fc44d9000000] + x-ms-request-id: [2449eb9b-0003-00a5-0903-fd6fcd000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encodings.test_message_text_base64.yaml b/tests/recordings/test_queue_encodings.test_message_text_base64.yaml index 91d52c60..7705ce34 100644 --- a/tests/recordings/test_queue_encodings.test_message_text_base64.yaml +++ b/tests/recordings/test_queue_encodings.test_message_text_base64.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4a7d97f8-67fc-11e7-9f62-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7d71aa5a-68f6-11e7-97cc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:33 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/mytestqueue0ab101218 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:32 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:33 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [93ce9b7d-0003-001f-3209-fc8fc4000000] + x-ms-request-id: [8be106b0-0003-002d-3a03-fdd714000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,47 +26,47 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['99'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4a955c08-67fc-11e7-acde-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7d879d1a-68f6-11e7-ad86-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:33 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/mytestqueue0ab101218/messages response: - body: {string: "\uFEFF79353b4a-a9f5-4307-b976-cb06a0d95fb4Thu,\ - \ 13 Jul 2017 18:51:33 GMTThu, 20 Jul 2017\ - \ 18:51:33 GMTAgAAAAMAAAAAAAAAq09WDAn80gE=Thu,\ - \ 13 Jul 2017 18:51:33 GMT"} + body: {string: "\uFEFF1710cad5-c95b-4924-9bd4-5ee5a5895753Sat,\ + \ 15 Jul 2017 00:42:34 GMTSat, 22 Jul 2017\ + \ 00:42:34 GMTAgAAAAMAAAAAAAAA26zSPwP90gE=Sat,\ + \ 15 Jul 2017 00:42:34 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:34 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cc026a30-0003-0018-3509-fc7941000000] + x-ms-request-id: [013243a7-0003-013e-2403-fda4a0000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4aaa4da2-67fc-11e7-8020-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7d9b6f70-68f6-11e7-888a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:33 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/mytestqueue0ab101218/messages response: - body: {string: "\uFEFF79353b4a-a9f5-4307-b976-cb06a0d95fb4Thu,\ - \ 13 Jul 2017 18:51:33 GMTThu, 20 Jul 2017\ - \ 18:51:33 GMTAgAAAAMAAAAAAAAAF8A9Hgn80gE=Thu,\ - \ 13 Jul 2017 18:52:03 GMT1AQ=="} + body: {string: "\uFEFF1710cad5-c95b-4924-9bd4-5ee5a5895753Sat,\ + \ 15 Jul 2017 00:42:34 GMTSat, 22 Jul 2017\ + \ 00:42:34 GMTAgAAAAMAAAAAAAAAB4G5UQP90gE=Sat,\ + \ 15 Jul 2017 00:43:04 GMT1AQ=="} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:34 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cc026a3b-0003-0018-3e09-fc7941000000] + x-ms-request-id: [013243b1-0003-013e-2c03-fda4a0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encodings.test_message_text_xml.yaml b/tests/recordings/test_queue_encodings.test_message_text_xml.yaml index 322bc9c0..4f16156a 100644 --- a/tests/recordings/test_queue_encodings.test_message_text_xml.yaml +++ b/tests/recordings/test_queue_encodings.test_message_text_xml.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4adb0da2-67fc-11e7-921e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7dcb6f06-68f6-11e7-8fc5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:33 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/mytestqueue075b91164 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:33 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:35 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [df7c148d-0003-00b8-4a09-fcb627000000] + x-ms-request-id: [ed12e600-0003-00d3-0b03-fdeb71000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,47 +26,47 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['119'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4af234d2-67fc-11e7-978a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7de13e1a-68f6-11e7-b922-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:34 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/mytestqueue075b91164/messages response: - body: {string: "\uFEFF96e93934-f7ab-4835-ad24-0ca7cf5e5ddeThu,\ - \ 13 Jul 2017 18:51:34 GMTThu, 20 Jul 2017\ - \ 18:51:34 GMTAgAAAAMAAAAAAAAAqOGjDAn80gE=Thu,\ - \ 13 Jul 2017 18:51:34 GMT"} + body: {string: "\uFEFFa220c235-f109-4738-b3f8-746dc0390d55Sat,\ + \ 15 Jul 2017 00:42:34 GMTSat, 22 Jul 2017\ + \ 00:42:34 GMTAgAAAAMAAAAAAAAAuBseQAP90gE=Sat,\ + \ 15 Jul 2017 00:42:34 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:35 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [df7c1494-0003-00b8-4f09-fcb627000000] + x-ms-request-id: [ed12e617-0003-00d3-1f03-fdeb71000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4af7bc9a-67fc-11e7-8b9e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7defe776-68f6-11e7-8e0e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:34 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/mytestqueue075b91164/messages response: - body: {string: "\uFEFF96e93934-f7ab-4835-ad24-0ca7cf5e5ddeThu,\ - \ 13 Jul 2017 18:51:34 GMTThu, 20 Jul 2017\ - \ 18:51:34 GMTAgAAAAMAAAAAAAAAz9yKHgn80gE=Thu,\ - \ 13 Jul 2017 18:52:04 GMT1&lt;message1&gt;"} + body: {string: "\uFEFFa220c235-f109-4738-b3f8-746dc0390d55Sat,\ + \ 15 Jul 2017 00:42:34 GMTSat, 22 Jul 2017\ + \ 00:42:34 GMTAgAAAAMAAAAAAAAAZ2cOUgP90gE=Sat,\ + \ 15 Jul 2017 00:43:05 GMT1&lt;message1&gt;"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:35 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [df7c149a-0003-00b8-5309-fcb627000000] + x-ms-request-id: [ed12e63d-0003-00d3-4303-fdeb71000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encodings.test_message_text_xml_invalid_chars.yaml b/tests/recordings/test_queue_encodings.test_message_text_xml_invalid_chars.yaml index 0364fb73..7c584191 100644 --- a/tests/recordings/test_queue_encodings.test_message_text_xml_invalid_chars.yaml +++ b/tests/recordings/test_queue_encodings.test_message_text_xml_invalid_chars.yaml @@ -5,23 +5,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['96'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4b135270-67fc-11e7-84c0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7e0bc7e8-68f6-11e7-9d7a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:34 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/mytestqueue093de171a/messages response: body: {string: "\uFEFFInvalidXmlDocumentXML\ - \ specified is not syntactically valid.\nRequestId:90b21e0e-0003-00fb-3f09-fc9cce000000\n\ - Time:2017-07-13T18:51:34.7822296Z228Error\ + \ specified is not syntactically valid.\nRequestId:2ec9ed0c-0003-009e-5503-fd2d93000000\n\ + Time:2017-07-15T00:42:35.4783114Z228Error\ \ parsing Xml content"} headers: Content-Length: ['327'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:34 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [90b21e0e-0003-00fb-3f09-fc9cce000000] + x-ms-request-id: [2ec9ed0c-0003-009e-5503-fd2d93000000] x-ms-version: ['2017-04-17'] status: {code: 400, message: XML specified is not syntactically valid.} version: 1 diff --git a/tests/recordings/test_queue_encodings.test_message_text_xml_whitespace.yaml b/tests/recordings/test_queue_encodings.test_message_text_xml_whitespace.yaml index f423a027..cc1988d3 100644 --- a/tests/recordings/test_queue_encodings.test_message_text_xml_whitespace.yaml +++ b/tests/recordings/test_queue_encodings.test_message_text_xml_whitespace.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4b6ad5d8-67fc-11e7-8b3d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7e5a8d06-68f6-11e7-af8d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:34 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/mytestqueue0509615f0 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:35 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bde476a2-0003-0026-8009-fccf60000000] + x-ms-request-id: [16da5845-0003-0131-5203-fd4956000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -25,48 +25,48 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['108'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4b889c06-67fc-11e7-afe0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7e6f937a-68f6-11e7-919d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:35 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/mytestqueue0509615f0/messages response: - body: {string: "\uFEFF1c5417b1-8b3c-4a83-bd06-8e8212c4a4adThu,\ - \ 13 Jul 2017 18:51:35 GMTThu, 20 Jul 2017\ - \ 18:51:35 GMTAgAAAAMAAAAAAAAA0yI6DQn80gE=Thu,\ - \ 13 Jul 2017 18:51:35 GMT"} + body: {string: "\uFEFFffd3f7cc-b35c-4b02-b867-5eb677ca025dSat,\ + \ 15 Jul 2017 00:42:35 GMTSat, 22 Jul 2017\ + \ 00:42:35 GMTAgAAAAMAAAAAAAAAWWysQAP90gE=Sat,\ + \ 15 Jul 2017 00:42:35 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:35 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bde476aa-0003-0026-0509-fccf60000000] + x-ms-request-id: [16da584c-0003-0131-5703-fd4956000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4b8e2a68-67fc-11e7-b2b0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7e757800-68f6-11e7-b023-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:35 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/mytestqueue0509615f0/messages response: - body: {string: "\uFEFF1c5417b1-8b3c-4a83-bd06-8e8212c4a4adThu,\ - \ 13 Jul 2017 18:51:35 GMTThu, 20 Jul 2017\ - \ 18:51:35 GMTAgAAAAMAAAAAAAAA6R0hHwn80gE=Thu,\ - \ 13 Jul 2017 18:52:05 GMT1\ + body: {string: "\uFEFFffd3f7cc-b35c-4b02-b867-5eb677ca025dSat,\ + \ 15 Jul 2017 00:42:35 GMTSat, 22 Jul 2017\ + \ 00:42:35 GMTAgAAAAMAAAAAAAAAqLWTUgP90gE=Sat,\ + \ 15 Jul 2017 00:43:05 GMT1\ \ mess\t age1\n"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:35 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bde476b3-0003-0026-0d09-fccf60000000] + x-ms-request-id: [16da5855-0003-0131-5f03-fd4956000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_encryption_add_encrypted_64k_message.yaml b/tests/recordings/test_queue_encryption.test_encryption_add_encrypted_64k_message.yaml index c53a5676..a6af72ce 100644 --- a/tests/recordings/test_queue_encryption.test_encryption_add_encrypted_64k_message.yaml +++ b/tests/recordings/test_queue_encryption.test_encryption_add_encrypted_64k_message.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4bac0eb6-67fc-11e7-b4a6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7eab6500-68f6-11e7-824a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:35 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueue446c19b4 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:35 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8edd3959-0003-0130-1909-fc48ab000000] + x-ms-request-id: [e8c63c8b-0003-00d4-2e03-fd1df4000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,52 +26,52 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['65631'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4bc2bd50-67fc-11e7-b1c6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7ec1c662-68f6-11e7-9049-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:35 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueue446c19b4/messages response: - body: {string: "\uFEFFe06b90dc-397f-4b7e-9eb6-9145c80b156fThu,\ - \ 13 Jul 2017 18:51:35 GMTThu, 20 Jul 2017\ - \ 18:51:35 GMTAgAAAAMAAAAAAAAA1YmJDQn80gE=Thu,\ - \ 13 Jul 2017 18:51:35 GMT"} + body: {string: "\uFEFF005e30b6-8dae-48e3-ab2f-30fd5f856dcdSat,\ + \ 15 Jul 2017 00:42:36 GMTSat, 22 Jul 2017\ + \ 00:42:36 GMTAgAAAAMAAAAAAAAAJF8PQQP90gE=Sat,\ + \ 15 Jul 2017 00:42:36 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:35 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8edd3968-0003-0130-2409-fc48ab000000] + x-ms-request-id: [e8c63c9f-0003-00d4-3f03-fd1df4000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - {"EncryptedMessageContents": "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", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "+gB0peCxls7/0qgLTexCEKYwGHKXbYeQcN/RCvRM3jWkiLUv6PLM/A==", + {"EncryptedMessageContents": "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", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "3e1yQds8W1spdsa3+2SRYP62FNlzF2eNxN2kifHH+xWoUiUp+LDApg==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "2vdeFNJ28So3CKl/2gAenQ==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "QiMVdi5nw5s/z+c5QtzgZg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['87882'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4bddda4a-67fc-11e7-a95a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7ed8e890-68f6-11e7-a504-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:35 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueue446c19b4/messages response: body: {string: "\uFEFFRequestBodyTooLargeThe\ - \ request body is too large and exceeds the maximum permissible limit.\nRequestId:8edd3999-0003-0130-5109-fc48ab000000\n\ - Time:2017-07-13T18:51:36.2291665Z65536"} + \ request body is too large and exceeds the maximum permissible limit.\nRequestId:e8c63cd1-0003-00d4-6f03-fd1df4000000\n\ + Time:2017-07-15T00:42:36.5470702Z65536"} headers: Content-Length: ['286'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:35 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:35 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [8edd3999-0003-0130-5109-fc48ab000000] + x-ms-request-id: [e8c63cd1-0003-00d4-6f03-fd1df4000000] x-ms-version: ['2017-04-17'] status: {code: 413, message: The request body is too large and exceeds the maximum permissible limit.} diff --git a/tests/recordings/test_queue_encryption.test_encryption_nonmatching_kid.yaml b/tests/recordings/test_queue_encryption.test_encryption_nonmatching_kid.yaml index f44b2c66..409b747d 100644 --- a/tests/recordings/test_queue_encryption.test_encryption_nonmatching_kid.yaml +++ b/tests/recordings/test_queue_encryption.test_encryption_nonmatching_kid.yaml @@ -4,78 +4,78 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4c5f3612-67fc-11e7-8554-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7f261f52-68f6-11e7-91cb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:36 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueue577f1613 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:37 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e556eb81-0003-005b-3509-fc53a8000000] + x-ms-request-id: [abba2785-0003-00b2-6003-fdafae000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - {"EncryptedMessageContents": "a2FtKLjxEiBQrYipRXoc0A==", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "H40IZ8B45DxIb0xtPql/lQCuR4uPy6y4q2iCcF+o92hEobpoX3Gu7g==", + {"EncryptedMessageContents": "/Hl8eb16SzHSUbFsrzWUGA==", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "zO9DI0R4ZpemhYeZwqRsw4lcsIxM3m+vA5Jb0wbrzBknTLOlggPtXQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "NJo24XAdPXm5298c8dwspA==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "/3eR7mwsaMlg2PNAuiA+Aw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['502'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4c74d1ca-67fc-11e7-abaf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7f6f7e0c-68f6-11e7-b333-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:36 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueue577f1613/messages response: - body: {string: "\uFEFF2934ab2f-54cf-4410-bb04-35ae827748ccThu,\ - \ 13 Jul 2017 18:51:36 GMTThu, 20 Jul 2017\ - \ 18:51:36 GMTAgAAAAMAAAAAAAAA+akmDgn80gE=Thu,\ - \ 13 Jul 2017 18:51:36 GMT"} + body: {string: "\uFEFF438e073d-6bf6-4b55-8d14-3a4db0fe20c4Sat,\ + \ 15 Jul 2017 00:42:37 GMTSat, 22 Jul 2017\ + \ 00:42:37 GMTAgAAAAMAAAAAAAAAaXC0QQP90gE=Sat,\ + \ 15 Jul 2017 00:42:37 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:37 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e556eb87-0003-005b-3909-fc53a8000000] + x-ms-request-id: [abba278a-0003-00b2-6303-fdafae000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4c7afeba-67fc-11e7-9576-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7f7f7d40-68f6-11e7-a97a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:36 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueue577f1613/messages response: - body: {string: "\uFEFF2934ab2f-54cf-4410-bb04-35ae827748ccThu,\ - \ 13 Jul 2017 18:51:36 GMTThu, 20 Jul 2017\ - \ 18:51:36 GMTAgAAAAMAAAAAAAAAahoOIAn80gE=Thu,\ - \ 13 Jul 2017 18:52:06 GMT1{\"\ - EncryptedMessageContents\": \"a2FtKLjxEiBQrYipRXoc0A==\", \"EncryptionData\"\ - : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"H40IZ8B45DxIb0xtPql/lQCuR4uPy6y4q2iCcF+o92hEobpoX3Gu7g==\"\ + body: {string: "\uFEFF438e073d-6bf6-4b55-8d14-3a4db0fe20c4Sat,\ + \ 15 Jul 2017 00:42:37 GMTSat, 22 Jul 2017\ + \ 00:42:37 GMTAgAAAAMAAAAAAAAA0bWdUwP90gE=Sat,\ + \ 15 Jul 2017 00:43:07 GMT1{\"\ + EncryptedMessageContents\": \"/Hl8eb16SzHSUbFsrzWUGA==\", \"EncryptionData\"\ + : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"zO9DI0R4ZpemhYeZwqRsw4lcsIxM3m+vA5Jb0wbrzBknTLOlggPtXQ==\"\ , \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\"\ - , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"NJo24XAdPXm5298c8dwspA==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"/3eR7mwsaMlg2PNAuiA+Aw==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:37 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e556eb8b-0003-005b-3c09-fc53a8000000] + x-ms-request-id: [abba2793-0003-00b2-6803-fdafae000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_get_messages_encrypted_kek.yaml b/tests/recordings/test_queue_encryption.test_get_messages_encrypted_kek.yaml index f0caeaa9..4b0c0396 100644 --- a/tests/recordings/test_queue_encryption.test_get_messages_encrypted_kek.yaml +++ b/tests/recordings/test_queue_encryption.test_get_messages_encrypted_kek.yaml @@ -4,79 +4,79 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4c9712a8-67fc-11e7-a672-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7fac54d2-68f6-11e7-9364-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueue546e15fa response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:37 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d0488519-0003-00ee-4509-fc5e57000000] + x-ms-request-id: [8820b6e4-0003-0005-5503-fda0ab000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - {"EncryptedMessageContents": "vgRe6NCuyYSLxy8mJGF6ewHmxdGQ/LWNLyCmajK9y0Y=", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "fjSNXnDht9F071ct5JQOmo9gVgU3TG8igrtiTglnxGlI685riDhDXg==", + {"EncryptedMessageContents": "XGdmfEw8yu92lHjjsSIM7hHOALPH/0N4kfkjmfb874U=", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "wnrzAbCKeo79L/gPDo2lRt4ZSdxpscv21raXMzKeDPyzqy+G6xpyOA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "45wg1Hz4wo4bNfEHKY0NeA==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "l10MyNipndmHM5AqXgw4lQ==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['522'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4cab4a0c-67fc-11e7-b3a4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7fd94bc2-68f6-11e7-bcbd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:37 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueue546e15fa/messages response: - body: {string: "\uFEFF8d924211-5602-42cf-ae6e-67d388b1891eThu,\ - \ 13 Jul 2017 18:51:37 GMTThu, 20 Jul 2017\ - \ 18:51:37 GMTAgAAAAMAAAAAAAAAYwZdDgn80gE=Thu,\ - \ 13 Jul 2017 18:51:37 GMT"} + body: {string: "\uFEFF127079df-34a0-46b5-8e94-5e560dbef552Sat,\ + \ 15 Jul 2017 00:42:38 GMTSat, 22 Jul 2017\ + \ 00:42:38 GMTAgAAAAMAAAAAAAAAXNgXQgP90gE=Sat,\ + \ 15 Jul 2017 00:42:38 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:37 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d0488528-0003-00ee-5009-fc5e57000000] + x-ms-request-id: [8820b709-0003-0005-7703-fda0ab000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4cb28558-67fc-11e7-a526-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7fe12286-68f6-11e7-9594-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:37 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueue546e15fa/messages response: - body: {string: "\uFEFF8d924211-5602-42cf-ae6e-67d388b1891eThu,\ - \ 13 Jul 2017 18:51:37 GMTThu, 20 Jul 2017\ - \ 18:51:37 GMTAgAAAAMAAAAAAAAAnyRGIAn80gE=Thu,\ - \ 13 Jul 2017 18:52:07 GMT1{\"\ - EncryptedMessageContents\": \"vgRe6NCuyYSLxy8mJGF6ewHmxdGQ/LWNLyCmajK9y0Y=\"\ + body: {string: "\uFEFF127079df-34a0-46b5-8e94-5e560dbef552Sat,\ + \ 15 Jul 2017 00:42:38 GMTSat, 22 Jul 2017\ + \ 00:42:38 GMTAgAAAAMAAAAAAAAAz0j/UwP90gE=Sat,\ + \ 15 Jul 2017 00:43:08 GMT1{\"\ + EncryptedMessageContents\": \"XGdmfEw8yu92lHjjsSIM7hHOALPH/0N4kfkjmfb874U=\"\ , \"EncryptionData\": {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\"\ - : \"fjSNXnDht9F071ct5JQOmo9gVgU3TG8igrtiTglnxGlI685riDhDXg==\", \"Algorithm\"\ + : \"wnrzAbCKeo79L/gPDo2lRt4ZSdxpscv21raXMzKeDPyzqy+G6xpyOA==\", \"Algorithm\"\ : \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\"\ - : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"45wg1Hz4wo4bNfEHKY0NeA==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"l10MyNipndmHM5AqXgw4lQ==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:37 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d0488530-0003-00ee-5809-fc5e57000000] + x-ms-request-id: [8820b70c-0003-0005-7a03-fda0ab000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_get_messages_encrypted_resolver.yaml b/tests/recordings/test_queue_encryption.test_get_messages_encrypted_resolver.yaml index 868c0815..d4d3e6ed 100644 --- a/tests/recordings/test_queue_encryption.test_get_messages_encrypted_resolver.yaml +++ b/tests/recordings/test_queue_encryption.test_get_messages_encrypted_resolver.yaml @@ -4,79 +4,79 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4cdcdd1a-67fc-11e7-8eea-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [7ffefeda-68f6-11e7-a2ed-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueuec9311831 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:38 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bebc82c6-0003-00f4-5f09-fc7138000000] + x-ms-request-id: [7c4c9659-0003-0034-7a03-fdfb7c000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - {"EncryptedMessageContents": "y9MHFobyf6w+0xKaFGKP9IyMIpG3+aIp5O1NW1QFzgM=", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "Ly1qDGZF8BG6L6VEBaXWyXjOAgMqM4vId2mdbRw2dV7vhyoUnA73mQ==", + {"EncryptedMessageContents": "oa1z7kPTH9i4spciH5cMKMN/ma55ArzoBBg6RbdDUdE=", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "itOUoTGTxlySSNVGm7gwXRo2ycX5B0J7AyKkYciRwL5Kg5q+4HyzfQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "E63Q1z9SxzbyiLQi1gq5MQ==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "RR5pJz1PoBB2czcUSHuPrA==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['522'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4cf6ab46-67fc-11e7-aa3b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [80171cae-68f6-11e7-bac7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:37 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueuec9311831/messages response: - body: {string: "\uFEFF40522ab4-ad4a-4559-925a-e87310c4ce18Thu,\ - \ 13 Jul 2017 18:51:37 GMTThu, 20 Jul 2017\ - \ 18:51:37 GMTAgAAAAMAAAAAAAAAo/+nDgn80gE=Thu,\ - \ 13 Jul 2017 18:51:37 GMT"} + body: {string: "\uFEFFf60dc5bb-de54-4082-b02e-34b4aedccbdaSat,\ + \ 15 Jul 2017 00:42:38 GMTSat, 22 Jul 2017\ + \ 00:42:38 GMTAgAAAAMAAAAAAAAA2jpVQgP90gE=Sat,\ + \ 15 Jul 2017 00:42:38 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:36 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:38 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bebc82e6-0003-00f4-7d09-fc7138000000] + x-ms-request-id: [7c4c965f-0003-0034-7e03-fdfb7c000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4cfbf198-67fc-11e7-949c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8023e358-68f6-11e7-92ed-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:37 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueuec9311831/messages response: - body: {string: "\uFEFF40522ab4-ad4a-4559-925a-e87310c4ce18Thu,\ - \ 13 Jul 2017 18:51:37 GMTThu, 20 Jul 2017\ - \ 18:51:37 GMTAgAAAAMAAAAAAAAApKyOIAn80gE=Thu,\ - \ 13 Jul 2017 18:52:07 GMT1{\"\ - EncryptedMessageContents\": \"y9MHFobyf6w+0xKaFGKP9IyMIpG3+aIp5O1NW1QFzgM=\"\ + body: {string: "\uFEFFf60dc5bb-de54-4082-b02e-34b4aedccbdaSat,\ + \ 15 Jul 2017 00:42:38 GMTSat, 22 Jul 2017\ + \ 00:42:38 GMTAgAAAAMAAAAAAAAAZ4pDVAP90gE=Sat,\ + \ 15 Jul 2017 00:43:08 GMT1{\"\ + EncryptedMessageContents\": \"oa1z7kPTH9i4spciH5cMKMN/ma55ArzoBBg6RbdDUdE=\"\ , \"EncryptionData\": {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\"\ - : \"Ly1qDGZF8BG6L6VEBaXWyXjOAgMqM4vId2mdbRw2dV7vhyoUnA73mQ==\", \"Algorithm\"\ + : \"itOUoTGTxlySSNVGm7gwXRo2ycX5B0J7AyKkYciRwL5Kg5q+4HyzfQ==\", \"Algorithm\"\ : \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\"\ - : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"E63Q1z9SxzbyiLQi1gq5MQ==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"RR5pJz1PoBB2czcUSHuPrA==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:38 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bebc82f6-0003-00f4-0c09-fc7138000000] + x-ms-request-id: [7c4c9663-0003-0034-0203-fdfb7c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_get_with_strict_mode.yaml b/tests/recordings/test_queue_encryption.test_get_with_strict_mode.yaml index 5a9f011f..a2b3fe55 100644 --- a/tests/recordings/test_queue_encryption.test_get_with_strict_mode.yaml +++ b/tests/recordings/test_queue_encryption.test_get_with_strict_mode.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4d25eb90-67fc-11e7-8287-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8043e464-68f6-11e7-91d3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:38 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueued7de1393 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:38 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a4f1f7c3-0003-0123-5509-fc7d4a000000] + x-ms-request-id: [dc108220-0003-012a-7a03-fd67c4000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,56 +26,56 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['102'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4d3eb15c-67fc-11e7-8182-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [805add5e-68f6-11e7-b9a3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:38 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueued7de1393/messages response: - body: {string: "\uFEFF91cf75c2-8ea3-428a-850f-f16f5801fb1fThu,\ - \ 13 Jul 2017 18:51:38 GMTThu, 20 Jul 2017\ - \ 18:51:38 GMTAgAAAAMAAAAAAAAAXhLwDgn80gE=Thu,\ - \ 13 Jul 2017 18:51:38 GMT"} + body: {string: "\uFEFF1fd19d88-1cd3-4d07-a121-30dd94d72bf0Sat,\ + \ 15 Jul 2017 00:42:39 GMTSat, 22 Jul 2017\ + \ 00:42:39 GMTAgAAAAMAAAAAAAAAFuCYQgP90gE=Sat,\ + \ 15 Jul 2017 00:42:39 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:38 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a4f1f7d7-0003-0123-6509-fc7d4a000000] + x-ms-request-id: [dc10822c-0003-012a-0303-fd67c4000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4d43e352-67fc-11e7-ad70-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8062738c-68f6-11e7-bd05-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:38 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueued7de1393/messages response: - body: {string: "\uFEFF91cf75c2-8ea3-428a-850f-f16f5801fb1fThu,\ - \ 13 Jul 2017 18:51:38 GMTThu, 20 Jul 2017\ - \ 18:51:38 GMTAgAAAAMAAAAAAAAARJjWIAn80gE=Thu,\ - \ 13 Jul 2017 18:52:08 GMT1message"} + body: {string: "\uFEFF1fd19d88-1cd3-4d07-a121-30dd94d72bf0Sat,\ + \ 15 Jul 2017 00:42:39 GMTSat, 22 Jul 2017\ + \ 00:42:39 GMTAgAAAAMAAAAAAAAA/ROBVAP90gE=Sat,\ + \ 15 Jul 2017 00:43:09 GMT1message"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:37 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:38 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a4f1f7e6-0003-0123-7409-fc7d4a000000] + x-ms-request-id: [dc108238-0003-012a-0e03-fd67c4000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [4d43e352-67fc-11e7-ad70-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8062738c-68f6-11e7-bd05-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:56 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueued7de1393/messages @@ -85,10 +85,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:56 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a4f20aba-0003-0123-0809-fc7d4a000000] + x-ms-request-id: [dc108d7f-0003-012a-7103-fd67c4000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_invalid_value_kek_unwrap.yaml b/tests/recordings/test_queue_encryption.test_invalid_value_kek_unwrap.yaml index 9e3cae3e..0bfa96fa 100644 --- a/tests/recordings/test_queue_encryption.test_invalid_value_kek_unwrap.yaml +++ b/tests/recordings/test_queue_encryption.test_invalid_value_kek_unwrap.yaml @@ -4,105 +4,105 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [582403c6-67fc-11e7-af23-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8b407f94-68f6-11e7-9408-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:56 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueue29091535 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:56 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [be6e7090-0003-0047-1109-fc8bbf000000] + x-ms-request-id: [a2a8bebc-0003-0124-5a03-fd8bcf000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - {"EncryptedMessageContents": "rK9RgfwQdgzjElykA6qBOQ==", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "lkEAuRbULS7tM47gdiU1xVdvOoe/fzn8qtlD6oRkdQqXXJyTyVHCkQ==", + {"EncryptedMessageContents": "teofIJwfj7y/DxwONfcYig==", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "Lke7sGqIcdzaSnsx4PDW1uLFhZGCszgxfmUTgQ06FCnDH4m6HqZDsA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "Al5othdwbqq93cZMpGDZaQ==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "dvD7u+Lm0NROi2EIwzuldg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['502'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5839cae2-67fc-11e7-beea-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8b548282-68f6-11e7-8760-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:56 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueue29091535/messages response: - body: {string: "\uFEFF36eec7f6-4bc6-447b-a8c7-0f644b0502e6Thu,\ - \ 13 Jul 2017 18:51:56 GMTThu, 20 Jul 2017\ - \ 18:51:56 GMTAgAAAAMAAAAAAAAADjvrGQn80gE=Thu,\ - \ 13 Jul 2017 18:51:56 GMT"} + body: {string: "\uFEFF17159298-ee52-43db-82f1-4a76b7a9c9ddSat,\ + \ 15 Jul 2017 00:42:57 GMTSat, 22 Jul 2017\ + \ 00:42:57 GMTAgAAAAMAAAAAAAAAvU2RTQP90gE=Sat,\ + \ 15 Jul 2017 00:42:57 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:56 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [be6e70a0-0003-0047-1f09-fc8bbf000000] + x-ms-request-id: [a2a8bec4-0003-0124-5f03-fd8bcf000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [583f1452-67fc-11e7-9e2c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8b59e88a-68f6-11e7-9d6c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:56 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueue29091535/messages?peekonly=true response: - body: {string: "\uFEFF36eec7f6-4bc6-447b-a8c7-0f644b0502e6Thu,\ - \ 13 Jul 2017 18:51:56 GMTThu, 20 Jul 2017\ - \ 18:51:56 GMT0{\"\ - EncryptedMessageContents\": \"rK9RgfwQdgzjElykA6qBOQ==\", \"EncryptionData\"\ - : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"lkEAuRbULS7tM47gdiU1xVdvOoe/fzn8qtlD6oRkdQqXXJyTyVHCkQ==\"\ + body: {string: "\uFEFF17159298-ee52-43db-82f1-4a76b7a9c9ddSat,\ + \ 15 Jul 2017 00:42:57 GMTSat, 22 Jul 2017\ + \ 00:42:57 GMT0{\"\ + EncryptedMessageContents\": \"teofIJwfj7y/DxwONfcYig==\", \"EncryptionData\"\ + : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"Lke7sGqIcdzaSnsx4PDW1uLFhZGCszgxfmUTgQ06FCnDH4m6HqZDsA==\"\ , \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\"\ - , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"Al5othdwbqq93cZMpGDZaQ==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"dvD7u+Lm0NROi2EIwzuldg==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:56 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [be6e70ab-0003-0047-2a09-fc8bbf000000] + x-ms-request-id: [a2a8beca-0003-0124-6303-fd8bcf000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [58442d70-67fc-11e7-a467-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8b5ee092-68f6-11e7-829a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:56 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueue29091535/messages?peekonly=true response: - body: {string: "\uFEFF36eec7f6-4bc6-447b-a8c7-0f644b0502e6Thu,\ - \ 13 Jul 2017 18:51:56 GMTThu, 20 Jul 2017\ - \ 18:51:56 GMT0{\"\ - EncryptedMessageContents\": \"rK9RgfwQdgzjElykA6qBOQ==\", \"EncryptionData\"\ - : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"lkEAuRbULS7tM47gdiU1xVdvOoe/fzn8qtlD6oRkdQqXXJyTyVHCkQ==\"\ + body: {string: "\uFEFF17159298-ee52-43db-82f1-4a76b7a9c9ddSat,\ + \ 15 Jul 2017 00:42:57 GMTSat, 22 Jul 2017\ + \ 00:42:57 GMT0{\"\ + EncryptedMessageContents\": \"teofIJwfj7y/DxwONfcYig==\", \"EncryptionData\"\ + : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"Lke7sGqIcdzaSnsx4PDW1uLFhZGCszgxfmUTgQ06FCnDH4m6HqZDsA==\"\ , \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\"\ - , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"Al5othdwbqq93cZMpGDZaQ==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"dvD7u+Lm0NROi2EIwzuldg==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:56 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [be6e70b5-0003-0047-3409-fc8bbf000000] + x-ms-request-id: [a2a8becd-0003-0124-6603-fd8bcf000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_invalid_value_kek_wrap.yaml b/tests/recordings/test_queue_encryption.test_invalid_value_kek_wrap.yaml index faa955a9..80d5ae48 100644 --- a/tests/recordings/test_queue_encryption.test_invalid_value_kek_wrap.yaml +++ b/tests/recordings/test_queue_encryption.test_invalid_value_kek_wrap.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5997533a-67fc-11e7-a244-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8b7c0eb0-68f6-11e7-8770-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:56 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueuefee61452 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:57 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [97663c25-0003-0097-6c09-fc371d000000] + x-ms-request-id: [eec4b8bb-0003-003b-2203-fd168a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_missing_attribute_kek_unrwap.yaml b/tests/recordings/test_queue_encryption.test_missing_attribute_kek_unrwap.yaml index eae07e8e..47c8d595 100644 --- a/tests/recordings/test_queue_encryption.test_missing_attribute_kek_unrwap.yaml +++ b/tests/recordings/test_queue_encryption.test_missing_attribute_kek_unrwap.yaml @@ -4,105 +4,105 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [59c1e8cc-67fc-11e7-8b55-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8ba618d8-68f6-11e7-a1e7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:57 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueue847016ff response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:57 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ed1594da-0003-0062-0709-fc130c000000] + x-ms-request-id: [2b1534ec-0003-00b9-1e03-fdb7da000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - {"EncryptedMessageContents": "d7i8hnVZUWHgrTt6nF4DFA==", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "1SsEckpX1R66bRtujP2H5yGZcGE9aBBSP7hiI4RvadrTlSf8sbCUNg==", + {"EncryptedMessageContents": "wEYMxXvhud730oH0rA4Xrw==", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "Q90iypVxKJkUZGZ59EBYk6WVXYRAQMsacIXWovpCfKH8BnZlkJm5rQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "3sW5TLYiBSopAZfeWmFLtg==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "oKdRlSDi51SgvvKb2rRDow==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['502'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [59e107d4-67fc-11e7-b964-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8bbab80c-68f6-11e7-a31a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:57 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueue847016ff/messages response: - body: {string: "\uFEFF656aa814-047c-402d-8fc7-8fa757d21623Thu,\ - \ 13 Jul 2017 18:51:59 GMTThu, 20 Jul 2017\ - \ 18:51:59 GMTAgAAAAMAAAAAAAAApJOTGwn80gE=Thu,\ - \ 13 Jul 2017 18:51:59 GMT"} + body: {string: "\uFEFF34e90845-89ed-4ca8-ac0f-7a0ed1b0ff60Sat,\ + \ 15 Jul 2017 00:42:58 GMTSat, 22 Jul 2017\ + \ 00:42:58 GMTAgAAAAMAAAAAAAAAkJz3TQP90gE=Sat,\ + \ 15 Jul 2017 00:42:58 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:57 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ed1594e4-0003-0062-0f09-fc130c000000] + x-ms-request-id: [2b1534f5-0003-00b9-2203-fdb7da000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [59e799a8-67fc-11e7-9b5a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8bc05a8c-68f6-11e7-91ad-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:57 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueue847016ff/messages?peekonly=true response: - body: {string: "\uFEFF656aa814-047c-402d-8fc7-8fa757d21623Thu,\ - \ 13 Jul 2017 18:51:59 GMTThu, 20 Jul 2017\ - \ 18:51:59 GMT0{\"\ - EncryptedMessageContents\": \"d7i8hnVZUWHgrTt6nF4DFA==\", \"EncryptionData\"\ - : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"1SsEckpX1R66bRtujP2H5yGZcGE9aBBSP7hiI4RvadrTlSf8sbCUNg==\"\ + body: {string: "\uFEFF34e90845-89ed-4ca8-ac0f-7a0ed1b0ff60Sat,\ + \ 15 Jul 2017 00:42:58 GMTSat, 22 Jul 2017\ + \ 00:42:58 GMT0{\"\ + EncryptedMessageContents\": \"wEYMxXvhud730oH0rA4Xrw==\", \"EncryptionData\"\ + : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"Q90iypVxKJkUZGZ59EBYk6WVXYRAQMsacIXWovpCfKH8BnZlkJm5rQ==\"\ , \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\"\ - , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"3sW5TLYiBSopAZfeWmFLtg==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"oKdRlSDi51SgvvKb2rRDow==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:58 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ed1594e9-0003-0062-1409-fc130c000000] + x-ms-request-id: [2b153500-0003-00b9-2b03-fdb7da000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [59ed2910-67fc-11e7-9476-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8bc591fa-68f6-11e7-aa8b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:57 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueue847016ff/messages?peekonly=true response: - body: {string: "\uFEFF656aa814-047c-402d-8fc7-8fa757d21623Thu,\ - \ 13 Jul 2017 18:51:59 GMTThu, 20 Jul 2017\ - \ 18:51:59 GMT0{\"\ - EncryptedMessageContents\": \"d7i8hnVZUWHgrTt6nF4DFA==\", \"EncryptionData\"\ - : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"1SsEckpX1R66bRtujP2H5yGZcGE9aBBSP7hiI4RvadrTlSf8sbCUNg==\"\ + body: {string: "\uFEFF34e90845-89ed-4ca8-ac0f-7a0ed1b0ff60Sat,\ + \ 15 Jul 2017 00:42:58 GMTSat, 22 Jul 2017\ + \ 00:42:58 GMT0{\"\ + EncryptedMessageContents\": \"wEYMxXvhud730oH0rA4Xrw==\", \"EncryptionData\"\ + : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"Q90iypVxKJkUZGZ59EBYk6WVXYRAQMsacIXWovpCfKH8BnZlkJm5rQ==\"\ , \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\"\ - , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"3sW5TLYiBSopAZfeWmFLtg==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"oKdRlSDi51SgvvKb2rRDow==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:58 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ed1594ed-0003-0062-1809-fc130c000000] + x-ms-request-id: [2b153504-0003-00b9-2e03-fdb7da000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_missing_attribute_kek_wrap.yaml b/tests/recordings/test_queue_encryption.test_missing_attribute_kek_wrap.yaml index 721906c5..523853c8 100644 --- a/tests/recordings/test_queue_encryption.test_missing_attribute_kek_wrap.yaml +++ b/tests/recordings/test_queue_encryption.test_missing_attribute_kek_wrap.yaml @@ -4,19 +4,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5a09c7be-67fc-11e7-8087-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:51:59 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8be1ef8c-68f6-11e7-b4f1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:57 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueue56cd161c response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:58 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:58 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8b07dcac-0003-002d-0909-fcd714000000] + x-ms-request-id: [021db002-0003-0070-2103-fd2710000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_peek_messages_encrypted_kek.yaml b/tests/recordings/test_queue_encryption.test_peek_messages_encrypted_kek.yaml index 59f0ba34..da6dab28 100644 --- a/tests/recordings/test_queue_encryption.test_peek_messages_encrypted_kek.yaml +++ b/tests/recordings/test_queue_encryption.test_peek_messages_encrypted_kek.yaml @@ -4,78 +4,78 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5a40bf26-67fc-11e7-bd30-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8c0ec188-68f6-11e7-97a7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:57 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueue6a6e165f response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:59 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cc4f1dd2-0003-00ab-4509-fc83c6000000] + x-ms-request-id: [6c9fc52e-0003-0103-0a03-fd1186000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - {"EncryptedMessageContents": "M1a1Xke7izl1TMhD6qSOGFFt9RbbJLJODfkOMGUTo44=", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "g9lgC8KxASAcZINP4peVP1sVgMeEeYzkYT603h9kWURjxzjsavcmnQ==", + {"EncryptedMessageContents": "Km7E2glrNdCIQUhkX62NAIVr1Ts1supBSaGLBlIipLA=", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "kLJLkoZ03iu9cLjoLgxk+ZCGYa13uEu3E25qlAeFPygP/layOxVPHg==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "jBorobut/do2krwcp3t2Tw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "a0e+ytRndfYBnll9gV9b/g==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['522'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5a5591b4-67fc-11e7-ac6a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8c232826-68f6-11e7-a4e5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:58 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueue6a6e165f/messages response: - body: {string: "\uFEFF0edf3804-892e-461a-933c-8fd5eb042974Thu,\ - \ 13 Jul 2017 18:52:00 GMTThu, 20 Jul 2017\ - \ 18:52:00 GMTAgAAAAMAAAAAAAAAGgQHHAn80gE=Thu,\ - \ 13 Jul 2017 18:52:00 GMT"} + body: {string: "\uFEFF7926501a-0451-4b7a-b3b0-76ff6a276cd9Sat,\ + \ 15 Jul 2017 00:42:58 GMTSat, 22 Jul 2017\ + \ 00:42:58 GMTAgAAAAMAAAAAAAAAXplfTgP90gE=Sat,\ + \ 15 Jul 2017 00:42:58 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:59 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cc4f1dd6-0003-00ab-4709-fc83c6000000] + x-ms-request-id: [6c9fc536-0003-0103-1003-fd1186000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5a5af850-67fc-11e7-b241-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8c285300-68f6-11e7-bbfd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:58 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueue6a6e165f/messages?peekonly=true response: - body: {string: "\uFEFF0edf3804-892e-461a-933c-8fd5eb042974Thu,\ - \ 13 Jul 2017 18:52:00 GMTThu, 20 Jul 2017\ - \ 18:52:00 GMT0{\"\ - EncryptedMessageContents\": \"M1a1Xke7izl1TMhD6qSOGFFt9RbbJLJODfkOMGUTo44=\"\ + body: {string: "\uFEFF7926501a-0451-4b7a-b3b0-76ff6a276cd9Sat,\ + \ 15 Jul 2017 00:42:58 GMTSat, 22 Jul 2017\ + \ 00:42:58 GMT0{\"\ + EncryptedMessageContents\": \"Km7E2glrNdCIQUhkX62NAIVr1Ts1supBSaGLBlIipLA=\"\ , \"EncryptionData\": {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\"\ - : \"g9lgC8KxASAcZINP4peVP1sVgMeEeYzkYT603h9kWURjxzjsavcmnQ==\", \"Algorithm\"\ + : \"kLJLkoZ03iu9cLjoLgxk+ZCGYa13uEu3E25qlAeFPygP/layOxVPHg==\", \"Algorithm\"\ : \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\"\ - : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"jBorobut/do2krwcp3t2Tw==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"a0e+ytRndfYBnll9gV9b/g==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:59 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cc4f1dd7-0003-00ab-4809-fc83c6000000] + x-ms-request-id: [6c9fc53c-0003-0103-1603-fd1186000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_peek_messages_encrypted_resolver.yaml b/tests/recordings/test_queue_encryption.test_peek_messages_encrypted_resolver.yaml index 2a131a15..034a71d3 100644 --- a/tests/recordings/test_queue_encryption.test_peek_messages_encrypted_resolver.yaml +++ b/tests/recordings/test_queue_encryption.test_peek_messages_encrypted_resolver.yaml @@ -4,78 +4,78 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5a7645a6-67fc-11e7-959b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8c43e62e-68f6-11e7-a274-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueuee12a1896 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:58 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7eb5eea3-0003-0116-0c09-fcd31f000000] + x-ms-request-id: [9e421429-0003-00cd-8003-fd319c000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - {"EncryptedMessageContents": "WsHSopd5jlSWFe5bgOwnMX0P9MBjs4EgBu7NDDd/iSM=", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "fhpBkDQvhkuHOHrEkSxP4pV4Bw+RSJygytlhcPRsRV5nyLKCWqI4bw==", + {"EncryptedMessageContents": "sgV5utzQOrwoIvc5Fl6P6EMU+mM3lnWjQ2JV3n2nf8E=", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "AnJcJaQH+sCbDJW4zJ1uRm8joiv3zC2uYntwo+3TScgyApapxM1PPA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "HfW2S8cvC/fVZtqlPCVRkA==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "vxHCjzE7vkcqpoQs9cR3zg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['522'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5aa157a8-67fc-11e7-8d30-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8c5c9e46-68f6-11e7-819a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:58 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueuee12a1896/messages response: - body: {string: "\uFEFF6f1cf336-77de-42ba-bace-3c638e1e6ffaThu,\ - \ 13 Jul 2017 18:52:00 GMTThu, 20 Jul 2017\ - \ 18:52:00 GMTAgAAAAMAAAAAAAAAGOhSHAn80gE=Thu,\ - \ 13 Jul 2017 18:52:00 GMT"} + body: {string: "\uFEFF7501dc35-cb3e-4ea8-a6b4-8e519317357eSat,\ + \ 15 Jul 2017 00:42:59 GMTSat, 22 Jul 2017\ + \ 00:42:59 GMTAgAAAAMAAAAAAAAAy3iZTgP90gE=Sat,\ + \ 15 Jul 2017 00:42:59 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:58 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7eb5eecf-0003-0116-3309-fcd31f000000] + x-ms-request-id: [9e42143a-0003-00cd-0e03-fd319c000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5aa6c9e2-67fc-11e7-9a06-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:00 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8c629a24-68f6-11e7-8629-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:58 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueuee12a1896/messages?peekonly=true response: - body: {string: "\uFEFF6f1cf336-77de-42ba-bace-3c638e1e6ffaThu,\ - \ 13 Jul 2017 18:52:00 GMTThu, 20 Jul 2017\ - \ 18:52:00 GMT0{\"\ - EncryptedMessageContents\": \"WsHSopd5jlSWFe5bgOwnMX0P9MBjs4EgBu7NDDd/iSM=\"\ + body: {string: "\uFEFF7501dc35-cb3e-4ea8-a6b4-8e519317357eSat,\ + \ 15 Jul 2017 00:42:59 GMTSat, 22 Jul 2017\ + \ 00:42:59 GMT0{\"\ + EncryptedMessageContents\": \"sgV5utzQOrwoIvc5Fl6P6EMU+mM3lnWjQ2JV3n2nf8E=\"\ , \"EncryptionData\": {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\"\ - : \"fhpBkDQvhkuHOHrEkSxP4pV4Bw+RSJygytlhcPRsRV5nyLKCWqI4bw==\", \"Algorithm\"\ + : \"AnJcJaQH+sCbDJW4zJ1uRm8joiv3zC2uYntwo+3TScgyApapxM1PPA==\", \"Algorithm\"\ : \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\"\ - : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"HfW2S8cvC/fVZtqlPCVRkA==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"vxHCjzE7vkcqpoQs9cR3zg==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:51:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:58 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7eb5eed8-0003-0116-3c09-fcd31f000000] + x-ms-request-id: [9e42143d-0003-00cd-1103-fd319c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_put_with_strict_mode.yaml b/tests/recordings/test_queue_encryption.test_put_with_strict_mode.yaml index 3624361c..bb24c35d 100644 --- a/tests/recordings/test_queue_encryption.test_put_with_strict_mode.yaml +++ b/tests/recordings/test_queue_encryption.test_put_with_strict_mode.yaml @@ -4,49 +4,49 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5ac3a576-67fc-11e7-b8ac-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8c7ef1d8-68f6-11e7-bbd9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueued9c213ac response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:51:59 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:00 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b46f2061-0003-00e1-1509-fcb3a1000000] + x-ms-request-id: [57eb723f-0003-0084-5d03-fd02fc000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - {"EncryptedMessageContents": "x4T22jKqhvDBwKFhvCZcRA==", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "qoWH5HVfNXXdk6AQcorvQoxXQ95krmL4pQftYd8NdH0NcKU+VLvDiw==", + {"EncryptedMessageContents": "pRuKCW9USLP86tHKMQYr6g==", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "YTkcQI+nXsMDTr2EOnHX3vAdcP04iTnevwr+dxz5+NMpcIGYCPH+GA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "nb7eLKtNpP5gGMRucwD17Q==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "KEmFaETGIJwiLGUSVIcePw==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['502'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5ada3298-67fc-11e7-aed8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8c95d722-68f6-11e7-a45a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:58 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueued9c213ac/messages response: - body: {string: "\uFEFF1a2f62ae-54cf-4626-97de-3246b5308fd1Thu,\ - \ 13 Jul 2017 18:52:01 GMTThu, 20 Jul 2017\ - \ 18:52:01 GMTAgAAAAMAAAAAAAAA3dyLHAn80gE=Thu,\ - \ 13 Jul 2017 18:52:01 GMT"} + body: {string: "\uFEFF11629d4a-af71-4993-8d4e-4adc6bd00d2fSat,\ + \ 15 Jul 2017 00:42:59 GMTSat, 22 Jul 2017\ + \ 00:42:59 GMTAgAAAAMAAAAAAAAAAArTTgP90gE=Sat,\ + \ 15 Jul 2017 00:42:59 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:00 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b46f2070-0003-00e1-2209-fcb3a1000000] + x-ms-request-id: [57eb7244-0003-0084-6003-fd02fc000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_update_encrypted_binary_message.yaml b/tests/recordings/test_queue_encryption.test_update_encrypted_binary_message.yaml index 55c3fe28..5c0ac2ea 100644 --- a/tests/recordings/test_queue_encryption.test_update_encrypted_binary_message.yaml +++ b/tests/recordings/test_queue_encryption.test_update_encrypted_binary_message.yaml @@ -4,137 +4,137 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5af47d2c-67fc-11e7-a0dd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8cb61ee2-68f6-11e7-bf3c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueuec9ae1814 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:59 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a97a9a7e-0003-0083-3109-fcf479000000] + x-ms-request-id: [d00fb919-0003-00ef-0503-fd5faa000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - {"EncryptedMessageContents": "iMXu90WukZHMCpZ+k00D1cO7GAFkNa3b6Nu6koygD5PKoxc7sMIcULAimN+v2/OOyMc7H7u585xQ77+kFxu33u+mbgZPqWw+0giu1yJHNXbv8BZKRZPHLkQlX+5FHMKYExc3naVulGS0AxtVVVLvuAs4/zolv+bBNj4TOHe0coWKgXbPjqw0VWAF/gwtMEcN", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "7gOygxev78XbyYc9kT7PeoTmWA+0k6nqsP97L97tJccksbGPcgqFQA==", + {"EncryptedMessageContents": "MGPg8RcIgq4WQiQHqpybcMS5gOUDcnsZmArApD4eo3K2sUrVJ+8ONv5Esd0ftQ+cdrMqs4bAVwWJjSQG9BWB/3pR74cUwHvmc3rJVh880kUnEfNz+zCe2/DfGdF70V84FDtjmVp2Kn2L5hhcP7Bv8n4Ng0QX91UaL8hpLTw1Ww26t2BLIbryBaT10JAIcoMn", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "awaVDPA20u0ml/JT9SSU0mU+r9bawaC0VdF/z2inSQdCs8JcucLByA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "PEtqIlk0+mLoeokB7slFBw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "BZTbgFvC1IrIy7T4zpz5QA==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['670'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5b081f30-67fc-11e7-a945-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8ccbc686-68f6-11e7-b38f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:59 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueuec9ae1814/messages response: - body: {string: "\uFEFF269f2b60-ca03-41e1-a14f-98162b62b605Thu,\ - \ 13 Jul 2017 18:52:01 GMTThu, 20 Jul 2017\ - \ 18:52:01 GMTAgAAAAMAAAAAAAAA6oS5HAn80gE=Thu,\ - \ 13 Jul 2017 18:52:01 GMT"} + body: {string: "\uFEFF26203038-c501-4b1a-860a-2cbf4cd54edfSat,\ + \ 15 Jul 2017 00:42:59 GMTSat, 22 Jul 2017\ + \ 00:42:59 GMTAgAAAAMAAAAAAAAA5qIITwP90gE=Sat,\ + \ 15 Jul 2017 00:42:59 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:59 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a97a9a94-0003-0083-4509-fcf479000000] + x-ms-request-id: [d00fb923-0003-00ef-0c03-fd5faa000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5b0d3a62-67fc-11e7-a934-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8cd166fa-68f6-11e7-9e3f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:59 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueuec9ae1814/messages response: - body: {string: "\uFEFF269f2b60-ca03-41e1-a14f-98162b62b605Thu,\ - \ 13 Jul 2017 18:52:01 GMTThu, 20 Jul 2017\ - \ 18:52:01 GMTAgAAAAMAAAAAAAAARM6gLgn80gE=Thu,\ - \ 13 Jul 2017 18:52:31 GMT1{\"\ - EncryptedMessageContents\": \"iMXu90WukZHMCpZ+k00D1cO7GAFkNa3b6Nu6koygD5PKoxc7sMIcULAimN+v2/OOyMc7H7u585xQ77+kFxu33u+mbgZPqWw+0giu1yJHNXbv8BZKRZPHLkQlX+5FHMKYExc3naVulGS0AxtVVVLvuAs4/zolv+bBNj4TOHe0coWKgXbPjqw0VWAF/gwtMEcN\"\ + body: {string: "\uFEFF26203038-c501-4b1a-860a-2cbf4cd54edfSat,\ + \ 15 Jul 2017 00:42:59 GMTSat, 22 Jul 2017\ + \ 00:42:59 GMTAgAAAAMAAAAAAAAAQp7vYAP90gE=Sat,\ + \ 15 Jul 2017 00:43:30 GMT1{\"\ + EncryptedMessageContents\": \"MGPg8RcIgq4WQiQHqpybcMS5gOUDcnsZmArApD4eo3K2sUrVJ+8ONv5Esd0ftQ+cdrMqs4bAVwWJjSQG9BWB/3pR74cUwHvmc3rJVh880kUnEfNz+zCe2/DfGdF70V84FDtjmVp2Kn2L5hhcP7Bv8n4Ng0QX91UaL8hpLTw1Ww26t2BLIbryBaT10JAIcoMn\"\ , \"EncryptionData\": {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\"\ - : \"7gOygxev78XbyYc9kT7PeoTmWA+0k6nqsP97L97tJccksbGPcgqFQA==\", \"Algorithm\"\ + : \"awaVDPA20u0ml/JT9SSU0mU+r9bawaC0VdF/z2inSQdCs8JcucLByA==\", \"Algorithm\"\ : \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\"\ - : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"PEtqIlk0+mLoeokB7slFBw==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"BZTbgFvC1IrIy7T4zpz5QA==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:59 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a97a9aa7-0003-0083-5809-fcf479000000] + x-ms-request-id: [d00fb926-0003-00ef-0f03-fd5faa000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: ' - {"EncryptedMessageContents": "8+YE/6bkn3J5122RQ92/5e0GHwMOC81DjyUymQwiEx0WcSeoAWbt4Q+sFILsjdTzqUuQfBpdRHu53WriaPDQztGSo2CpRQB2pK53/iSBn3nLzHkyU2k6+YCjxcpHhaZWk3DKLrshRQ8A0qvtSEKCaABwFqQt1Wj3H2RY3pMPeVgESv6sIt63UObEIKubkoYn", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "s7cMKcnlVyeyPHgW9+mAupvMqXrhZDowKFRl/3Lt9ImrCdxr7CYApg==", + {"EncryptedMessageContents": "uJdslyIOVGuJDG6cXejlvnmD3O/KJoPi7Y/NznkGBOOBSwbaeaVI32LpQ67itMrPWw+GB8EHX65xsAWBgttqO/XQjgYSHm5xWFQM1KCP0ssEO5e0twzZpMRVfWDNrUo6yWrX/NI1ebOz+7egk+D0t98IiNFmf0CJPawi0mRRQtGShTqLqdMJa9GLjQedpBS5", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "JPfFMtAOeXx5c6cqrkGM9GhurBpcDibwIg8V+Ilbo9qvzMZNDqheNw==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "wR7Sxziu9ptUZTjD8lMhow==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "lKufB6a0WDWUqMyKp1Qy7g==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['670'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5b137846-67fc-11e7-946e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8cd78f50-68f6-11e7-8556-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.queue.core.windows.net/encryptionqueuec9ae1814/messages/269f2b60-ca03-41e1-a14f-98162b62b605?popreceipt=AgAAAAMAAAAAAAAARM6gLgn80gE%3D&visibilitytimeout=0 + uri: https://storagename.queue.core.windows.net/encryptionqueuec9ae1814/messages/26203038-c501-4b1a-860a-2cbf4cd54edf?popreceipt=AgAAAAMAAAAAAAAAQp7vYAP90gE%3D&visibilitytimeout=0 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:52:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:59 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-popreceipt: [AwAAAAMAAAAAAAAAodHEHAn80gEBAAAA] - x-ms-request-id: [a97a9abf-0003-0083-6f09-fcf479000000] - x-ms-time-next-visible: ['Thu, 13 Jul 2017 18:52:01 GMT'] + x-ms-popreceipt: [AwAAAAMAAAAAAAAArBYUTwP90gEBAAAA] + x-ms-request-id: [d00fb927-0003-00ef-1003-fd5faa000000] + x-ms-time-next-visible: ['Sat, 15 Jul 2017 00:43:00 GMT'] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5b1892a2-67fc-11e7-a760-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8cdcee14-68f6-11e7-9cd8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:59 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueuec9ae1814/messages response: - body: {string: "\uFEFF269f2b60-ca03-41e1-a14f-98162b62b605Thu,\ - \ 13 Jul 2017 18:52:01 GMTThu, 20 Jul 2017\ - \ 18:52:01 GMTAgAAAAMAAAAAAAAAh1erLgn80gE=Thu,\ - \ 13 Jul 2017 18:52:31 GMT2{\"\ - EncryptedMessageContents\": \"8+YE/6bkn3J5122RQ92/5e0GHwMOC81DjyUymQwiEx0WcSeoAWbt4Q+sFILsjdTzqUuQfBpdRHu53WriaPDQztGSo2CpRQB2pK53/iSBn3nLzHkyU2k6+YCjxcpHhaZWk3DKLrshRQ8A0qvtSEKCaABwFqQt1Wj3H2RY3pMPeVgESv6sIt63UObEIKubkoYn\"\ + body: {string: "\uFEFF26203038-c501-4b1a-860a-2cbf4cd54edfSat,\ + \ 15 Jul 2017 00:42:59 GMTSat, 22 Jul 2017\ + \ 00:42:59 GMTAgAAAAMAAAAAAAAAIDn7YAP90gE=Sat,\ + \ 15 Jul 2017 00:43:30 GMT2{\"\ + EncryptedMessageContents\": \"uJdslyIOVGuJDG6cXejlvnmD3O/KJoPi7Y/NznkGBOOBSwbaeaVI32LpQ67itMrPWw+GB8EHX65xsAWBgttqO/XQjgYSHm5xWFQM1KCP0ssEO5e0twzZpMRVfWDNrUo6yWrX/NI1ebOz+7egk+D0t98IiNFmf0CJPawi0mRRQtGShTqLqdMJa9GLjQedpBS5\"\ , \"EncryptionData\": {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\"\ - : \"s7cMKcnlVyeyPHgW9+mAupvMqXrhZDowKFRl/3Lt9ImrCdxr7CYApg==\", \"Algorithm\"\ + : \"JPfFMtAOeXx5c6cqrkGM9GhurBpcDibwIg8V+Ilbo9qvzMZNDqheNw==\", \"Algorithm\"\ : \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\"\ - : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"wR7Sxziu9ptUZTjD8lMhow==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"lKufB6a0WDWUqMyKp1Qy7g==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:00 GMT'] + Date: ['Sat, 15 Jul 2017 00:42:59 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a97a9ad2-0003-0083-0109-fcf479000000] + x-ms-request-id: [d00fb928-0003-00ef-1103-fd5faa000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_update_encrypted_json_message.yaml b/tests/recordings/test_queue_encryption.test_update_encrypted_json_message.yaml index a1f74ad4..cdf3f8d0 100644 --- a/tests/recordings/test_queue_encryption.test_update_encrypted_json_message.yaml +++ b/tests/recordings/test_queue_encryption.test_update_encrypted_json_message.yaml @@ -4,137 +4,137 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5b3f27d2-67fc-11e7-be19-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8cfb37fa-68f6-11e7-8c95-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueue9a7c1749 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:00 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [69b21781-0003-0012-1a09-fc60c8000000] + x-ms-request-id: [3c234b08-0003-0042-3b03-fd7fc0000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - {"EncryptedMessageContents": "Vc6mkeFpMOj4vY9WwNFjeUZ92Kb30kTuW5I5xfcRies=", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "BojwU7tw6DzeDHKVvYuc32X8rdvPG+tQ4k/U/xHITVc+LhALA4356g==", + {"EncryptedMessageContents": "s2LAUiIqYM/OkjdvTlpo21T6Dbuwd4rMWiwMScX1K8A=", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "u1AiKggPGS5sTilB+hVWNnFmk165FitPlUcR2fSTPQRMNx6UxOKyLg==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "jSBqzVBWQRcCIkj8Nvy6nw==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "f1DjGxj47zueQ5T3RK442w==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['522'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5b543cd0-67fc-11e7-a1e8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8d0f7bc2-68f6-11e7-8cce-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:59 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueue9a7c1749/messages response: - body: {string: "\uFEFFc0c2c1af-27cb-41ce-bdc5-64bb07edb48bThu,\ - \ 13 Jul 2017 18:52:01 GMTThu, 20 Jul 2017\ - \ 18:52:01 GMTAgAAAAMAAAAAAAAAaAUGHQn80gE=Thu,\ - \ 13 Jul 2017 18:52:01 GMT"} + body: {string: "\uFEFF1217450a-d7ed-41d7-bb68-527c74a0cdcdSat,\ + \ 15 Jul 2017 00:43:00 GMTSat, 22 Jul 2017\ + \ 00:43:00 GMTAgAAAAMAAAAAAAAA5vlLTwP90gE=Sat,\ + \ 15 Jul 2017 00:43:00 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:00 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [69b2179f-0003-0012-3409-fc60c8000000] + x-ms-request-id: [3c234b1a-0003-0042-4b03-fd7fc0000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5b86e43a-67fc-11e7-8bf4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8d14939e-68f6-11e7-b0fb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:59 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueue9a7c1749/messages response: - body: {string: "\uFEFFc0c2c1af-27cb-41ce-bdc5-64bb07edb48bThu,\ - \ 13 Jul 2017 18:52:01 GMTThu, 20 Jul 2017\ - \ 18:52:01 GMTAgAAAAMAAAAAAAAAgqgaLwn80gE=Thu,\ - \ 13 Jul 2017 18:52:32 GMT1{\"\ - EncryptedMessageContents\": \"Vc6mkeFpMOj4vY9WwNFjeUZ92Kb30kTuW5I5xfcRies=\"\ + body: {string: "\uFEFF1217450a-d7ed-41d7-bb68-527c74a0cdcdSat,\ + \ 15 Jul 2017 00:43:00 GMTSat, 22 Jul 2017\ + \ 00:43:00 GMTAgAAAAMAAAAAAAAA0n8yYQP90gE=Sat,\ + \ 15 Jul 2017 00:43:30 GMT1{\"\ + EncryptedMessageContents\": \"s2LAUiIqYM/OkjdvTlpo21T6Dbuwd4rMWiwMScX1K8A=\"\ , \"EncryptionData\": {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\"\ - : \"BojwU7tw6DzeDHKVvYuc32X8rdvPG+tQ4k/U/xHITVc+LhALA4356g==\", \"Algorithm\"\ + : \"u1AiKggPGS5sTilB+hVWNnFmk165FitPlUcR2fSTPQRMNx6UxOKyLg==\", \"Algorithm\"\ : \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\"\ - : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"jSBqzVBWQRcCIkj8Nvy6nw==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"f1DjGxj47zueQ5T3RK442w==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:00 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [69b21800-0003-0012-1509-fc60c8000000] + x-ms-request-id: [3c234b27-0003-0042-5703-fd7fc0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: ' - {"EncryptedMessageContents": "rVX5fJnIvL7c+xpfQTNnfkb0yVe0m9EiuP6K44wUf6Q=", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "1ajxPvc0A3/uNivnzlvvDpkdl/LT3h12Bp3F4C6Cv126Qro/6vOySw==", + {"EncryptedMessageContents": "iyWtAkhm6JsmbwqHGE4J197HC6PBWOIHfC/LzcaNLX0=", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "dcinNm9Q5OmWSe6wsMRTpraqR2IFqjxYfujqkUm9aG1F8tShb9giYQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "JK/V7dk6sH5iyIgGKQGWWA==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "68Y0pPm82URFxrcqdKAOvg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['522'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5b8df4e8-67fc-11e7-9821-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8d1d3e68-68f6-11e7-8c16-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.queue.core.windows.net/encryptionqueue9a7c1749/messages/c0c2c1af-27cb-41ce-bdc5-64bb07edb48b?popreceipt=AgAAAAMAAAAAAAAAgqgaLwn80gE%3D&visibilitytimeout=0 + uri: https://storagename.queue.core.windows.net/encryptionqueue9a7c1749/messages/1217450a-d7ed-41d7-bb68-527c74a0cdcd?popreceipt=AgAAAAMAAAAAAAAA0n8yYQP90gE%3D&visibilitytimeout=0 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:00 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-popreceipt: [AwAAAAMAAAAAAAAAN/ZAHQn80gEBAAAA] - x-ms-request-id: [69b2180c-0003-0012-2009-fc60c8000000] - x-ms-time-next-visible: ['Thu, 13 Jul 2017 18:52:02 GMT'] + x-ms-popreceipt: [AwAAAAMAAAAAAAAAA5FZTwP90gEBAAAA] + x-ms-request-id: [3c234b41-0003-0042-6e03-fd7fc0000000] + x-ms-time-next-visible: ['Sat, 15 Jul 2017 00:43:00 GMT'] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5b9522d8-67fc-11e7-88fe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8d2280e6-68f6-11e7-be3b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:59 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueue9a7c1749/messages response: - body: {string: "\uFEFFc0c2c1af-27cb-41ce-bdc5-64bb07edb48bThu,\ - \ 13 Jul 2017 18:52:01 GMTThu, 20 Jul 2017\ - \ 18:52:01 GMTAgAAAAMAAAAAAAAA0rQoLwn80gE=Thu,\ - \ 13 Jul 2017 18:52:32 GMT2{\"\ - EncryptedMessageContents\": \"rVX5fJnIvL7c+xpfQTNnfkb0yVe0m9EiuP6K44wUf6Q=\"\ + body: {string: "\uFEFF1217450a-d7ed-41d7-bb68-527c74a0cdcdSat,\ + \ 15 Jul 2017 00:43:00 GMTSat, 22 Jul 2017\ + \ 00:43:00 GMTAgAAAAMAAAAAAAAAGWVAYQP90gE=Sat,\ + \ 15 Jul 2017 00:43:30 GMT2{\"\ + EncryptedMessageContents\": \"iyWtAkhm6JsmbwqHGE4J197HC6PBWOIHfC/LzcaNLX0=\"\ , \"EncryptionData\": {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\"\ - : \"1ajxPvc0A3/uNivnzlvvDpkdl/LT3h12Bp3F4C6Cv126Qro/6vOySw==\", \"Algorithm\"\ + : \"dcinNm9Q5OmWSe6wsMRTpraqR2IFqjxYfujqkUm9aG1F8tShb9giYQ==\", \"Algorithm\"\ : \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\"\ - : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"JK/V7dk6sH5iyIgGKQGWWA==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + : \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"68Y0pPm82URFxrcqdKAOvg==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:00 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [69b2181c-0003-0012-2e09-fc60c8000000] + x-ms-request-id: [3c234b51-0003-0042-7d03-fd7fc0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_update_encrypted_message.yaml b/tests/recordings/test_queue_encryption.test_update_encrypted_message.yaml index 258a0506..9051811f 100644 --- a/tests/recordings/test_queue_encryption.test_update_encrypted_message.yaml +++ b/tests/recordings/test_queue_encryption.test_update_encrypted_message.yaml @@ -4,135 +4,135 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5bb70c5c-67fc-11e7-99e1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8d3e88b8-68f6-11e7-b443-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:42:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueue29f01530 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:00 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44f26083-0003-007d-0409-fcc81c000000] + x-ms-request-id: [37901552-0003-0138-2d03-fd53d8000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - {"EncryptedMessageContents": "NbZQ4mtyGPdVxfDOPNrp8g==", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "PglO0xuhZnkaN0QrG5MNXH05VxbdwmcTg5RGGc2smwP7i8iDbiAy7g==", + {"EncryptedMessageContents": "evuYokdunUzCz/9tZWUmkg==", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "XVYxMyBrZ1WXJc+ODi8Za5FroGVbxt1N70SSj9iTSedcS1LKQ9r+wA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "P8Zhm+U6NSmcezlBKyeW0w==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "5cxSyY3Eoa8p0XX/hdubew==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['502'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5bcc23ba-67fc-11e7-b734-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8d53d058-68f6-11e7-82bc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:00 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueue29f01530/messages response: - body: {string: "\uFEFFd78dbc07-ae32-47db-af3b-8a7ebe45b134Thu,\ - \ 13 Jul 2017 18:52:02 GMTThu, 20 Jul 2017\ - \ 18:52:02 GMTAgAAAAMAAAAAAAAAX+N9HQn80gE=Thu,\ - \ 13 Jul 2017 18:52:02 GMT"} + body: {string: "\uFEFF9995a589-25b6-46d0-bd83-85f23b37dce3Sat,\ + \ 15 Jul 2017 00:43:00 GMTSat, 22 Jul 2017\ + \ 00:43:00 GMTAgAAAAMAAAAAAAAA9/6QTwP90gE=Sat,\ + \ 15 Jul 2017 00:43:00 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44f2608d-0003-007d-0c09-fcc81c000000] + x-ms-request-id: [3790155b-0003-0138-3403-fd53d8000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5bd1aac6-67fc-11e7-8260-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8d59c07e-68f6-11e7-b1a3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:00 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueue29f01530/messages response: - body: {string: "\uFEFFd78dbc07-ae32-47db-af3b-8a7ebe45b134Thu,\ - \ 13 Jul 2017 18:52:02 GMTThu, 20 Jul 2017\ - \ 18:52:02 GMTAgAAAAMAAAAAAAAAa7dkLwn80gE=Thu,\ - \ 13 Jul 2017 18:52:32 GMT1{\"\ - EncryptedMessageContents\": \"NbZQ4mtyGPdVxfDOPNrp8g==\", \"EncryptionData\"\ - : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"PglO0xuhZnkaN0QrG5MNXH05VxbdwmcTg5RGGc2smwP7i8iDbiAy7g==\"\ + body: {string: "\uFEFF9995a589-25b6-46d0-bd83-85f23b37dce3Sat,\ + \ 15 Jul 2017 00:43:00 GMTSat, 22 Jul 2017\ + \ 00:43:00 GMTAgAAAAMAAAAAAAAACdN3YQP90gE=Sat,\ + \ 15 Jul 2017 00:43:30 GMT1{\"\ + EncryptedMessageContents\": \"evuYokdunUzCz/9tZWUmkg==\", \"EncryptionData\"\ + : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"XVYxMyBrZ1WXJc+ODi8Za5FroGVbxt1N70SSj9iTSedcS1LKQ9r+wA==\"\ , \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\"\ - , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"P8Zhm+U6NSmcezlBKyeW0w==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"5cxSyY3Eoa8p0XX/hdubew==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44f26094-0003-007d-1309-fcc81c000000] + x-ms-request-id: [37901567-0003-0138-4003-fd53d8000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: ' - {"EncryptedMessageContents": "xyoC79MZuAdV9M9f/kiUUA==", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "J9pANlhR0VtezfT+sZJFvLdkbBXu5aA2jZwwHCQ21Edw/1bVV6Pyhg==", + {"EncryptedMessageContents": "dr2GN6T4XxvbwHA37F729Q==", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "/nwPQcyqntcny1ntmWoCOhsKWeZfXKQEfKVYOzGdL73zBjw7O+jvNQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "SiIxZ67eynn5ShqacOQRVA==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "AkhPIU8B8+Jy68Rw+kxHjg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['502'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5bd75250-67fc-11e7-8775-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8d605a7e-68f6-11e7-ba60-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.queue.core.windows.net/encryptionqueue29f01530/messages/d78dbc07-ae32-47db-af3b-8a7ebe45b134?popreceipt=AgAAAAMAAAAAAAAAa7dkLwn80gE%3D&visibilitytimeout=0 + uri: https://storagename.queue.core.windows.net/encryptionqueue29f01530/messages/9995a589-25b6-46d0-bd83-85f23b37dce3?popreceipt=AgAAAAMAAAAAAAAACdN3YQP90gE%3D&visibilitytimeout=0 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-popreceipt: [AwAAAAMAAAAAAAAA+eGIHQn80gEBAAAA] - x-ms-request-id: [44f260a0-0003-007d-1f09-fcc81c000000] - x-ms-time-next-visible: ['Thu, 13 Jul 2017 18:52:02 GMT'] + x-ms-popreceipt: [AwAAAAMAAAAAAAAACOicTwP90gEBAAAA] + x-ms-request-id: [37901574-0003-0138-4d03-fd53d8000000] + x-ms-time-next-visible: ['Sat, 15 Jul 2017 00:43:00 GMT'] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5bdd8f4c-67fc-11e7-bf5c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8d65fb00-68f6-11e7-ab9f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:00 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueue29f01530/messages response: - body: {string: "\uFEFFd78dbc07-ae32-47db-af3b-8a7ebe45b134Thu,\ - \ 13 Jul 2017 18:52:02 GMTThu, 20 Jul 2017\ - \ 18:52:02 GMTAgAAAAMAAAAAAAAAeqBwLwn80gE=Thu,\ - \ 13 Jul 2017 18:52:32 GMT2{\"\ - EncryptedMessageContents\": \"xyoC79MZuAdV9M9f/kiUUA==\", \"EncryptionData\"\ - : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"J9pANlhR0VtezfT+sZJFvLdkbBXu5aA2jZwwHCQ21Edw/1bVV6Pyhg==\"\ + body: {string: "\uFEFF9995a589-25b6-46d0-bd83-85f23b37dce3Sat,\ + \ 15 Jul 2017 00:43:00 GMTSat, 22 Jul 2017\ + \ 00:43:00 GMTAgAAAAMAAAAAAAAAeTGEYQP90gE=Sat,\ + \ 15 Jul 2017 00:43:30 GMT2{\"\ + EncryptedMessageContents\": \"dr2GN6T4XxvbwHA37F729Q==\", \"EncryptionData\"\ + : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"/nwPQcyqntcny1ntmWoCOhsKWeZfXKQEfKVYOzGdL73zBjw7O+jvNQ==\"\ , \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\"\ - , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"SiIxZ67eynn5ShqacOQRVA==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"AkhPIU8B8+Jy68Rw+kxHjg==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:01 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [44f260ae-0003-007d-2d09-fcc81c000000] + x-ms-request-id: [3790157d-0003-0138-5603-fd53d8000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_update_encrypted_raw_text_message.yaml b/tests/recordings/test_queue_encryption.test_update_encrypted_raw_text_message.yaml index 885dce3b..bc4a0d2d 100644 --- a/tests/recordings/test_queue_encryption.test_update_encrypted_raw_text_message.yaml +++ b/tests/recordings/test_queue_encryption.test_update_encrypted_raw_text_message.yaml @@ -4,135 +4,135 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5bfc6806-67fc-11e7-8c3f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8d8d7450-68f6-11e7-a7cf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueuefc3a18fd response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f4f9beef-0003-005c-2909-fca52d000000] + x-ms-request-id: [742aae17-0003-012b-2f03-fd6639000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - {"EncryptedMessageContents": "2z51GVpGaJftEBreu5bYRg==", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "kIaIyNzzlNev1mTpR2iveWQQLfBYEhjo4YlvK4tILoAyQ0Yiua+FKg==", + {"EncryptedMessageContents": "L1eff+arsjbiroZmV03EtQ==", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "bs9buVAbT9Gjh/ogKHGKGuJQCN2o0UCmHRNseiGni7YyW0NBwdGcYA==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "37vNE96xN3E9haHr3TIRFQ==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "QALsxul1KRhAB/nd3527UA==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['502'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5c11d27a-67fc-11e7-95b4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8da27d00-68f6-11e7-9798-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:00 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueuefc3a18fd/messages response: - body: {string: "\uFEFFd709072e-8c14-4984-9780-d5270137731bThu,\ - \ 13 Jul 2017 18:52:03 GMTThu, 20 Jul 2017\ - \ 18:52:03 GMTAgAAAAMAAAAAAAAAdTbDHQn80gE=Thu,\ - \ 13 Jul 2017 18:52:03 GMT"} + body: {string: "\uFEFF3b762397-6f46-40a1-adaa-b74b5f0d16dcSat,\ + \ 15 Jul 2017 00:43:01 GMTSat, 22 Jul 2017\ + \ 00:43:01 GMTAgAAAAMAAAAAAAAAWwbfTwP90gE=Sat,\ + \ 15 Jul 2017 00:43:01 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f4f9bef5-0003-005c-2c09-fca52d000000] + x-ms-request-id: [742aae29-0003-012b-3d03-fd6639000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5c173938-67fc-11e7-8aa8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8da7d62e-68f6-11e7-afa7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:00 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueuefc3a18fd/messages response: - body: {string: "\uFEFFd709072e-8c14-4984-9780-d5270137731bThu,\ - \ 13 Jul 2017 18:52:03 GMTThu, 20 Jul 2017\ - \ 18:52:03 GMTAgAAAAMAAAAAAAAAoDGqLwn80gE=Thu,\ - \ 13 Jul 2017 18:52:33 GMT1{\"\ - EncryptedMessageContents\": \"2z51GVpGaJftEBreu5bYRg==\", \"EncryptionData\"\ - : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"kIaIyNzzlNev1mTpR2iveWQQLfBYEhjo4YlvK4tILoAyQ0Yiua+FKg==\"\ + body: {string: "\uFEFF3b762397-6f46-40a1-adaa-b74b5f0d16dcSat,\ + \ 15 Jul 2017 00:43:01 GMTSat, 22 Jul 2017\ + \ 00:43:01 GMTAgAAAAMAAAAAAAAAbdrFYQP90gE=Sat,\ + \ 15 Jul 2017 00:43:31 GMT1{\"\ + EncryptedMessageContents\": \"L1eff+arsjbiroZmV03EtQ==\", \"EncryptionData\"\ + : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"bs9buVAbT9Gjh/ogKHGKGuJQCN2o0UCmHRNseiGni7YyW0NBwdGcYA==\"\ , \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\"\ - , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"37vNE96xN3E9haHr3TIRFQ==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"QALsxul1KRhAB/nd3527UA==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f4f9bef6-0003-005c-2d09-fca52d000000] + x-ms-request-id: [742aae3f-0003-012b-5103-fd6639000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: ' - {"EncryptedMessageContents": "hP/rujB6i67737JLeEIwdA==", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "CA6ZTjX+lcAvfAQWEWpCeP/Z2KfblVQcLAZFzPNUrqAT6JSrwa93Kg==", + {"EncryptedMessageContents": "nQVC3uPWkrrzBu89mU+XDQ==", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "/xRxecEnsYwB7dfMh1Rc1YLbkP31uDwGitJSEbSr+1ugZzQAAY/WiQ==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "v/lq61j2bzpAXUK2at2mcQ==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "a95iS37NlhapPP1PRzSBvA==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['502'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5c1daade-67fc-11e7-8989-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8dad7f8c-68f6-11e7-9be3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT - uri: https://storagename.queue.core.windows.net/encryptionqueuefc3a18fd/messages/d709072e-8c14-4984-9780-d5270137731b?popreceipt=AgAAAAMAAAAAAAAAoDGqLwn80gE%3D&visibilitytimeout=0 + uri: https://storagename.queue.core.windows.net/encryptionqueuefc3a18fd/messages/3b762397-6f46-40a1-adaa-b74b5f0d16dc?popreceipt=AgAAAAMAAAAAAAAAbdrFYQP90gE%3D&visibilitytimeout=0 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-popreceipt: [AwAAAAMAAAAAAAAAhR/PHQn80gEBAAAA] - x-ms-request-id: [f4f9bef9-0003-005c-2f09-fca52d000000] - x-ms-time-next-visible: ['Thu, 13 Jul 2017 18:52:03 GMT'] + x-ms-popreceipt: [AwAAAAMAAAAAAAAA9yvqTwP90gEBAAAA] + x-ms-request-id: [742aae4d-0003-012b-5d03-fd6639000000] + x-ms-time-next-visible: ['Sat, 15 Jul 2017 00:43:01 GMT'] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5c24e114-67fc-11e7-94e6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8db5b9ba-68f6-11e7-bc9a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:00 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueuefc3a18fd/messages response: - body: {string: "\uFEFFd709072e-8c14-4984-9780-d5270137731bThu,\ - \ 13 Jul 2017 18:52:03 GMTThu, 20 Jul 2017\ - \ 18:52:03 GMTAgAAAAMAAAAAAAAAqsi3Lwn80gE=Thu,\ - \ 13 Jul 2017 18:52:33 GMT2{\"\ - EncryptedMessageContents\": \"hP/rujB6i67737JLeEIwdA==\", \"EncryptionData\"\ - : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"CA6ZTjX+lcAvfAQWEWpCeP/Z2KfblVQcLAZFzPNUrqAT6JSrwa93Kg==\"\ + body: {string: "\uFEFF3b762397-6f46-40a1-adaa-b74b5f0d16dcSat,\ + \ 15 Jul 2017 00:43:01 GMTSat, 22 Jul 2017\ + \ 00:43:01 GMTAgAAAAMAAAAAAAAAy+bTYQP90gE=Sat,\ + \ 15 Jul 2017 00:43:31 GMT2{\"\ + EncryptedMessageContents\": \"nQVC3uPWkrrzBu89mU+XDQ==\", \"EncryptionData\"\ + : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"/xRxecEnsYwB7dfMh1Rc1YLbkP31uDwGitJSEbSr+1ugZzQAAY/WiQ==\"\ , \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\"\ - , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"v/lq61j2bzpAXUK2at2mcQ==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"a95iS37NlhapPP1PRzSBvA==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f4f9befb-0003-005c-3109-fca52d000000] + x-ms-request-id: [742aae60-0003-012b-6e03-fd6639000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_queue_encryption.test_validate_encryption.yaml b/tests/recordings/test_queue_encryption.test_validate_encryption.yaml index 194aa8cc..086bd95c 100644 --- a/tests/recordings/test_queue_encryption.test_validate_encryption.yaml +++ b/tests/recordings/test_queue_encryption.test_validate_encryption.yaml @@ -4,77 +4,77 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5c465c22-67fc-11e7-9eee-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8dd33e36-68f6-11e7-976b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/encryptionqueuec34e1330 response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [da17cc9b-0003-0076-1609-fcd068000000] + x-ms-request-id: [2bb36b59-0003-00f6-6403-fd73c2000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - {"EncryptedMessageContents": "Ie6iXpSEX+6TsDqtx84X8A==", - "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "BS99tfP+CEqSIQcKmMuXd64gbEG0aTD5KrbgGoiN7mIFC5lBCfm5eg==", + {"EncryptedMessageContents": "S9igAv8fqfI7FrSvuNNIdQ==", + "EncryptionData": {"WrappedContentKey": {"KeyId": "key1", "EncryptedKey": "FoAjbs18GvBYDGhMh0WWu1QLqVS+FPbD9HW45QIL6qkyYjVO+0RPrw==", "Algorithm": "A256KW"}, "EncryptionAgent": {"Protocol": "1.0", "EncryptionAlgorithm": - "AES_CBC_256"}, "ContentEncryptionIV": "dPSBVOXmuCvq61WcpBoa3A==", "KeyWrappingMetadata": - {"EncryptionLibrary": "Python 0.35.0"}}}' + "AES_CBC_256"}, "ContentEncryptionIV": "318RHs42FYV+uxjUhsWdvg==", "KeyWrappingMetadata": + {"EncryptionLibrary": "Python 0.35.1"}}}' headers: Connection: [keep-alive] Content-Length: ['502'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5c5d3942-67fc-11e7-957d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8dea05c6-68f6-11e7-a369-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:01 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.queue.core.windows.net/encryptionqueuec34e1330/messages response: - body: {string: "\uFEFF2d8acf6f-3f74-4dd6-a165-03311840d631Thu,\ - \ 13 Jul 2017 18:52:03 GMTThu, 20 Jul 2017\ - \ 18:52:03 GMTAgAAAAMAAAAAAAAAbfMOHgn80gE=Thu,\ - \ 13 Jul 2017 18:52:03 GMT"} + body: {string: "\uFEFF7ca944b5-18bf-4d93-86d1-b7202269fd9eSat,\ + \ 15 Jul 2017 00:43:01 GMTSat, 22 Jul 2017\ + \ 00:43:01 GMTAgAAAAMAAAAAAAAAHfImUAP90gE=Sat,\ + \ 15 Jul 2017 00:43:01 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:02 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [da17cca5-0003-0076-1d09-fcd068000000] + x-ms-request-id: [2bb36b5e-0003-00f6-6703-fd73c2000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5c630f66-67fc-11e7-afc9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8defd3c0-68f6-11e7-bbff-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:01 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/encryptionqueuec34e1330/messages?peekonly=true response: - body: {string: "\uFEFF2d8acf6f-3f74-4dd6-a165-03311840d631Thu,\ - \ 13 Jul 2017 18:52:03 GMTThu, 20 Jul 2017\ - \ 18:52:03 GMT0{\"\ - EncryptedMessageContents\": \"Ie6iXpSEX+6TsDqtx84X8A==\", \"EncryptionData\"\ - : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"BS99tfP+CEqSIQcKmMuXd64gbEG0aTD5KrbgGoiN7mIFC5lBCfm5eg==\"\ + body: {string: "\uFEFF7ca944b5-18bf-4d93-86d1-b7202269fd9eSat,\ + \ 15 Jul 2017 00:43:01 GMTSat, 22 Jul 2017\ + \ 00:43:01 GMT0{\"\ + EncryptedMessageContents\": \"S9igAv8fqfI7FrSvuNNIdQ==\", \"EncryptionData\"\ + : {\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"FoAjbs18GvBYDGhMh0WWu1QLqVS+FPbD9HW45QIL6qkyYjVO+0RPrw==\"\ , \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\"\ - , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"dPSBVOXmuCvq61WcpBoa3A==\"\ - , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.0\"}}}"} + , \"EncryptionAlgorithm\": \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"318RHs42FYV+uxjUhsWdvg==\"\ + , \"KeyWrappingMetadata\": {\"EncryptionLibrary\": \"Python 0.35.1\"}}}"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:01 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [da17ccab-0003-0076-2309-fcd068000000] + x-ms-request-id: [2bb36b60-0003-00f6-6903-fd73c2000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_retry.test_invalid_retry.yaml b/tests/recordings/test_retry.test_invalid_retry.yaml index faa67fb4..9f194897 100644 --- a/tests/recordings/test_retry.test_invalid_retry.yaml +++ b/tests/recordings/test_retry.test_invalid_retry.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5c7f374a-67fc-11e7-85ed-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8e1ec8c6-68f6-11e7-8b73-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:01 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/b5650c1f?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:03 GMT'] - ETag: ['"0x8D4CA2040B39C70"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:01 GMT'] + ETag: ['"0x8D4CB1A73350515"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:02 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7c305747-0001-003d-1909-fce1f2000000] + x-ms-request-id: [26e9c72d-0001-007f-7e03-fdcae6000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,19 +26,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5ca1c406-67fc-11e7-8405-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8e338d06-68f6-11e7-86ff-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:01 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/b5650c1f?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:01 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [7c305781-0001-003d-4f09-fce1f2000000] + x-ms-request-id: [26e9c740-0001-007f-0f03-fdcae6000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_retry.test_linear_retry.yaml b/tests/recordings/test_retry.test_linear_retry.yaml index 3f3bf4a2..5e4b1ed3 100644 --- a/tests/recordings/test_retry.test_linear_retry.yaml +++ b/tests/recordings/test_retry.test_linear_retry.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5ca8e362-67fc-11e7-b274-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8e3b0eba-68f6-11e7-b0e7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:01 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/a92b0bb3?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:03 GMT'] - ETag: ['"0x8D4CA204085EB86"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:02 GMT'] + ETag: ['"0x8D4CB1A735DFDC2"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:03 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b24f00e3-0001-0036-7709-fcf986000000] + x-ms-request-id: [60da7ed6-0001-0116-6603-fdd31f000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5ca8e362-67fc-11e7-b274-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8e3b0eba-68f6-11e7-b0e7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:02 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/a92b0bb3?restype=container response: body: {string: "\uFEFFContainerAlreadyExistsThe\ - \ specified container already exists.\nRequestId:b24f02f1-0001-0036-5009-fcf986000000\n\ - Time:2017-07-13T18:52:04.6772719Z"} + \ specified container already exists.\nRequestId:60da7fd1-0001-0116-3903-fdd31f000000\n\ + Time:2017-07-15T00:43:04.1637791Z"} headers: Content-Length: ['230'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [b24f02f1-0001-0036-5009-fcf986000000] + x-ms-request-id: [60da7fd1-0001-0116-3903-fdd31f000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: The specified container already exists.} - request: @@ -49,19 +49,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5d5adad4-67fc-11e7-b450-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8eed5fcc-68f6-11e7-a6de-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:02 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/a92b0bb3?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:04 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b24f02f8-0001-0036-5709-fcf986000000] + x-ms-request-id: [60da7fd9-0001-0116-4003-fdd31f000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_retry.test_location_lock.yaml b/tests/recordings/test_retry.test_location_lock.yaml index 8f8c6192..a6d305f4 100644 --- a/tests/recordings/test_retry.test_location_lock.yaml +++ b/tests/recordings/test_retry.test_location_lock.yaml @@ -3,9 +3,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5d62cdf4-67fc-11e7-9f38-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8ef557c2-68f6-11e7-8d85-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:02 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?comp=list&prefix=lock @@ -15,20 +15,20 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:03 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [15a4c8d7-0001-00f8-2609-fc9fc9000000] + x-ms-request-id: [e50ec727-0001-0045-3c03-fd8945000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5d62cdf4-67fc-11e7-9f38-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [8ef557c2-68f6-11e7-8d85-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:05 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename-secondary.blob.core.windows.net/?comp=list&prefix=lock @@ -38,20 +38,20 @@ interactions: >lock"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [2e26587c-001e-0117-4709-fcff43000000] + x-ms-request-id: [c37b93e2-001e-00b4-6b03-fd7577000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5f80cb1e-67fc-11e7-9a92-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [911e8c8a-68f6-11e7-9ce2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:06 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename-secondary.blob.core.windows.net/?comp=list&prefix=lock @@ -61,11 +61,11 @@ interactions: >lock"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:06 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [2e26587e-001e-0117-4809-fcff43000000] + x-ms-request-id: [c37b93e5-001e-00b4-6d03-fd7577000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_retry.test_no_retry.yaml b/tests/recordings/test_retry.test_no_retry.yaml index 31af0997..9e2c1edd 100644 --- a/tests/recordings/test_retry.test_no_retry.yaml +++ b/tests/recordings/test_retry.test_no_retry.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5f9068be-67fc-11e7-9c7f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [912e5228-68f6-11e7-a3dc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:06 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/7d860a15?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:09 GMT'] - ETag: ['"0x8D4CA2043F48947"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:07 GMT'] + ETag: ['"0x8D4CB1A768A4E8E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:08 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9bb59b7e-0001-0105-6d09-fce6fe000000] + x-ms-request-id: [996958f7-0001-00d3-2503-fdeb71000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,19 +26,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5fa942a8-67fc-11e7-a05f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [91457b2e-68f6-11e7-977e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:06 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/7d860a15?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [9bb59baf-0001-0105-1709-fce6fe000000] + x-ms-request-id: [9969590e-0001-00d3-3603-fdeb71000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_retry.test_retry_on_server_error.yaml b/tests/recordings/test_retry.test_retry_on_server_error.yaml index dbb81645..c0edb768 100644 --- a/tests/recordings/test_retry.test_retry_on_server_error.yaml +++ b/tests/recordings/test_retry.test_retry_on_server_error.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5fb0afb6-67fc-11e7-a1a2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [914c4918-68f6-11e7-879b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:06 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/270d0f94?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:08 GMT'] - ETag: ['"0x8D4CA2043C9ED6B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:06 GMT'] + ETag: ['"0x8D4CB1A7609F9AD"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:07 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b25b9305-0001-005f-4809-fca62a000000] + x-ms-request-id: [b6932f95-0001-00a3-7103-fd98b5000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [5fb0afb6-67fc-11e7-a1a2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [914c4918-68f6-11e7-879b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/270d0f94?restype=container response: body: {string: "\uFEFFContainerAlreadyExistsThe\ - \ specified container already exists.\nRequestId:b25baeeb-0001-005f-3009-fca62a000000\n\ - Time:2017-07-13T18:52:27.1641038Z"} + \ specified container already exists.\nRequestId:b6934409-0001-00a3-7803-fd98b5000000\n\ + Time:2017-07-15T00:43:25.6445307Z"} headers: Content-Length: ['230'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [b25baeeb-0001-005f-3009-fca62a000000] + x-ms-request-id: [b6934409-0001-00a3-7803-fd98b5000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: The specified container already exists.} - request: @@ -49,19 +49,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6a875b10-67fc-11e7-8512-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [9c21be0c-68f6-11e7-a4e3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:24 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/270d0f94?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b25baefe-0001-005f-4109-fca62a000000] + x-ms-request-id: [b6934412-0001-00a3-0103-fd98b5000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_retry.test_retry_on_socket_timeout.yaml b/tests/recordings/test_retry.test_retry_on_socket_timeout.yaml index 1bc3f6a1..c8295a3d 100644 --- a/tests/recordings/test_retry.test_retry_on_socket_timeout.yaml +++ b/tests/recordings/test_retry.test_retry_on_socket_timeout.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6a8fbcc6-67fc-11e7-bf71-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [9c29b866-68f6-11e7-8b64-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:24 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/46e31063?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:27 GMT'] - ETag: ['"0x8D4CA204EA1CD58"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:24 GMT'] + ETag: ['"0x8D4CB1A8044411C"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cf7cfe52-0001-001c-6209-fc8cc3000000] + x-ms-request-id: [45463d5e-0001-004d-2e03-fd9236000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,19 +26,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6aa50d74-67fc-11e7-b4ac-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [9c3e0e42-68f6-11e7-b4c6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:25 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/46e31063?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:24 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cf7cfe5f-0001-001c-6c09-fc8cc3000000] + x-ms-request-id: [45463d6d-0001-004d-3903-fd9236000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_retry.test_retry_on_timeout.yaml b/tests/recordings/test_retry.test_retry_on_timeout.yaml index a058edf3..5d2ecb2e 100644 --- a/tests/recordings/test_retry.test_retry_on_timeout.yaml +++ b/tests/recordings/test_retry.test_retry_on_timeout.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6aac1a5e-67fc-11e7-851b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [9c44e50a-68f6-11e7-9dd7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:25 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/dd800d7b?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:27 GMT'] - ETag: ['"0x8D4CA204EEA3988"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:27 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:25 GMT'] + ETag: ['"0x8D4CB1A81159565"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:26 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [180545ed-0001-0029-2e09-fc2296000000] + x-ms-request-id: [0af999b8-0001-00d0-3803-fde876000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6aac1a5e-67fc-11e7-851b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:30 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [9c44e50a-68f6-11e7-9dd7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/dd800d7b?restype=container response: body: {string: "\uFEFFContainerAlreadyExistsThe\ - \ specified container already exists.\nRequestId:1805495f-0001-0029-3809-fc2296000000\n\ - Time:2017-07-13T18:52:30.8301668Z"} + \ specified container already exists.\nRequestId:0af99f46-0001-00d0-4503-fde876000000\n\ + Time:2017-07-15T00:43:29.1767943Z"} headers: Content-Length: ['230'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [1805495f-0001-0029-3809-fc2296000000] + x-ms-request-id: [0af99f46-0001-00d0-4503-fde876000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: The specified container already exists.} - request: @@ -49,19 +49,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6c93017a-67fc-11e7-9725-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:30 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [9e292c00-68f6-11e7-a1dc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:28 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/dd800d7b?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:28 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [18054974-0001-0029-4709-fc2296000000] + x-ms-request-id: [0af99f53-0001-00d0-5103-fde876000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_retry.test_retry_to_secondary_with_get.yaml b/tests/recordings/test_retry.test_retry_to_secondary_with_get.yaml index 7bf91085..eabd832c 100644 --- a/tests/recordings/test_retry.test_retry_to_secondary_with_get.yaml +++ b/tests/recordings/test_retry.test_retry_to_secondary_with_get.yaml @@ -4,88 +4,88 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6c9aa5a6-67fc-11e7-9530-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:30 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [9e37d200-68f6-11e7-8ffd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:28 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/8c6311fc?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:29 GMT'] - ETag: ['"0x8D4CA2050AD7F74"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:30 GMT'] + ETag: ['"0x8D4CB1A83B189AB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cd237667-0001-0073-6c09-fc2417000000] + x-ms-request-id: [ca861f7b-0001-00b3-1603-fdae53000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6cafa97e-67fc-11e7-bd75-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [9e4b8476-68f6-11e7-8d16-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:28 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/8c6311fc?restype=container&comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:29 GMT'] - ETag: ['"0x8D4CA2050AD7F74"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:30 GMT'] + ETag: ['"0x8D4CB1A83B189AB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [cd23767c-0001-0073-7d09-fc2417000000] + x-ms-request-id: [ca861f94-0001-00b3-2d03-fdae53000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6cafa97e-67fc-11e7-bd75-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [9e4b8476-68f6-11e7-8d16-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:31 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename-secondary.blob.core.windows.net/8c6311fc?restype=container&comp=metadata response: body: {string: "\uFEFFContainerNotFoundThe\ - \ specified container does not exist.\nRequestId:bbab75a5-001e-011e-3409-fce5cd000000\n\ - Time:2017-07-13T18:52:34.2597933Z"} + \ specified container does not exist.\nRequestId:2ad70d95-001e-0050-4d03-fd667d000000\n\ + Time:2017-07-15T00:43:33.0172768Z"} headers: Content-Length: ['225'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:34 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:32 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [bbab75a5-001e-011e-3409-fce5cd000000] + x-ms-request-id: [2ad70d95-001e-0050-4d03-fd667d000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified container does not exist.} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [6cafa97e-67fc-11e7-bd75-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [9e4b8476-68f6-11e7-8d16-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:36 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/8c6311fc?restype=container&comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:38 GMT'] - ETag: ['"0x8D4CA2050AD7F74"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:30 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:38 GMT'] + ETag: ['"0x8D4CB1A83B189AB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:30 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [cd2383e8-0001-0073-3e09-fc2417000000] + x-ms-request-id: [ca863155-0001-00b3-4303-fdae53000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -93,19 +93,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [71bd3eb8-67fc-11e7-9856-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a360e050-68f6-11e7-84af-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:37 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/8c6311fc?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:38 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:38 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cd2383f0-0001-0073-4509-fc2417000000] + x-ms-request-id: [ca86315f-0001-00b3-4c03-fdae53000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_retry.test_retry_to_secondary_with_put.yaml b/tests/recordings/test_retry.test_retry_to_secondary_with_put.yaml index 6dbe7fd2..fc1a8eae 100644 --- a/tests/recordings/test_retry.test_retry_to_secondary_with_put.yaml +++ b/tests/recordings/test_retry.test_retry_to_secondary_with_put.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [71c5de7e-67fc-11e7-8997-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a36a8358-68f6-11e7-84a4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:37 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/8c9e1215?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:38 GMT'] - ETag: ['"0x8D4CA2055F0A6D4"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:39 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:39 GMT'] + ETag: ['"0x8D4CB1A88FA8686"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:39 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [43ea93d6-0001-0037-2b09-fcf87b000000] + x-ms-request-id: [109f9f74-0001-0016-7303-fd954a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [71c5de7e-67fc-11e7-8997-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a36a8358-68f6-11e7-84a4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/8c9e1215?restype=container response: body: {string: "\uFEFFContainerAlreadyExistsThe\ - \ specified container already exists.\nRequestId:43ea9916-0001-0037-7809-fcf87b000000\n\ - Time:2017-07-13T18:52:42.6183569Z"} + \ specified container already exists.\nRequestId:109fa418-0001-0016-2003-fd954a000000\n\ + Time:2017-07-15T00:43:42.4206976Z"} headers: Content-Length: ['230'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [43ea9916-0001-0037-7809-fcf87b000000] + x-ms-request-id: [109fa418-0001-0016-2003-fd954a000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: The specified container already exists.} - request: @@ -49,19 +49,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [73aa6836-67fc-11e7-a4a7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a54dfb28-68f6-11e7-8966-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:40 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/8c9e1215?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:42 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [43ea9922-0001-0037-0409-fcf87b000000] + x-ms-request-id: [109fa42b-0001-0016-3203-fd954a000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_retry.test_retry_with_deserialization.yaml b/tests/recordings/test_retry.test_retry_with_deserialization.yaml index 8a4c90f4..88980da4 100644 --- a/tests/recordings/test_retry.test_retry_with_deserialization.yaml +++ b/tests/recordings/test_retry.test_retry_with_deserialization.yaml @@ -4,69 +4,69 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [73b8a07a-67fc-11e7-b6bf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a556819e-68f6-11e7-8964-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/retry7a5d119a?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:42 GMT'] - ETag: ['"0x8D4CA2057E854A9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:40 GMT'] + ETag: ['"0x8D4CB1A8A145B4A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:41 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f8b91a7d-0001-0120-4c09-fc7e4d000000] + x-ms-request-id: [522fc75c-0001-00ec-1203-fd5cad000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [73d07bd4-67fc-11e7-82e0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a56e1c8c-68f6-11e7-808e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:40 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?comp=list&prefix=retry response: body: {string: "\uFEFFretryretry7a5d119aThu,\ - \ 13 Jul 2017 18:52:42 GMT\"0x8D4CA2057E854A9\"unlockedavailableretryretry7a5d119aSat,\ + \ 15 Jul 2017 00:43:41 GMT\"0x8D4CB1A8A145B4A\"unlockedavailable"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:40 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [f8b91aa9-0001-0120-7009-fc7e4d000000] + x-ms-request-id: [522fc770-0001-00ec-2003-fd5cad000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [73d07bd4-67fc-11e7-82e0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a56e1c8c-68f6-11e7-808e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:43 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?comp=list&prefix=retry response: body: {string: "\uFEFFretryretry7a5d119aThu,\ - \ 13 Jul 2017 18:52:42 GMT\"0x8D4CA2057E854A9\"unlockedavailableretryretry7a5d119aSat,\ + \ 15 Jul 2017 00:43:41 GMT\"0x8D4CB1A8A145B4A\"unlockedavailable"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [f8b91f45-0001-0120-2009-fc7e4d000000] + x-ms-request-id: [522fca0a-0001-00ec-5f03-fd5cad000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -74,19 +74,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [75a48982-67fc-11e7-8eac-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a7435718-68f6-11e7-8918-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:43 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/retry7a5d119a?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:43 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f8b91f51-0001-0120-2c09-fc7e4d000000] + x-ms-request-id: [522fca0f-0001-00ec-6303-fd5cad000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_retry.test_secondary_location_mode.yaml b/tests/recordings/test_retry.test_secondary_location_mode.yaml index 07c2d44c..a84903eb 100644 --- a/tests/recordings/test_retry.test_secondary_location_mode.yaml +++ b/tests/recordings/test_retry.test_secondary_location_mode.yaml @@ -4,44 +4,44 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [75ac956e-67fc-11e7-836e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a74cc2a6-68f6-11e7-8310-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:43 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/447f1027?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:45 GMT'] - ETag: ['"0x8D4CA2059C77BEC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:44 GMT'] + ETag: ['"0x8D4CB1A8C0BB4A7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dee70dea-0001-0002-5109-fc562e000000] + x-ms-request-id: [c23ace02-0001-0049-2303-fd67b4000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [75c07d54-67fc-11e7-b4ea-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a7640218-68f6-11e7-9ae8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:43 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename-secondary.blob.core.windows.net/447f1027?restype=container&comp=metadata response: body: {string: "\uFEFFContainerNotFoundThe\ - \ specified container does not exist.\nRequestId:a5f60e93-001e-004f-1009-fcbd6d000000\n\ - Time:2017-07-13T18:52:46.4336942Z"} + \ specified container does not exist.\nRequestId:2cee7104-001e-0018-7403-fd54e0000000\n\ + Time:2017-07-15T00:43:45.0440317Z"} headers: Content-Length: ['225'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Vary: [Origin] - x-ms-request-id: [a5f60e93-001e-004f-1009-fcbd6d000000] + x-ms-request-id: [2cee7104-001e-0018-7403-fd54e0000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified container does not exist.} - request: @@ -49,19 +49,19 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [75fb2efe-67fc-11e7-9f80-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a7a0b1fe-68f6-11e7-bdf9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:44 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.blob.core.windows.net/447f1027?restype=container response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dee70ef8-0001-0002-4709-fc562e000000] + x-ms-request-id: [c23ace82-0001-0049-0803-fd67b4000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_service_properties.test_blob_service_properties.yaml b/tests/recordings/test_service_properties.test_blob_service_properties.yaml index c68a3357..85668621 100644 --- a/tests/recordings/test_service_properties.test_blob_service_properties.yaml +++ b/tests/recordings/test_service_properties.test_blob_service_properties.yaml @@ -7,28 +7,28 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['585'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [76041bfe-67fc-11e7-8d10-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a7ae46fa-68f6-11e7-a392-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f1aaa938-0001-00a8-3f09-fc80c1000000] + x-ms-request-id: [260a3437-0001-0010-1803-fd6232000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [761e0064-67fc-11e7-9683-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a7f3cd94-68f6-11e7-9ad2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:44 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?restype=service&comp=properties @@ -37,10 +37,10 @@ interactions: \ />2014-02-14"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:44 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f1aaa94e-0001-00a8-4c09-fc80c1000000] + x-ms-request-id: [260a3452-0001-0010-2803-fd6232000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_service_properties.test_file_service_properties.yaml b/tests/recordings/test_service_properties.test_file_service_properties.yaml index cac7768d..d093fa87 100644 --- a/tests/recordings/test_service_properties.test_file_service_properties.yaml +++ b/tests/recordings/test_service_properties.test_file_service_properties.yaml @@ -7,28 +7,28 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['368'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7628d34a-67fc-11e7-b93d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a802a490-68f6-11e7-8bbb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:45 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e24adf63-001a-00ca-3b09-fcc719000000] + x-ms-request-id: [a578e836-001a-00e9-4603-fda8d2000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [766efab4-67fc-11e7-8915-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a843850a-68f6-11e7-995a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:45 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/?restype=service&comp=properties @@ -37,10 +37,10 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:45 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e24adf6a-001a-00ca-3c09-fcc719000000] + x-ms-request-id: [a578e83e-001a-00e9-4803-fda8d2000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_service_properties.test_queue_service_properties.yaml b/tests/recordings/test_service_properties.test_queue_service_properties.yaml index eb66ac96..5e289741 100644 --- a/tests/recordings/test_service_properties.test_queue_service_properties.yaml +++ b/tests/recordings/test_service_properties.test_queue_service_properties.yaml @@ -7,28 +7,28 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['528'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [76764a8a-67fc-11e7-990d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a84cf7ac-68f6-11e7-9c3b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.queue.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:45 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [315ff927-0003-00db-5a09-fcf002000000] + x-ms-request-id: [db81e528-0003-0094-4f03-fd341a000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [768b8a8a-67fc-11e7-a09e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a862db4c-68f6-11e7-b600-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:45 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.queue.core.windows.net/?restype=service&comp=properties @@ -38,10 +38,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:45 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [315ff93e-0003-00db-6909-fcf002000000] + x-ms-request-id: [db81e535-0003-0094-5603-fd341a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_service_properties.test_retention_too_long.yaml b/tests/recordings/test_service_properties.test_retention_too_long.yaml index 2c12b6b8..1a6063af 100644 --- a/tests/recordings/test_service_properties.test_retention_too_long.yaml +++ b/tests/recordings/test_service_properties.test_retention_too_long.yaml @@ -6,23 +6,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['273'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [76926ba2-67fc-11e7-9976-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a86afc28-68f6-11e7-8237-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/?restype=service&comp=properties response: body: {string: "\uFEFFInvalidXmlDocumentXML\ - \ specified is not syntactically valid.\nRequestId:dfa74920-0001-0044-2309-fc88b8000000\n\ - Time:2017-07-13T18:52:47.3548037Z2176Retention\ + \ specified is not syntactically valid.\nRequestId:a5fa65ea-0001-0122-2303-fd7cb7000000\n\ + Time:2017-07-15T00:43:46.8867653Z2176Retention\ \ days must be greater than 0 and less than or equal to 365 days."} headers: Content-Length: ['376'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:46 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [dfa74920-0001-0044-2309-fc88b8000000] + x-ms-request-id: [a5fa65ea-0001-0122-2303-fd7cb7000000] x-ms-version: ['2017-04-17'] status: {code: 400, message: XML specified is not syntactically valid.} version: 1 diff --git a/tests/recordings/test_service_properties.test_set_cors.yaml b/tests/recordings/test_service_properties.test_set_cors.yaml index 6704ca65..54c44752 100644 --- a/tests/recordings/test_service_properties.test_set_cors.yaml +++ b/tests/recordings/test_service_properties.test_set_cors.yaml @@ -7,28 +7,28 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['631'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [76b06768-67fc-11e7-9a43-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a8801c18-68f6-11e7-a441-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e6491d9c-0001-008e-7f09-fc1b75000000] + x-ms-request-id: [6e5909cb-0001-0029-6f03-fd2296000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [76c63702-67fc-11e7-aaa1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a899a4e4-68f6-11e7-ae69-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:45 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?restype=service&comp=properties @@ -37,11 +37,11 @@ interactions: \ />0GET,PUTwww.xyz.com,www.ab.com,www.bc.comx-ms-meta-xyz,x-ms-meta-foo,x-ms-meta-data*,x-ms-meta-target*x-ms-meta-abc,x-ms-meta-bcd,x-ms-meta-data*,x-ms-meta-source*5002014-02-14"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [e6491db5-0001-008e-0e09-fc1b75000000] + x-ms-request-id: [6e5909df-0001-0029-7a03-fd2296000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_service_properties.test_set_default_service_version.yaml b/tests/recordings/test_service_properties.test_set_default_service_version.yaml index 5773536a..224cd2d7 100644 --- a/tests/recordings/test_service_properties.test_set_default_service_version.yaml +++ b/tests/recordings/test_service_properties.test_set_default_service_version.yaml @@ -6,28 +6,28 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['149'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [76cdd5a2-67fc-11e7-9dea-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a8a16698-68f6-11e7-a4e1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:45 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f186ecc9-0001-00d7-7609-fc1ef3000000] + x-ms-request-id: [daa809be-0001-00e9-6f03-fda8d2000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [76e1e51a-67fc-11e7-a5b3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a8b5b648-68f6-11e7-be45-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:45 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?restype=service&comp=properties @@ -36,11 +36,11 @@ interactions: \ />0GET,PUTwww.xyz.com,www.ab.com,www.bc.comx-ms-meta-xyz,x-ms-meta-foo,x-ms-meta-data*,x-ms-meta-target*x-ms-meta-abc,x-ms-meta-bcd,x-ms-meta-data*,x-ms-meta-source*5002014-02-14"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:47 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [f186ecdb-0001-00d7-8009-fc1ef3000000] + x-ms-request-id: [daa809d1-0001-00e9-7b03-fda8d2000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_service_properties.test_set_hour_metrics.yaml b/tests/recordings/test_service_properties.test_set_hour_metrics.yaml index b70e1c0c..3766d410 100644 --- a/tests/recordings/test_service_properties.test_set_hour_metrics.yaml +++ b/tests/recordings/test_service_properties.test_set_hour_metrics.yaml @@ -6,28 +6,28 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['267'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [76e91998-67fc-11e7-b380-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a8bcd074-68f6-11e7-b1e2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6bd072ed-0001-0030-3909-fc0efe000000] + x-ms-request-id: [b1b2cca3-0001-00b8-2603-fdb627000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [77008b14-67fc-11e7-a226-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a8d23494-68f6-11e7-b741-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:46 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?restype=service&comp=properties @@ -36,11 +36,11 @@ interactions: \ />0GET,PUTwww.xyz.com,www.ab.com,www.bc.comx-ms-meta-xyz,x-ms-meta-foo,x-ms-meta-data*,x-ms-meta-target*x-ms-meta-abc,x-ms-meta-bcd,x-ms-meta-data*,x-ms-meta-source*5002014-02-14"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [6bd07300-0001-0030-4109-fc0efe000000] + x-ms-request-id: [b1b2ccba-0001-00b8-3203-fdb627000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_service_properties.test_set_logging.yaml b/tests/recordings/test_service_properties.test_set_logging.yaml index 965e4e30..f66b95db 100644 --- a/tests/recordings/test_service_properties.test_set_logging.yaml +++ b/tests/recordings/test_service_properties.test_set_logging.yaml @@ -6,28 +6,28 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['262'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7708c8ec-67fc-11e7-9c73-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a8d9da00-68f6-11e7-b413-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:46 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fe16a16c-0001-0106-7309-fce5f9000000] + x-ms-request-id: [0369fb94-0001-0113-4503-fd2760000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [773de89c-67fc-11e7-a9f8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a8ef4946-68f6-11e7-9b3a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:46 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?restype=service&comp=properties @@ -36,11 +36,11 @@ interactions: \ />0GET,PUTwww.xyz.com,www.ab.com,www.bc.comx-ms-meta-xyz,x-ms-meta-foo,x-ms-meta-data*,x-ms-meta-target*x-ms-meta-abc,x-ms-meta-bcd,x-ms-meta-data*,x-ms-meta-source*5002014-02-14"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [fe16a1ea-0001-0106-5d09-fce5f9000000] + x-ms-request-id: [0369fbaf-0001-0113-5703-fd2760000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_service_properties.test_set_minute_metrics.yaml b/tests/recordings/test_service_properties.test_set_minute_metrics.yaml index 74d25400..f8476fa5 100644 --- a/tests/recordings/test_service_properties.test_set_minute_metrics.yaml +++ b/tests/recordings/test_service_properties.test_set_minute_metrics.yaml @@ -6,28 +6,28 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['271'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7744a164-67fc-11e7-ba16-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a8f66c9c-68f6-11e7-b774-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dc79a8e8-0001-00eb-5409-fcaa28000000] + x-ms-request-id: [ddb35f7f-0001-0093-3d03-fdc29f000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [77598246-67fc-11e7-a06f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a90a35ba-68f6-11e7-858c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:46 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.blob.core.windows.net/?restype=service&comp=properties @@ -36,11 +36,11 @@ interactions: \ />0GET,PUTwww.xyz.com,www.ab.com,www.bc.comx-ms-meta-xyz,x-ms-meta-foo,x-ms-meta-data*,x-ms-meta-target*x-ms-meta-abc,x-ms-meta-bcd,x-ms-meta-data*,x-ms-meta-source*5002014-02-14"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:47 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [dc79a8f8-0001-00eb-5b09-fcaa28000000] + x-ms-request-id: [ddb35f8f-0001-0093-4603-fdc29f000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_service_properties.test_table_service_properties.yaml b/tests/recordings/test_service_properties.test_table_service_properties.yaml index a7e09836..621feef8 100644 --- a/tests/recordings/test_service_properties.test_table_service_properties.yaml +++ b/tests/recordings/test_service_properties.test_table_service_properties.yaml @@ -9,19 +9,19 @@ interactions: Content-Length: ['528'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [77609368-67fc-11e7-91b3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a911512e-68f6-11e7-85a1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.table.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:47 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f379921e-0002-0082-7009-fcf584000000] + x-ms-request-id: [186e5745-0002-0002-7c03-fd562e000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -30,9 +30,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7799ee3a-67fc-11e7-a068-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a9316cac-68f6-11e7-884a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:46 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/?restype=service&comp=properties @@ -41,10 +41,10 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:47 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f3799243-0002-0082-0d09-fcf584000000] + x-ms-request-id: [186e575a-0002-0002-0b03-fd562e000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_service_properties.test_too_many_cors_rules.yaml b/tests/recordings/test_service_properties.test_too_many_cors_rules.yaml index c8892a52..e777add3 100644 --- a/tests/recordings/test_service_properties.test_too_many_cors_rules.yaml +++ b/tests/recordings/test_service_properties.test_too_many_cors_rules.yaml @@ -12,23 +12,23 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['1143'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [77a15f9e-67fc-11e7-93d4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a9384266-68f6-11e7-a315-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.blob.core.windows.net/?restype=service&comp=properties response: body: {string: "\uFEFFInvalidXmlDocumentXML\ - \ specified is not syntactically valid.\nRequestId:8a06a10f-0001-0066-5f09-fce68e000000\n\ - Time:2017-07-13T18:52:49.6965445Z0000"} headers: Content-Length: ['294'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [8a06a10f-0001-0066-5f09-fce68e000000] + x-ms-request-id: [1abc2871-0001-0082-6603-fdf584000000] x-ms-version: ['2017-04-17'] status: {code: 400, message: XML specified is not syntactically valid.} version: 1 diff --git a/tests/recordings/test_service_stats.test_blob_service_stats.yaml b/tests/recordings/test_service_stats.test_blob_service_stats.yaml index daef5214..d5f06d6e 100644 --- a/tests/recordings/test_service_stats.test_blob_service_stats.yaml +++ b/tests/recordings/test_service_stats.test_blob_service_stats.yaml @@ -3,22 +3,22 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [77bf21f0-67fc-11e7-96dd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a94d09c6-68f6-11e7-a103-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:46 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename-secondary.blob.core.windows.net/?restype=service&comp=stats response: - body: {string: "\uFEFFliveThu,\ - \ 13 Jul 2017 18:48:56 GMT"} + body: {string: "\uFEFFliveSat,\ + \ 15 Jul 2017 00:41:01 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [2a6de8b7-001e-0103-1f09-fc3c27000000] + x-ms-request-id: [91de4be3-001e-00f3-1503-fdaa1c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_service_stats.test_blob_service_stats_when_unavailable.yaml b/tests/recordings/test_service_stats.test_blob_service_stats_when_unavailable.yaml index b2038e80..7e2e6d8f 100644 --- a/tests/recordings/test_service_stats.test_blob_service_stats_when_unavailable.yaml +++ b/tests/recordings/test_service_stats.test_blob_service_stats_when_unavailable.yaml @@ -3,22 +3,22 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [77f5151c-67fc-11e7-86d6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a9826314-68f6-11e7-8241-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:47 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename-secondary.blob.core.windows.net/?restype=service&comp=stats response: - body: {string: "\uFEFFliveThu,\ - \ 13 Jul 2017 18:48:56 GMT"} + body: {string: "\uFEFFliveSat,\ + \ 15 Jul 2017 00:41:01 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:48 GMT'] Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] Vary: [Origin] - x-ms-request-id: [55aaccac-001e-0021-0809-fc1444000000] + x-ms-request-id: [ad325968-001e-00fc-4a03-fd47ea000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_service_stats.test_queue_service_stats.yaml b/tests/recordings/test_service_stats.test_queue_service_stats.yaml index 207a2779..85ecef07 100644 --- a/tests/recordings/test_service_stats.test_queue_service_stats.yaml +++ b/tests/recordings/test_service_stats.test_queue_service_stats.yaml @@ -3,22 +3,22 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [782b5000-67fc-11e7-98cd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [a9bc515a-68f6-11e7-9c35-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:47 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename-secondary.queue.core.windows.net/?restype=service&comp=stats response: - body: {string: "\uFEFFliveThu,\ - \ 13 Jul 2017 18:48:46 GMT"} + body: {string: "\uFEFFliveSat,\ + \ 15 Jul 2017 00:41:45 GMT"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:49 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4d8758d3-0003-003e-4809-fccf54000000] + x-ms-request-id: [2a43fb3e-0003-0130-5d03-fd650a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_service_stats.test_queue_service_stats_when_unavailable.yaml b/tests/recordings/test_service_stats.test_queue_service_stats_when_unavailable.yaml index 0e32b354..7d2b7fba 100644 --- a/tests/recordings/test_service_stats.test_queue_service_stats_when_unavailable.yaml +++ b/tests/recordings/test_service_stats.test_queue_service_stats_when_unavailable.yaml @@ -3,22 +3,22 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7873f6f4-67fc-11e7-a6f0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aa30c81e-68f6-11e7-a71e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:48 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename-secondary.queue.core.windows.net/?restype=service&comp=stats response: - body: {string: "\uFEFFliveThu,\ - \ 13 Jul 2017 18:48:46 GMT"} + body: {string: "\uFEFFliveSat,\ + \ 15 Jul 2017 00:41:45 GMT"} headers: Cache-Control: [no-cache] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:49 GMT'] Server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b03c0ec8-0003-0073-6509-fc09b6000000] + x-ms-request-id: [2e5df016-0003-0085-1f03-fd2ea0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_service_stats.test_table_service_stats.yaml b/tests/recordings/test_service_stats.test_table_service_stats.yaml index b5b56d88..0c57ec7d 100644 --- a/tests/recordings/test_service_stats.test_table_service_stats.yaml +++ b/tests/recordings/test_service_stats.test_table_service_stats.yaml @@ -5,21 +5,21 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [78b2acd0-67fc-11e7-adea-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aa682e80-68f6-11e7-81d4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:48 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename-secondary.table.core.windows.net/?restype=service&comp=stats response: - body: {string: "\uFEFFliveThu,\ - \ 13 Jul 2017 18:49:05 GMT"} + body: {string: "\uFEFFliveSat,\ + \ 15 Jul 2017 00:40:50 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:49 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [73e1d99f-0002-00d4-3009-fc3055000000] + x-ms-request-id: [2bff6c47-0002-000a-1a03-fd60fc000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_service_stats.test_table_service_stats_when_unavailable.yaml b/tests/recordings/test_service_stats.test_table_service_stats_when_unavailable.yaml index 7684daa1..64747dbe 100644 --- a/tests/recordings/test_service_stats.test_table_service_stats_when_unavailable.yaml +++ b/tests/recordings/test_service_stats.test_table_service_stats_when_unavailable.yaml @@ -5,21 +5,21 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [78f1df5e-67fc-11e7-b009-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aaa8dfc0-68f6-11e7-a5e0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:49 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename-secondary.table.core.windows.net/?restype=service&comp=stats response: - body: {string: "\uFEFFliveThu,\ - \ 13 Jul 2017 18:49:05 GMT"} + body: {string: "\uFEFFliveSat,\ + \ 15 Jul 2017 00:40:50 GMT"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:50 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [c56dc718-0002-011e-7d09-fce5cd000000] + x-ms-request-id: [38713674-0002-00b4-4803-fd7577000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_create_share.yaml b/tests/recordings/test_share.test_create_share.yaml index c3728e58..c0d3910b 100644 --- a/tests/recordings/test_share.test_create_share.yaml +++ b/tests/recordings/test_share.test_create_share.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7928730c-67fc-11e7-ad48-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aadf8408-68f6-11e7-a099-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:49 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/sharea5f30b66?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:51 GMT'] - ETag: ['"0x8D4CA205D2F717A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:49 GMT'] + ETag: ['"0x8D4CB1A8FA41BE9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:50 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [414b8d32-001a-00af-6f09-fc7644000000] + x-ms-request-id: [8465f3e3-001a-001a-7d03-fd7bbb000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_share.test_create_share_fail_on_exist.yaml b/tests/recordings/test_share.test_create_share_fail_on_exist.yaml index 9281558f..9a66254e 100644 --- a/tests/recordings/test_share.test_create_share_fail_on_exist.yaml +++ b/tests/recordings/test_share.test_create_share_fail_on_exist.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7955415c-67fc-11e7-8e00-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ab192e74-68f6-11e7-a625-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:49 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share6fb61129?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:51 GMT'] - ETag: ['"0x8D4CA205D8F0768"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:50 GMT'] + ETag: ['"0x8D4CB1A8FDE8F57"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:50 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [b85ca5f0-001a-011a-7909-fc3dee000000] + x-ms-request-id: [13e52388-001a-0043-0f03-fd7e3d000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_share.test_create_share_with_already_existing_share.yaml b/tests/recordings/test_share.test_create_share_with_already_existing_share.yaml index 3f056bb1..6c1e53ba 100644 --- a/tests/recordings/test_share.test_create_share_with_already_existing_share.yaml +++ b/tests/recordings/test_share.test_create_share_with_already_existing_share.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [799e7c28-67fc-11e7-9808-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ab45d064-68f6-11e7-8e4f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share8d1b16fe?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:52 GMT'] - ETag: ['"0x8D4CA205DBD49D0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:51 GMT'] + ETag: ['"0x8D4CB1A9016DA0E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:51 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [3e2e389f-001a-001d-5f09-fc8d3e000000] + x-ms-request-id: [aa93e1d1-001a-00d5-7903-fd1c09000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [79b35968-67fc-11e7-a30f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ab59a8f0-68f6-11e7-b075-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share8d1b16fe?restype=share response: body: {string: "\uFEFFShareAlreadyExistsThe\ - \ specified share already exists.\nRequestId:3e2e38a2-001a-001d-6009-fc8d3e000000\n\ - Time:2017-07-13T18:52:52.6923356Z"} + \ specified share already exists.\nRequestId:aa93e1d5-001a-00d5-7a03-fd1c09000000\n\ + Time:2017-07-15T00:43:51.3427722Z"} headers: Content-Length: ['222'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:51 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [3e2e38a2-001a-001d-6009-fc8d3e000000] + x-ms-request-id: [aa93e1d5-001a-00d5-7a03-fd1c09000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: The specified share already exists.} version: 1 diff --git a/tests/recordings/test_share.test_create_share_with_already_existing_share_fail_on_exist.yaml b/tests/recordings/test_share.test_create_share_with_already_existing_share_fail_on_exist.yaml index 8078c558..0c19350d 100644 --- a/tests/recordings/test_share.test_create_share_with_already_existing_share_fail_on_exist.yaml +++ b/tests/recordings/test_share.test_create_share_with_already_existing_share_fail_on_exist.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [79ce9658-67fc-11e7-b6d3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ab7bf4a8-68f6-11e7-bb6c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/sharef92e1cc1?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:52 GMT'] - ETag: ['"0x8D4CA205DD9BEB5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:58 GMT'] + ETag: ['"0x8D4CB1A94D95F42"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:59 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d68f3160-001a-000f-7d09-fcb922000000] + x-ms-request-id: [7343c750-001a-00a0-7503-fd9bb2000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,22 +26,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [79e1ae6c-67fc-11e7-ad93-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ab933bb0-68f6-11e7-bc68-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/sharef92e1cc1?restype=share response: body: {string: "\uFEFFShareAlreadyExistsThe\ - \ specified share already exists.\nRequestId:d68f3163-001a-000f-7e09-fcb922000000\n\ - Time:2017-07-13T18:52:52.8768271Z"} + \ specified share already exists.\nRequestId:7343c753-001a-00a0-7603-fd9bb2000000\n\ + Time:2017-07-15T00:43:59.3434920Z"} headers: Content-Length: ['222'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:52 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:58 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [d68f3163-001a-000f-7e09-fcb922000000] + x-ms-request-id: [7343c753-001a-00a0-7603-fd9bb2000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: The specified share already exists.} version: 1 diff --git a/tests/recordings/test_share.test_create_share_with_metadata.yaml b/tests/recordings/test_share.test_create_share_with_metadata.yaml index ba2e4a2b..5ac86ea2 100644 --- a/tests/recordings/test_share.test_create_share_with_metadata.yaml +++ b/tests/recordings/test_share.test_create_share_with_metadata.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [79fe8fa8-67fc-11e7-8603-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [abb04dfe-68f6-11e7-83d1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:50 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -15,35 +15,35 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:53 GMT'] - ETag: ['"0x8D4CA205E8B5D74"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:51 GMT'] + ETag: ['"0x8D4CB1A9077BD15"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:51 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ff9152f2-001a-00a2-6d09-fc9948000000] + x-ms-request-id: [efc05c4e-001a-006b-2c03-fd0982000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7a12dec6-67fc-11e7-9d66-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [abc626c6-68f6-11e7-b9ee-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:51 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/share70e61121?restype=share&comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:53 GMT'] - ETag: ['"0x8D4CA205E8B5D74"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:51 GMT'] + ETag: ['"0x8D4CB1A9077BD15"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:51 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [ff9152f5-001a-00a2-6e09-fc9948000000] + x-ms-request-id: [efc05c51-001a-006b-2d03-fd0982000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_create_share_with_quota.yaml b/tests/recordings/test_share.test_create_share_with_quota.yaml index 2e084eae..836ae595 100644 --- a/tests/recordings/test_share.test_create_share_with_quota.yaml +++ b/tests/recordings/test_share.test_create_share_with_quota.yaml @@ -4,9 +4,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7a300a1c-67fc-11e7-8778-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [abe57d9e-68f6-11e7-af14-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:51 GMT'] x-ms-share-quota: ['1'] x-ms-version: ['2017-04-17'] method: PUT @@ -14,33 +14,33 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:53 GMT'] - ETag: ['"0x8D4CA205E772B98"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:52 GMT'] + ETag: ['"0x8D4CB1A910E6D28"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:52 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [43dcd22e-001a-0095-2b09-fc35e7000000] + x-ms-request-id: [593f71c6-001a-0125-6303-fd8a32000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7a42d2a8-67fc-11e7-8424-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ac02dc36-68f6-11e7-a431-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:51 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/share3f21100a?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:53 GMT'] - ETag: ['"0x8D4CA205E772B98"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:52 GMT'] + ETag: ['"0x8D4CB1A910E6D28"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:52 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [43dcd231-001a-0095-2c09-fc35e7000000] + x-ms-request-id: [593f71c9-001a-0125-6403-fd8a32000000] x-ms-share-quota: ['1'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_share.test_delete_share_with_existing_share.yaml b/tests/recordings/test_share.test_delete_share_with_existing_share.yaml index f1c7b2c3..da65a05f 100644 --- a/tests/recordings/test_share.test_delete_share_with_existing_share.yaml +++ b/tests/recordings/test_share.test_delete_share_with_existing_share.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7a5bd462-67fc-11e7-9b04-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ac1f5dca-68f6-11e7-a742-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:51 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/sharee1af13bc?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:53 GMT'] - ETag: ['"0x8D4CA205E74DF91"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:53 GMT'] + ETag: ['"0x8D4CB1A91BB46E4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:54 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [96dff6f0-001a-0087-5f09-fc01fb000000] + x-ms-request-id: [ce0824ae-001a-00c8-6f03-fdc5e3000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,41 +26,41 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7a6fc7f6-67fc-11e7-a592-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ac3583b6-68f6-11e7-91ff-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:51 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.file.core.windows.net/sharee1af13bc?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:53 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [96dff6f3-001a-0087-6009-fc01fb000000] + x-ms-request-id: [ce0824b1-001a-00c8-7003-fdc5e3000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7a7bf77e-67fc-11e7-a4a0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ac3b1d76-68f6-11e7-a980-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:51 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/sharee1af13bc?restype=share response: body: {string: "\uFEFFShareNotFoundThe\ - \ specified share does not exist.\nRequestId:96dff6f4-001a-0087-6109-fc01fb000000\n\ - Time:2017-07-13T18:52:53.9735344Z"} + \ specified share does not exist.\nRequestId:ce0824b2-001a-00c8-7103-fdc5e3000000\n\ + Time:2017-07-15T00:43:54.1411066Z"} headers: Content-Length: ['217'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:53 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [96dff6f4-001a-0087-6109-fc01fb000000] + x-ms-request-id: [ce0824b2-001a-00c8-7103-fdc5e3000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified share does not exist.} version: 1 diff --git a/tests/recordings/test_share.test_delete_share_with_existing_share_fail_not_exist.yaml b/tests/recordings/test_share.test_delete_share_with_existing_share_fail_not_exist.yaml index 8320222f..6679a75e 100644 --- a/tests/recordings/test_share.test_delete_share_with_existing_share_fail_not_exist.yaml +++ b/tests/recordings/test_share.test_delete_share_with_existing_share_fail_not_exist.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7a99bc5a-67fc-11e7-adc4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ac554f18-68f6-11e7-afbc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share3a5319f3?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:54 GMT'] - ETag: ['"0x8D4CA205ECE97E0"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:53 GMT'] + ETag: ['"0x8D4CB1A915B7B2A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:53 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ce6d4537-001a-0016-7509-fc954a000000] + x-ms-request-id: [fbd65159-001a-00a7-2b03-fd6d37000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,41 +26,41 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7aae640c-67fc-11e7-8277-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ac69e1f6-68f6-11e7-9dbe-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:52 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.file.core.windows.net/share3a5319f3?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:53 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [ce6d453a-001a-0016-7609-fc954a000000] + x-ms-request-id: [fbd6515c-001a-00a7-2c03-fd6d37000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7ab3b312-67fc-11e7-85ed-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ac6f37d2-68f6-11e7-af3c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:52 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/share3a5319f3?restype=share response: body: {string: "\uFEFFShareNotFoundThe\ - \ specified share does not exist.\nRequestId:ce6d453b-001a-0016-7709-fc954a000000\n\ - Time:2017-07-13T18:52:54.5204920Z"} + \ specified share does not exist.\nRequestId:fbd6515d-001a-00a7-2d03-fd6d37000000\n\ + Time:2017-07-15T00:43:53.5122938Z"} headers: Content-Length: ['217'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:53 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [ce6d453b-001a-0016-7709-fc954a000000] + x-ms-request-id: [fbd6515d-001a-00a7-2d03-fd6d37000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified share does not exist.} version: 1 diff --git a/tests/recordings/test_share.test_delete_share_with_non_existing_share.yaml b/tests/recordings/test_share.test_delete_share_with_non_existing_share.yaml index 0d56f4a7..f0c92977 100644 --- a/tests/recordings/test_share.test_delete_share_with_non_existing_share.yaml +++ b/tests/recordings/test_share.test_delete_share_with_non_existing_share.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7acf4c94-67fc-11e7-ac68-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ac89f5c2-68f6-11e7-a76b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:52 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.file.core.windows.net/share34c61566?restype=share response: body: {string: "\uFEFFShareNotFoundThe\ - \ specified share does not exist.\nRequestId:4882efc5-001a-00f9-4409-fc9e34000000\n\ - Time:2017-07-13T18:52:54.8587144Z"} + \ specified share does not exist.\nRequestId:19506b87-001a-000d-5b03-fdbbd8000000\n\ + Time:2017-07-15T00:43:53.5241603Z"} headers: Content-Length: ['217'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:52 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [4882efc5-001a-00f9-4409-fc9e34000000] + x-ms-request-id: [19506b87-001a-000d-5b03-fdbbd8000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified share does not exist.} version: 1 diff --git a/tests/recordings/test_share.test_delete_share_with_non_existing_share_fail_not_exist.yaml b/tests/recordings/test_share.test_delete_share_with_non_existing_share_fail_not_exist.yaml index 738bc4e4..71197849 100644 --- a/tests/recordings/test_share.test_delete_share_with_non_existing_share_fail_not_exist.yaml +++ b/tests/recordings/test_share.test_delete_share_with_non_existing_share_fail_not_exist.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7af8727a-67fc-11e7-9429-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [acb82386-68f6-11e7-8a23-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:52 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.file.core.windows.net/sharea6511b9d?restype=share response: body: {string: "\uFEFFShareNotFoundThe\ - \ specified share does not exist.\nRequestId:4eeb25ff-001a-0128-1409-fc653e000000\n\ - Time:2017-07-13T18:52:54.8319134Z"} + \ specified share does not exist.\nRequestId:c999eed5-001a-008c-3103-fd198f000000\n\ + Time:2017-07-15T00:43:52.6028114Z"} headers: Content-Length: ['217'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:52:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:52 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [4eeb25ff-001a-0128-1409-fc653e000000] + x-ms-request-id: [c999eed5-001a-008c-3103-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified share does not exist.} version: 1 diff --git a/tests/recordings/test_share.test_get_share_metadata.yaml b/tests/recordings/test_share.test_get_share_metadata.yaml index e0338ed5..048c7b14 100644 --- a/tests/recordings/test_share.test_get_share_metadata.yaml +++ b/tests/recordings/test_share.test_get_share_metadata.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7b21a734-67fc-11e7-94a6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ace9d08c-68f6-11e7-b768-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:53 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/sharef2fb0dd2?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:54 GMT'] - ETag: ['"0x8D4CA205F38B262"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:54 GMT'] + ETag: ['"0x8D4CB1A91FF9E50"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:54 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1fbe2480-001a-007a-5509-fc3e99000000] + x-ms-request-id: [21b288fd-001a-007f-7603-fdcae6000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7b36b636-67fc-11e7-b332-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [acfe2d98-68f6-11e7-bddc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:53 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -37,35 +37,35 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:54 GMT'] - ETag: ['"0x8D4CA205F38B263"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:54 GMT'] + ETag: ['"0x8D4CB1A91FF9E51"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:54 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [1fbe2483-001a-007a-5609-fc3e99000000] + x-ms-request-id: [21b28900-001a-007f-7703-fdcae6000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7b475f5e-67fc-11e7-92b6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ad367266-68f6-11e7-bb3c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:53 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/sharef2fb0dd2?restype=share&comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:54 GMT'] - ETag: ['"0x8D4CA205F38B263"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:54 GMT'] + ETag: ['"0x8D4CB1A91FF9E51"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:54 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [1fbe2485-001a-007a-5709-fc3e99000000] + x-ms-request-id: [21b28902-001a-007f-7803-fdcae6000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_get_share_properties.yaml b/tests/recordings/test_share.test_get_share_properties.yaml index cd4173d7..99a3c721 100644 --- a/tests/recordings/test_share.test_get_share_properties.yaml +++ b/tests/recordings/test_share.test_get_share_properties.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7b6c6d08-67fc-11e7-ad9e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ad598418-68f6-11e7-a460-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:53 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share11320ede?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:55 GMT'] - ETag: ['"0x8D4CA205FAF0CE8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:54 GMT'] + ETag: ['"0x8D4CB1A926557EB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:55 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [715381c9-001a-0135-5f09-fcbcd4000000] + x-ms-request-id: [ba6c7f24-001a-00ea-5e03-fdabd5000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7b83d15a-67fc-11e7-8231-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ad6dd012-68f6-11e7-a533-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:53 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -37,35 +37,35 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:55 GMT'] - ETag: ['"0x8D4CA205FAF0CE9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:54 GMT'] + ETag: ['"0x8D4CB1A926557EC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:55 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [715381cc-001a-0135-6009-fcbcd4000000] + x-ms-request-id: [ba6c7f27-001a-00ea-5f03-fdabd5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7b8927cc-67fc-11e7-a7c9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ad80e99a-68f6-11e7-93f8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:54 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/share11320ede?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:55 GMT'] - ETag: ['"0x8D4CA205FAF0CE9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:55 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:54 GMT'] + ETag: ['"0x8D4CB1A926557EC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:55 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] - x-ms-request-id: [715381cd-001a-0135-6109-fcbcd4000000] + x-ms-request-id: [ba6c7f28-001a-00ea-6003-fdabd5000000] x-ms-share-quota: ['5120'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_share.test_get_share_stats.yaml b/tests/recordings/test_share.test_get_share_stats.yaml index c195585b..78fa53dc 100644 --- a/tests/recordings/test_share.test_get_share_stats.yaml +++ b/tests/recordings/test_share.test_get_share_stats.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7ba56cc0-67fc-11e7-a5a3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:52:56 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ad9dab66-68f6-11e7-8792-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/sharecb110cc0?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:52:55 GMT'] - ETag: ['"0x8D4CA205FF0238F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:52:56 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:55 GMT'] + ETag: ['"0x8D4CB1A926561FC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:55 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dbb53d30-001a-0100-5609-fc1281000000] + x-ms-request-id: [91b130fb-001a-00dc-4a03-fd0687000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,10 +26,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [7bba4d28-67fc-11e7-94fa-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [adb249e2-68f6-11e7-8daa-b8e8564491f6] x-ms-content-length: ['11'] - x-ms-date: ['Thu, 13 Jul 2017 18:52:56 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:43:54 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -37,12 +37,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:02 GMT'] - ETag: ['"0x8D4CA2063F0E433"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:55 GMT'] + ETag: ['"0x8D4CB1A928D9917"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:55 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dbb53d33-001a-0100-5709-fc1281000000] + x-ms-request-id: [91b130fe-001a-00dc-4b03-fd0687000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -51,9 +51,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['11'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [80229246-67fc-11e7-8e9a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ae00cbec-68f6-11e7-8173-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:54 GMT'] x-ms-range: [bytes=0-10] x-ms-version: ['2017-04-17'] x-ms-write: [update] @@ -63,12 +63,12 @@ interactions: body: {string: ''} headers: Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==] - Date: ['Thu, 13 Jul 2017 18:53:02 GMT'] - ETag: ['"0x8D4CA206425926F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:55 GMT'] + ETag: ['"0x8D4CB1A929EB332"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:55 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dbb53d3c-001a-0100-5909-fc1281000000] + x-ms-request-id: [91b130ff-001a-00dc-4c03-fd0687000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -76,9 +76,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [802a3438-67fc-11e7-a746-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ae0dffe2-68f6-11e7-9f12-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:54 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/sharecb110cc0?restype=share&comp=stats @@ -86,10 +86,10 @@ interactions: body: {string: "\uFEFF1"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:55 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [dbb53d3d-001a-0100-5a09-fc1281000000] + x-ms-request-id: [91b13100-001a-00dc-4d03-fd0687000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_list_directories_and_files.yaml b/tests/recordings/test_share.test_list_directories_and_files.yaml index ac886490..366235bd 100644 --- a/tests/recordings/test_share.test_list_directories_and_files.yaml +++ b/tests/recordings/test_share.test_list_directories_and_files.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8046ed26-67fc-11e7-ac0a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:03 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ae2aa548-68f6-11e7-bab1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share72fe113c?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:03 GMT'] - ETag: ['"0x8D4CA20647E8B04"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:55 GMT'] + ETag: ['"0x8D4CB1A92EC4694"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:56 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [732454f2-001a-012f-2609-fc93bb000000] + x-ms-request-id: [d5cd37f6-001a-011f-3d03-fdc991000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,21 +26,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [805b471c-67fc-11e7-b38a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ae3e3914-68f6-11e7-b133-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share72fe113c/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:03 GMT'] - ETag: ['"0x8D4CA20645EAE54"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:55 GMT'] + ETag: ['"0x8D4CB1A92D58493"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:55 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [732454f5-001a-012f-2709-fc93bb000000] + x-ms-request-id: [d5cd37f9-001a-011f-3e03-fdc991000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -49,21 +49,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8063ee94-67fc-11e7-8f73-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ae44c4a8-68f6-11e7-b260-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share72fe113c/dir2?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:03 GMT'] - ETag: ['"0x8D4CA20646677EA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:55 GMT'] + ETag: ['"0x8D4CB1A92DB5200"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:55 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [732454f6-001a-012f-2809-fc93bb000000] + x-ms-request-id: [d5cd37fa-001a-011f-3f03-fdc991000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -72,10 +72,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [806996f0-67fc-11e7-a00d-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ae4a8282-68f6-11e7-913c-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:43:55 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -83,12 +83,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:03 GMT'] - ETag: ['"0x8D4CA20646C1E49"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:55 GMT'] + ETag: ['"0x8D4CB1A92E194BC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:55 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [732454f7-001a-012f-2909-fc93bb000000] + x-ms-request-id: [d5cd37fb-001a-011f-4003-fdc991000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -97,10 +97,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [807023b4-67fc-11e7-b1e5-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ae514358-68f6-11e7-9980-b8e8564491f6] x-ms-content-length: ['1025'] - x-ms-date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:43:55 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -108,12 +108,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:03 GMT'] - ETag: ['"0x8D4CA206472D645"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:55 GMT'] + ETag: ['"0x8D4CB1A92F6CE43"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:56 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [732454f8-001a-012f-2a09-fc93bb000000] + x-ms-request-id: [d5cd37fc-001a-011f-4103-fdc991000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -121,9 +121,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [80761fd8-67fc-11e7-ad71-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ae66703a-68f6-11e7-a04e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:55 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/share72fe113c?restype=directory&comp=list @@ -135,10 +135,10 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:55 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [732454fa-001a-012f-2b09-fc93bb000000] + x-ms-request-id: [d5cd37fd-001a-011f-4203-fdc991000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_list_directories_and_files_with_num_results.yaml b/tests/recordings/test_share.test_list_directories_and_files_with_num_results.yaml index e8b579d6..0f1fe48d 100644 --- a/tests/recordings/test_share.test_list_directories_and_files_with_num_results.yaml +++ b/tests/recordings/test_share.test_list_directories_and_files_with_num_results.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8092b1fa-67fc-11e7-bad5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ae85d648-68f6-11e7-8bf8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/shared84a1877?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:03 GMT'] - ETag: ['"0x8D4CA2064DB0F3E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] + ETag: ['"0x8D4CB1A935FFBAC"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:56 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78a434a-001a-0045-0809-fc8945000000] + x-ms-request-id: [c3c2bbe5-001a-00fe-4a03-fd68b1000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,21 +26,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [80a6f130-67fc-11e7-a6c9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ae9a33a4-68f6-11e7-aa67-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:55 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/shared84a1877/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:03 GMT'] - ETag: ['"0x8D4CA2064AA9255"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] + ETag: ['"0x8D4CB1A9331BF17"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:56 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78a434d-001a-0045-0909-fc8945000000] + x-ms-request-id: [c3c2bbe8-001a-00fe-4b03-fd68b1000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -49,10 +49,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [80ae17ee-67fc-11e7-bb49-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aea0c782-68f6-11e7-baae-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:43:55 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -60,12 +60,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:03 GMT'] - ETag: ['"0x8D4CA2064B0D521"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] + ETag: ['"0x8D4CB1A93376569"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:56 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78a434e-001a-0045-0a09-fc8945000000] + x-ms-request-id: [c3c2bbe9-001a-00fe-4c03-fd68b1000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -74,10 +74,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [80b6c40c-67fc-11e7-9dbe-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aea70662-68f6-11e7-9873-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:43:55 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -85,12 +85,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:03 GMT'] - ETag: ['"0x8D4CA2064B9893E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] + ETag: ['"0x8D4CB1A933DCF38"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:56 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78a434f-001a-0045-0b09-fc8945000000] + x-ms-request-id: [c3c2bbea-001a-00fe-4d03-fd68b1000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -99,10 +99,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [80bcf890-67fc-11e7-b416-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aead1208-68f6-11e7-8a95-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:43:55 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -110,12 +110,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:03 GMT'] - ETag: ['"0x8D4CA2064BFCBF5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] + ETag: ['"0x8D4CB1A9343EAD4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:56 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78a4350-001a-0045-0c09-fc8945000000] + x-ms-request-id: [c3c2bbeb-001a-00fe-4e03-fd68b1000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -124,10 +124,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [80c2efca-67fc-11e7-aa85-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aeb2eb9c-68f6-11e7-924e-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:43:56 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -135,12 +135,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:03 GMT'] - ETag: ['"0x8D4CA2064C5995D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] + ETag: ['"0x8D4CB1A93496A13"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:56 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78a4351-001a-0045-0d09-fc8945000000] + x-ms-request-id: [c3c2bbec-001a-00fe-4f03-fd68b1000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -148,9 +148,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [80c8dd86-67fc-11e7-b515-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aeb89a62-68f6-11e7-b509-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:56 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/shared84a1877?restype=directory&comp=list&maxresults=2 @@ -161,10 +161,10 @@ interactions: \ />filea110241!8!ZmlsZWEy"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f78a4352-001a-0045-0e09-fc8945000000] + x-ms-request-id: [c3c2bbed-001a-00fe-5003-fd68b1000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_list_directories_and_files_with_num_results_and_marker.yaml b/tests/recordings/test_share.test_list_directories_and_files_with_num_results_and_marker.yaml index ca70b2c2..4f118ce6 100644 --- a/tests/recordings/test_share.test_list_directories_and_files_with_num_results_and_marker.yaml +++ b/tests/recordings/test_share.test_list_directories_and_files_with_num_results_and_marker.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [80e6b78c-67fc-11e7-aa66-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aed81f7a-68f6-11e7-b3d8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:56 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/shareffa41cea?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] - ETag: ['"0x8D4CA206522CDFC"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] + ETag: ['"0x8D4CB1A939F95C6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8e446bbf-001a-0074-1709-fcd292000000] + x-ms-request-id: [ab0264ea-001a-00f0-0103-fd84ba000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,21 +26,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [80fbca98-67fc-11e7-a731-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aeecb9ee-68f6-11e7-aa73-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:56 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/shareffa41cea/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] - ETag: ['"0x8D4CA2064FF2A88"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] + ETag: ['"0x8D4CB1A93848218"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8e446bc2-001a-0074-1809-fcd292000000] + x-ms-request-id: [ab0264ed-001a-00f0-0203-fd84ba000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -49,10 +49,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [81025c34-67fc-11e7-b3bf-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aef38846-68f6-11e7-9893-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:53:05 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:43:56 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -60,12 +60,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] - ETag: ['"0x8D4CA2065056D3A"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] + ETag: ['"0x8D4CB1A938A013E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8e446bc3-001a-0074-1909-fcd292000000] + x-ms-request-id: [ab0264ee-001a-00f0-0303-fd84ba000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -74,10 +74,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [810a62ba-67fc-11e7-9813-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aefa151c-68f6-11e7-a18d-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:53:05 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:43:56 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -85,12 +85,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] - ETag: ['"0x8D4CA20650D0FC2"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] + ETag: ['"0x8D4CB1A9390B936"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8e446bc4-001a-0074-1a09-fcd292000000] + x-ms-request-id: [ab0264ef-001a-00f0-0403-fd84ba000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -99,10 +99,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [81113946-67fc-11e7-92bb-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [aeffbdbe-68f6-11e7-ba52-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:53:05 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:43:56 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -110,12 +110,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] - ETag: ['"0x8D4CA2065148B5D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] + ETag: ['"0x8D4CB1A93965FB4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8e446bc5-001a-0074-1b09-fcd292000000] + x-ms-request-id: [ab0264f0-001a-00f0-0503-fd84ba000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -124,10 +124,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [811817ca-67fc-11e7-ad64-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [af064bfa-68f6-11e7-9f83-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:53:05 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:43:56 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -135,12 +135,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] - ETag: ['"0x8D4CA20651B1C17"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] + ETag: ['"0x8D4CB1A939D3E9D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8e446bc6-001a-0074-1c09-fcd292000000] + x-ms-request-id: [ab0264f1-001a-00f0-0603-fd84ba000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -148,9 +148,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [811ea0f4-67fc-11e7-be65-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [af0c8128-68f6-11e7-aa92-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:56 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/shareffa41cea/dir1?restype=directory&comp=list&maxresults=2 @@ -160,19 +160,19 @@ interactions: shareffa41cea\" DirectoryPath=\"dir1\">2filea11024filea210241!8!ZmlsZWEz"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8e446bc7-001a-0074-1d09-fcd292000000] + x-ms-request-id: [ab0264f2-001a-00f0-0703-fd84ba000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [81256346-67fc-11e7-9a46-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [af14fa08-68f6-11e7-bd43-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:56 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/shareffa41cea/dir1?restype=directory&comp=list&marker=1%218%21ZmlsZWEz&maxresults=2 @@ -183,10 +183,10 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:56 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [8e446bc8-001a-0074-1e09-fcd292000000] + x-ms-request-id: [ab0264f3-001a-00f0-0803-fd84ba000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_list_directories_and_files_with_prefix.yaml b/tests/recordings/test_share.test_list_directories_and_files_with_prefix.yaml index bfd51044..3a61fff3 100644 --- a/tests/recordings/test_share.test_list_directories_and_files_with_prefix.yaml +++ b/tests/recordings/test_share.test_list_directories_and_files_with_prefix.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [81466ddc-67fc-11e7-a59b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [af34ad8a-68f6-11e7-8e37-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:56 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share625f1644?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] - ETag: ['"0x8D4CA20652D9C69"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:57 GMT'] + ETag: ['"0x8D4CB1A93AD33AF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f4b5d2a6-001a-00df-4609-fc0580000000] + x-ms-request-id: [19b9a5af-001a-00b4-3303-fd58d6000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,21 +26,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [815ba9b8-67fc-11e7-bcc0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [af4848d8-68f6-11e7-9e64-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:57 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share625f1644/dir1?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] - ETag: ['"0x8D4CA2065648EAD"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:57 GMT'] + ETag: ['"0x8D4CB1A93DFD1EF"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f4b5d2aa-001a-00df-4709-fc0580000000] + x-ms-request-id: [19b9a5b2-001a-00b4-3403-fd58d6000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -49,21 +49,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [81680294-67fc-11e7-98ef-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [af4f2336-68f6-11e7-a1e0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:57 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share625f1644/dir2?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] - ETag: ['"0x8D4CA20656AD160"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:57 GMT'] + ETag: ['"0x8D4CB1A93E7C2A5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f4b5d2ab-001a-00df-4809-fc0580000000] + x-ms-request-id: [19b9a5b3-001a-00b4-3503-fd58d6000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -72,10 +72,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8170d338-67fc-11e7-ab78-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [af5775a4-68f6-11e7-83e1-b8e8564491f6] x-ms-content-length: ['1024'] - x-ms-date: ['Thu, 13 Jul 2017 18:53:05 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:43:57 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -83,12 +83,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] - ETag: ['"0x8D4CA206573858E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:57 GMT'] + ETag: ['"0x8D4CB1A93EEC8C7"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f4b5d2ac-001a-00df-4909-fc0580000000] + x-ms-request-id: [19b9a5b4-001a-00b4-3603-fd58d6000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -97,21 +97,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8177a534-67fc-11e7-8516-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [af5f1548-68f6-11e7-8859-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:57 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share625f1644/dir1/pref_dir3?restype=directory response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] - ETag: ['"0x8D4CA20657A3D86"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:57 GMT'] + ETag: ['"0x8D4CB1A93FF468A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f4b5d2ad-001a-00df-4a09-fc0580000000] + x-ms-request-id: [19b9a5b5-001a-00b4-3703-fd58d6000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -120,10 +120,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [817d9e1a-67fc-11e7-9dfa-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [af6e61ba-68f6-11e7-bf3f-b8e8564491f6] x-ms-content-length: ['1025'] - x-ms-date: ['Thu, 13 Jul 2017 18:53:06 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:43:57 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -131,12 +131,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] - ETag: ['"0x8D4CA206580593B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:57 GMT'] + ETag: ['"0x8D4CB1A940513F4"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f4b5d2ae-001a-00df-4b09-fc0580000000] + x-ms-request-id: [19b9a5b6-001a-00b4-3803-fd58d6000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -145,10 +145,10 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8183da82-67fc-11e7-9c44-b8e8564491f6] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [af74b45c-68f6-11e7-a928-b8e8564491f6] x-ms-content-length: ['1025'] - x-ms-date: ['Thu, 13 Jul 2017 18:53:06 GMT'] + x-ms-date: ['Sat, 15 Jul 2017 00:43:57 GMT'] x-ms-type: [file] x-ms-version: ['2017-04-17'] method: PUT @@ -156,12 +156,12 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] - ETag: ['"0x8D4CA20658674C9"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:57 GMT'] + ETag: ['"0x8D4CB1A940B56AB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f4b5d2af-001a-00df-4c09-fc0580000000] + x-ms-request-id: [19b9a5b7-001a-00b4-3903-fd58d6000000] x-ms-request-server-encrypted: ['false'] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} @@ -169,9 +169,9 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [818c90b4-67fc-11e7-ae3c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [af7ab746-68f6-11e7-9e62-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:57 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/share625f1644/dir1?restype=directory&comp=list&prefix=pref @@ -183,10 +183,10 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f4b5d2b0-001a-00df-4d09-fc0580000000] + x-ms-request-id: [19b9a5b8-001a-00b4-3a03-fd58d6000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_list_shares_no_options.yaml b/tests/recordings/test_share.test_list_shares_no_options.yaml index 4175203c..460b385b 100644 --- a/tests/recordings/test_share.test_list_shares_no_options.yaml +++ b/tests/recordings/test_share.test_list_shares_no_options.yaml @@ -4,30 +4,30 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [81ab5b5c-67fc-11e7-a0af-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [af992a62-68f6-11e7-b3d7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:57 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share31600fc8?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:05 GMT'] - ETag: ['"0x8D4CA2065D4AE81"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:57 GMT'] + ETag: ['"0x8D4CB1A9436A7C1"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:58 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bf178110-001a-00e5-7d09-fc4623000000] + x-ms-request-id: [b19ef6bb-001a-00cf-6403-fd3366000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [81c05822-67fc-11e7-b063-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [afb173e2-68f6-11e7-9adc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:57 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/?comp=list @@ -65,8 +65,8 @@ interactions: \ 15 May 2017 01:34:19 GMT\"0x8D49B3282045572\"5120share12db777207144360bbf1b961b84fc9b9Mon,\ \ 15 May 2017 01:31:21 GMT\"0x8D49B32177151CA\"5120share1768af94347d4510a12a00d8adbdfbe8Mon,\ \ 15 May 2017 01:31:14 GMT\"0x8D49B3213C224E2\"5120share2c4b5a7c1a46472b9b80aecb74bf1135Mon,\ - \ 15 May 2017 01:24:00 GMT\"0x8D49B3110DB9E74\"5120share31600fc8Thu,\ - \ 13 Jul 2017 18:53:06 GMT\"0x8D4CA2065D4AE81\"5120share3742b7a7e0fe411b92ab35a844851b07Mon,\ + \ 15 May 2017 01:24:00 GMT\"0x8D49B3110DB9E74\"5120share31600fc8Sat,\ + \ 15 Jul 2017 00:43:58 GMT\"0x8D4CB1A9436A7C1\"5120share3742b7a7e0fe411b92ab35a844851b07Mon,\ \ 15 May 2017 01:31:19 GMT\"0x8D49B3216AB6B67\"5120share38edba305c404585a6df9983752665e1Mon,\ \ 15 May 2017 01:31:21 GMT\"0x8D49B3217F392B2\"5120share47e7ba76e2094d2a82441617e95ba341Mon,\ \ 15 May 2017 01:31:23 GMT\"0x8D49B3218B2E82D\"5120share54e2e23c11bb462383f4d62dddfd5637Mon,\ @@ -130,7 +130,8 @@ interactions: \ 12 Jul 2017 17:23:09 GMT\"0x8D4C94AAAABF7FF\"5120testc1dfc0ce8a000450a99dfa260b9b54b03Tue,\ \ 26 Jul 2016 18:00:48 GMT\"0x8D3B57EC5F1F665\"5120testc1e57ac8eb725432d8e4f91450ef621f1Fri,\ \ 28 Apr 2017 01:54:24 GMT\"0x8D48DD97EFCC3E0\"5120testc1eee240b1dd1416aab46c946248fcb1fTue,\ - \ 26 Jul 2016 18:50:41 GMT\"0x8D3B585BDF1BBEE\"5120testc1fdff5bd007a48c4aece4ad1d2a83a46Tue,\ + \ 26 Jul 2016 18:50:41 GMT\"0x8D3B585BDF1BBEE\"5120testc1f1ffe75668b4592af48ab7c07726a47Thu,\ + \ 13 Jul 2017 19:58:58 GMT\"0x8D4CA29998BDAA3\"5120testc1fdff5bd007a48c4aece4ad1d2a83a46Tue,\ \ 06 Jun 2017 17:48:29 GMT\"0x8D4AD043DC1F305\"5120testc204a70a4268b4a4a9ef74a73c3544f5aMon,\ \ 25 Jul 2016 20:42:12 GMT\"0x8D3B4CC27F235B7\"5120testc20dc8889e15249669be4301ea15ffc6bThu,\ \ 23 Feb 2017 00:00:44 GMT\"0x8D45B7F03565C78\"5120testc221c2219c22141a1ac2baf70633256daFri,\ @@ -187,7 +188,8 @@ interactions: \ 25 Jul 2016 20:25:36 GMT\"0x8D3B4C9D65756D2\"5120testc4b3f89670f92471da998823eb08658dfMon,\ \ 19 Jun 2017 22:46:32 GMT\"0x8D4B7650867B048\"5120testc4c7b4a4e0d054ed092bfb93e62ef1fe3Mon,\ \ 19 Jun 2017 22:46:32 GMT\"0x8D4B765086A01B3\"5120testc4d2b9ee78a2b41bdb96e60e18fb8d2b6Mon,\ - \ 25 Jul 2016 21:41:05 GMT\"0x8D3B4D461C6437B\"5120testc4fb551eefc4f4649b8a6007cf1139f0eTue,\ + \ 25 Jul 2016 21:41:05 GMT\"0x8D3B4D461C6437B\"5120testc4faa552924804aa993670f20136a32f0Thu,\ + \ 13 Jul 2017 19:58:33 GMT\"0x8D4CA298A790F4A\"5120testc4fb551eefc4f4649b8a6007cf1139f0eTue,\ \ 14 Feb 2017 19:02:18 GMT\"0x8D4550BFF46605C\"5120testc4ff462c9624f4720bc57ea6b9828d275Fri,\ \ 28 Apr 2017 01:54:23 GMT\"0x8D48DD97E86006F\"5120testc505fbc39b49f4f468e5603fa843c9a4eMon,\ \ 25 Jul 2016 21:37:28 GMT\"0x8D3B4D3E01FE034\"5120testc5133183789e845318bd6fdcd811d8a25Thu,\ @@ -217,7 +219,8 @@ interactions: \ 25 Jul 2016 20:42:10 GMT\"0x8D3B4CC26681852\"5120testc6749603298514ac7bd89861804a451b8Fri,\ \ 28 Apr 2017 18:44:53 GMT\"0x8D48E66A887B54B\"5120testc6846beb87a074814bc68587b1f806f5cTue,\ \ 26 Jul 2016 17:57:53 GMT\"0x8D3B57E5DFEAF29\"5120testc6870a23c9616465b84428949102de680Fri,\ - \ 16 Jun 2017 23:52:55 GMT\"0x8D4B512CEECFF5E\"5120testc69d88b02f03a42de8ed12eeec3802663Wed,\ + \ 16 Jun 2017 23:52:55 GMT\"0x8D4B512CEECFF5E\"5120testc68c7ebc488ed4902a04d1284b07f38c7Thu,\ + \ 13 Jul 2017 19:58:27 GMT\"0x8D4CA298716F0B6\"5120testc69d88b02f03a42de8ed12eeec3802663Wed,\ \ 12 Jul 2017 04:00:50 GMT\"0x8D4C8DA9577046C\"5120testc69df5c6eac2148fbab34bfb771a24f01Mon,\ \ 20 Mar 2017 18:04:39 GMT\"0x8D46FBB9414240A\"5120testc6a208ca048804ffe92bfa26bced2d4bcTue,\ \ 26 Jul 2016 18:50:23 GMT\"0x8D3B585B3305E80\"5120testc6c9bafbaf9c946b7b0cca2e30023c1e2Mon,\ @@ -279,7 +282,8 @@ interactions: \ 06 Apr 2017 23:18:59 GMT\"0x8D47D434E554B44\"5120testca0206723fc624c21b37d6f35af645367Mon,\ \ 25 Jul 2016 20:25:37 GMT\"0x8D3B4C9D6B35EE1\"5120testca0ed5e83f5f048c4a536a0ee0e8a83f3Wed,\ \ 12 Jul 2017 03:59:48 GMT\"0x8D4C8DA70B7DD4B\"5120testca2105e2f0765410787a6a23bd201aa47Fri,\ - \ 28 Apr 2017 18:44:53 GMT\"0x8D48E66A87477F3\"5120testca366029adaf246e9a99cb8867144a048Mon,\ + \ 28 Apr 2017 18:44:53 GMT\"0x8D48E66A87477F3\"5120testca2d710f93dda4988941c2b08dde7ba16Thu,\ + \ 13 Jul 2017 19:58:49 GMT\"0x8D4CA29941F3B52\"5120testca366029adaf246e9a99cb8867144a048Mon,\ \ 25 Jul 2016 21:41:07 GMT\"0x8D3B4D462D32F2D\"5120testca6f9c03f69c545b4bc8f1c3450a3e3c8Thu,\ \ 04 Aug 2016 09:25:31 GMT\"0x8D3BC4947D768F3\"5120testca886b9b8b5e945f5828d113290e05460Fri,\ \ 28 Apr 2017 18:38:51 GMT\"0x8D48E65D0E26A21\"5120testcaa81ce8f81e14f09890c67f003254803Wed,\ @@ -296,7 +300,8 @@ interactions: \ 28 Apr 2017 18:44:53 GMT\"0x8D48E66A8E3EFA9\"5120testcb368b89f377a444195e925c586fccd86Wed,\ \ 12 Jul 2017 04:00:03 GMT\"0x8D4C8DA79788884\"5120testcb3b3db08627d42cfb610de09ebb3587cMon,\ \ 19 Jun 2017 20:44:22 GMT\"0x8D4B753F757B571\"5120testcb3efefc5c5514cc897fdbc111a8b942dThu,\ - \ 13 Jul 2017 17:30:12 GMT\"0x8D4CA14D0FD1177\"5120testcb53ef277fb234ab897b6cbe682022efeThu,\ + \ 13 Jul 2017 17:30:12 GMT\"0x8D4CA14D0FD1177\"5120testcb464bd22ab6a448497d8a97fb25342bcThu,\ + \ 13 Jul 2017 19:58:48 GMT\"0x8D4CA2993AF4E6A\"5120testcb53ef277fb234ab897b6cbe682022efeThu,\ \ 15 Jun 2017 23:23:17 GMT\"0x8D4B44580EB8047\"5120testcb54790baeea04e479b33942c9557d44cWed,\ \ 12 Jul 2017 04:00:04 GMT\"0x8D4C8DA7A6E1217\"5120testcb5f13d323d774b6aa1260c78b1d6d683Mon,\ \ 25 Jul 2016 20:25:37 GMT\"0x8D3B4C9D6BBC4D4\"5120testcb7c361abcc324dc7ac0846510e82e8dbThu,\ @@ -353,14 +358,16 @@ interactions: \ 13 Jul 2017 17:30:17 GMT\"0x8D4CA14D44C8CFE\"5120testce9730f35a5be48fe9912ea299324f00bFri,\ \ 28 Apr 2017 18:44:52 GMT\"0x8D48E66A80BDF4C\"5120testcead65fcca08e4d1db278320a6c72622cFri,\ \ 28 Apr 2017 18:38:48 GMT\"0x8D48E65CF407C27\"5120testcede334b9c10648428ce0103798fa7b80Tue,\ - \ 14 Feb 2017 20:46:46 GMT\"0x8D4551A973373D8\"5120testcee2aebe77c58406a97195f2ee5d2df86Wed,\ + \ 14 Feb 2017 20:46:46 GMT\"0x8D4551A973373D8\"5120testcee027fb15a3e480bbced9f4d9ee1284bThu,\ + \ 13 Jul 2017 19:58:25 GMT\"0x8D4CA2985B11286\"5120testcee2aebe77c58406a97195f2ee5d2df86Wed,\ \ 12 Jul 2017 03:59:48 GMT\"0x8D4C8DA70DFB7BC\"5120testceefd542e37554c9682ace037481c68c5Fri,\ \ 28 Apr 2017 18:44:53 GMT\"0x8D48E66A87E169F\"5120testcf14c8bc4ad6a472997e73166ee923bdbFri,\ \ 28 Apr 2017 18:38:50 GMT\"0x8D48E65D0767552\"5120testcf462d001ea5440f696680df0243b610aMon,\ \ 19 Jun 2017 22:46:16 GMT\"0x8D4B764FECCCD2B\"5120testcf4f34e7434b54e0f9910841b837fd4a2Thu,\ \ 06 Apr 2017 23:19:00 GMT\"0x8D47D434ED9A5F4\"5120testcf51ee1ee51254c039be662d435632a1bFri,\ \ 28 Apr 2017 01:54:24 GMT\"0x8D48DD97EC70816\"5120testcf67c897c7ef94395bb0133674aba07edThu,\ - \ 13 Jul 2017 17:30:13 GMT\"0x8D4CA14D19CA3A5\"5120testcf6a78e2c69734578b5ae7d36508bb15dMon,\ + \ 13 Jul 2017 17:30:13 GMT\"0x8D4CA14D19CA3A5\"5120testcf69ca98b4c594b17a4d22faefa99c49eThu,\ + \ 13 Jul 2017 19:58:45 GMT\"0x8D4CA299213C261\"5120testcf6a78e2c69734578b5ae7d36508bb15dMon,\ \ 25 Jul 2016 20:55:46 GMT\"0x8D3B4CE0D24963B\"5120testcf789012764224629941f728afe87f77eThu,\ \ 06 Apr 2017 23:19:18 GMT\"0x8D47D4359D1C96A\"5120testcf7d425a733174464951151e1530ac849Tue,\ \ 26 Jul 2016 18:50:38 GMT\"0x8D3B585BC90920F\"5120testcf8773ded164a4e21bb12f40b3c806897Mon,\ @@ -368,17 +375,18 @@ interactions: \ 22 Dec 2016 03:54:04 GMT\"0x8D42A1E2C514E5C\"5120testcfb434c246ab244eca9701a597dd955a4Mon,\ \ 25 Jul 2016 21:37:42 GMT\"0x8D3B4D3E8797D08\"5120testcfd4df8117d414fb1b60cf718bb8e2b37Thu,\ \ 13 Jul 2017 17:30:12 GMT\"0x8D4CA14D1769DF3\"5120testcfda5c15358f5444cb6b45a1ab95d1eeeFri,\ - \ 28 Apr 2017 18:38:50 GMT\"0x8D48E65D088A10E\"5120testcfe7c0009fc4b484a86016166af50f511Tue,\ + \ 28 Apr 2017 18:38:50 GMT\"0x8D48E65D088A10E\"5120testcfe13d6db17b74e579376a3efd8da70ffThu,\ + \ 13 Jul 2017 19:58:27 GMT\"0x8D4CA2986F93095\"5120testcfe7c0009fc4b484a86016166af50f511Tue,\ \ 26 Jul 2016 17:57:53 GMT\"0x8D3B57E5DBFC5F7\"5120testcfed2eb21b2ed40d2bbac70050f65d6b4Tue,\ \ 26 Jul 2016 17:57:59 GMT\"0x8D3B57E61ADE3CF\"5120testcff9d245219a04d99b09d4fa32b5de288Thu,\ \ 06 Apr 2017 23:19:13 GMT\"0x8D47D43566B3E79\"5120"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:57 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [bf178113-001a-00e5-7e09-fc4623000000] + x-ms-request-id: [b19ef6be-001a-00cf-6503-fd3366000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_list_shares_with_include_metadata.yaml b/tests/recordings/test_share.test_list_shares_with_include_metadata.yaml index c1a82273..2b66be97 100644 --- a/tests/recordings/test_share.test_list_shares_with_include_metadata.yaml +++ b/tests/recordings/test_share.test_list_shares_with_include_metadata.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8220c858-67fc-11e7-a3c3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b000c034-68f6-11e7-8cf7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/sharef877141f?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:06 GMT'] - ETag: ['"0x8D4CA206667B013"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:59 GMT'] + ETag: ['"0x8D4CB1A952C8E05"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:59 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [2e02c5b2-001a-00ab-6509-fc83c6000000] + x-ms-request-id: [86d5fbd8-001a-000e-7003-fdb8df000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8234e476-67fc-11e7-82ba-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b0158170-68f6-11e7-b688-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:58 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['42'] x-ms-version: ['2017-04-17'] @@ -37,35 +37,35 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:06 GMT'] - ETag: ['"0x8D4CA206667B014"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:59 GMT'] + ETag: ['"0x8D4CB1A952C8E06"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:59 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [2e02c5b5-001a-00ab-6609-fc83c6000000] + x-ms-request-id: [86d5fbdb-001a-000e-7103-fdb8df000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [82441e98-67fc-11e7-b3f1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b020bfb8-68f6-11e7-ac3a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:58 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/?comp=list&prefix=sharef877141f&include=metadata response: body: {string: "\uFEFFsharef877141fsharef877141fThu,\ - \ 13 Jul 2017 18:53:07 GMT\"0x8D4CA206667B014\"5120world42sharef877141fsharef877141fSat,\ + \ 15 Jul 2017 00:43:59 GMT\"0x8D4CB1A952C8E06\"5120world42"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:59 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [2e02c5b6-001a-00ab-6709-fc83c6000000] + x-ms-request-id: [86d5fbdc-001a-000e-7203-fdb8df000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_list_shares_with_num_results_and_marker.yaml b/tests/recordings/test_share.test_list_shares_with_num_results_and_marker.yaml index a4140208..030ec4b9 100644 --- a/tests/recordings/test_share.test_list_shares_with_num_results_and_marker.yaml +++ b/tests/recordings/test_share.test_list_shares_with_num_results_and_marker.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [82606650-67fc-11e7-8edb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b03c6dda-68f6-11e7-a34e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/listshare07d2b16cf?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:07 GMT'] - ETag: ['"0x8D4CA20669397EA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:58 GMT'] + ETag: ['"0x8D4CB1A94F7AC7A"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:59 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [eee826a5-001a-0116-3709-fcd31f000000] + x-ms-request-id: [e899c2cb-001a-0001-1b03-fd5529000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,21 +26,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8273c29a-67fc-11e7-9aa7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b0515af6-68f6-11e7-9188-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/listshare17d2b16cf?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:07 GMT'] - ETag: ['"0x8D4CA206698F011"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:58 GMT'] + ETag: ['"0x8D4CB1A94FDA0FB"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:59 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [eee826a8-001a-0116-3809-fcd31f000000] + x-ms-request-id: [e899c2ce-001a-0001-1c03-fd5529000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -48,21 +48,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [827922a8-67fc-11e7-8599-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b0579ac6-68f6-11e7-b3ad-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/listshare27d2b16cf?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:07 GMT'] - ETag: ['"0x8D4CA20669E6F4B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:58 GMT'] + ETag: ['"0x8D4CB1A95040AC6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:59 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [eee826aa-001a-0116-3909-fcd31f000000] + x-ms-request-id: [e899c2d0-001a-0001-1d03-fd5529000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -70,68 +70,68 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [827e8d7e-67fc-11e7-9154-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b05dd2a4-68f6-11e7-a545-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:58 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/listshare37d2b16cf?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:07 GMT'] - ETag: ['"0x8D4CA2066A43CB7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:58 GMT'] + ETag: ['"0x8D4CB1A9509D834"'] + Last-Modified: ['Sat, 15 Jul 2017 00:43:59 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [eee826ac-001a-0116-3a09-fcd31f000000] + x-ms-request-id: [e899c2d2-001a-0001-1e03-fd5529000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [828476da-67fc-11e7-90ad-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b06386e2-68f6-11e7-8d03-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:58 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/?comp=list&prefix=listshare&maxresults=2 response: body: {string: "\uFEFFlistshare2listshare07d2b16cfThu,\ - \ 13 Jul 2017 18:53:07 GMT\"0x8D4CA20669397EA\"5120listshare17d2b16cfThu,\ - \ 13 Jul 2017 18:53:07 GMT\"0x8D4CA206698F011\"5120/storagename/listshare27d2b16cf"} + \ ServiceEndpoint=\"https://storagename.file.core.windows.net/\">listshare2listshare07d2b16cfSat,\ + \ 15 Jul 2017 00:43:59 GMT\"0x8D4CB1A94F7AC7A\"5120listshare17d2b16cfSat,\ + \ 15 Jul 2017 00:43:59 GMT\"0x8D4CB1A94FDA0FB\"5120/storagename/listshare27d2b16cf"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:59 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [eee826ae-001a-0116-3b09-fcd31f000000] + x-ms-request-id: [e899c2d4-001a-0001-1f03-fd5529000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [828a2f8a-67fc-11e7-8eb8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b069ba9c-68f6-11e7-abe7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:58 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/?comp=list&prefix=listshare&marker=%2Fstoragename%2Flistshare27d2b16cf&maxresults=2 response: body: {string: "\uFEFFlistshare/storagename/listshare27d2b16cf2listshare27d2b16cfThu,\ - \ 13 Jul 2017 18:53:07 GMT\"0x8D4CA20669E6F4B\"5120listshare37d2b16cfThu,\ - \ 13 Jul 2017 18:53:07 GMT\"0x8D4CA2066A43CB7\"5120listshare/storagename/listshare27d2b16cf2listshare27d2b16cfSat,\ + \ 15 Jul 2017 00:43:59 GMT\"0x8D4CB1A95040AC6\"5120listshare37d2b16cfSat,\ + \ 15 Jul 2017 00:43:59 GMT\"0x8D4CB1A9509D834\"5120"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:59 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [eee826af-001a-0116-3c09-fcd31f000000] + x-ms-request-id: [e899c2d5-001a-0001-2003-fd5529000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_list_shares_with_prefix.yaml b/tests/recordings/test_share.test_list_shares_with_prefix.yaml index 1f86d7f6..bbf77181 100644 --- a/tests/recordings/test_share.test_list_shares_with_prefix.yaml +++ b/tests/recordings/test_share.test_list_shares_with_prefix.yaml @@ -4,44 +4,44 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [82b40e90-67fc-11e7-a42b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b09dbfcc-68f6-11e7-9dee-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share41961029?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:06 GMT'] - ETag: ['"0x8D4CA2066BA89B7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:07 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:00 GMT'] + ETag: ['"0x8D4CB1A95C2A006"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:00 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5d3736e6-001a-00e1-5b09-fcb3a1000000] + x-ms-request-id: [7f2c0712-001a-0133-5403-fd4bac000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [82c8af30-67fc-11e7-b97e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b0b5160c-68f6-11e7-b06f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:59 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/?comp=list&prefix=share41961029 response: body: {string: "\uFEFFshare41961029share41961029Thu,\ - \ 13 Jul 2017 18:53:07 GMT\"0x8D4CA2066BA89B7\"5120share41961029share41961029Sat,\ + \ 15 Jul 2017 00:44:00 GMT\"0x8D4CB1A95C2A006\"5120"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:00 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [5d3736e9-001a-00e1-5c09-fcb3a1000000] + x-ms-request-id: [7f2c0715-001a-0133-5503-fd4bac000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_set_share_acl.yaml b/tests/recordings/test_share.test_set_share_acl.yaml index 57d9f26a..e4302911 100644 --- a/tests/recordings/test_share.test_set_share_acl.yaml +++ b/tests/recordings/test_share.test_set_share_acl.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [82e231d0-67fc-11e7-98ef-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b0d35aec-68f6-11e7-bf56-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/shareb2530bcd?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:07 GMT'] - ETag: ['"0x8D4CA2066E3A85F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:00 GMT'] + ETag: ['"0x8D4CB1A95DAF4B5"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:00 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cea11c01-001a-0083-5209-fcf479000000] + x-ms-request-id: [fa981684-001a-00d6-2103-fd1f0e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,30 +26,30 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [82f8ac08-67fc-11e7-b24a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b0e934f4-68f6-11e7-b7c5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/shareb2530bcd?restype=share&comp=acl response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:07 GMT'] - ETag: ['"0x8D4CA2066E3A860"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:00 GMT'] + ETag: ['"0x8D4CB1A95DAF4B6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:00 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cea11c04-001a-0083-5309-fcf479000000] + x-ms-request-id: [fa981687-001a-00d6-2203-fd1f0e000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [82ff7be6-67fc-11e7-9e86-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b0ee8dd0-68f6-11e7-abed-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:59 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/shareb2530bcd?restype=share&comp=acl @@ -58,12 +58,12 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:07 GMT'] - ETag: ['"0x8D4CA2066E3A860"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:00 GMT'] + ETag: ['"0x8D4CB1A95DAF4B6"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:00 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [cea11c05-001a-0083-5409-fcf479000000] + x-ms-request-id: [fa981688-001a-00d6-2303-fd1f0e000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_set_share_acl_too_many_ids.yaml b/tests/recordings/test_share.test_set_share_acl_too_many_ids.yaml index 4d240971..b0428627 100644 --- a/tests/recordings/test_share.test_set_share_acl_too_many_ids.yaml +++ b/tests/recordings/test_share.test_set_share_acl_too_many_ids.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8319e618-67fc-11e7-97eb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b1093d1a-68f6-11e7-9101-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:43:59 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share71721131?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:08 GMT'] - ETag: ['"0x8D4CA20673D731B"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:43:59 GMT'] + ETag: ['"0x8D4CB1A95B60266"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:00 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [e43c43cb-001a-0012-4d09-fc60c8000000] + x-ms-request-id: [8e18a2d5-001a-005e-0803-fda7d7000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} version: 1 diff --git a/tests/recordings/test_share.test_set_share_acl_with_empty_signed_identifier.yaml b/tests/recordings/test_share.test_set_share_acl_with_empty_signed_identifier.yaml index 4861d728..27e4d39f 100644 --- a/tests/recordings/test_share.test_set_share_acl_with_empty_signed_identifier.yaml +++ b/tests/recordings/test_share.test_set_share_acl_with_empty_signed_identifier.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8343fd98-67fc-11e7-9273-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:08 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b133bcca-68f6-11e7-9c05-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/sharebd7817d1?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:08 GMT'] - ETag: ['"0x8D4CA206760F07D"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:00 GMT'] + ETag: ['"0x8D4CB1A95DBA912"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:00 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fe91d780-001a-007d-0509-fcc81c000000] + x-ms-request-id: [c84f2087-001a-00dd-7803-fd077a000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -28,30 +28,30 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['145'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [83583db4-67fc-11e7-a6ab-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b148bbf4-68f6-11e7-ab41-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/sharebd7817d1?restype=share&comp=acl response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:08 GMT'] - ETag: ['"0x8D4CA206760F07E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:00 GMT'] + ETag: ['"0x8D4CB1A95E02F9F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:01 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fe91d783-001a-007d-0609-fcc81c000000] + x-ms-request-id: [c84f208a-001a-00dd-7903-fd077a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [835e1da4-67fc-11e7-87e5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b14e4d1a-68f6-11e7-afe8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:00 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/sharebd7817d1?restype=share&comp=acl @@ -59,12 +59,12 @@ interactions: body: {string: "\uFEFFempty"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:08 GMT'] - ETag: ['"0x8D4CA206760F07E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:00 GMT'] + ETag: ['"0x8D4CB1A95E02F9F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:01 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fe91d784-001a-007d-0709-fcc81c000000] + x-ms-request-id: [c84f208b-001a-00dd-7a03-fd077a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_set_share_acl_with_empty_signed_identifiers.yaml b/tests/recordings/test_share.test_set_share_acl_with_empty_signed_identifiers.yaml index 8365dc5d..75170fbf 100644 --- a/tests/recordings/test_share.test_set_share_acl_with_empty_signed_identifiers.yaml +++ b/tests/recordings/test_share.test_set_share_acl_with_empty_signed_identifiers.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8378a246-67fc-11e7-9fc7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b168cdca-68f6-11e7-ab6f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/shared5bc1844?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:08 GMT'] - ETag: ['"0x8D4CA20679E41AA"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:01 GMT'] + ETag: ['"0x8D4CB1A96307A8D"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:01 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6705fe54-001a-005c-6809-fca52d000000] + x-ms-request-id: [0f23ec57-001a-0080-2303-fdf77e000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -28,30 +28,30 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['60'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [838ce094-67fc-11e7-960f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b17d7edc-68f6-11e7-9a55-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/shared5bc1844?restype=share&comp=acl response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:08 GMT'] - ETag: ['"0x8D4CA20679E41AB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:01 GMT'] + ETag: ['"0x8D4CB1A96307A8E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:01 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6705fe57-001a-005c-6909-fca52d000000] + x-ms-request-id: [0f23ec5a-001a-0080-2403-fdf77e000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [83924e08-67fc-11e7-9263-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b1849d1e-68f6-11e7-8efc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:00 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/shared5bc1844?restype=share&comp=acl @@ -60,12 +60,12 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:08 GMT'] - ETag: ['"0x8D4CA20679E41AB"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:01 GMT'] + ETag: ['"0x8D4CB1A96307A8E"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:01 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [6705fe58-001a-005c-6a09-fca52d000000] + x-ms-request-id: [0f23ec5b-001a-0080-2503-fdf77e000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_set_share_acl_with_signed_identifiers.yaml b/tests/recordings/test_share.test_set_share_acl_with_signed_identifiers.yaml index b6dc7c9c..f201d8e6 100644 --- a/tests/recordings/test_share.test_set_share_acl_with_signed_identifiers.yaml +++ b/tests/recordings/test_share.test_set_share_acl_with_signed_identifiers.yaml @@ -4,67 +4,67 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [83ade51e-67fc-11e7-9a0c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b19f44b8-68f6-11e7-9421-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share492a15b6?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:08 GMT'] - ETag: ['"0x8D4CA2067D7F7D1"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:00 GMT'] + ETag: ['"0x8D4CB1A96381E0B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:01 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d5150970-001a-0076-2209-fcd068000000] + x-ms-request-id: [1e6ef9d5-001a-004a-1f03-fd64b3000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: ' - testid2017-07-13T18:52:09Z2017-07-13T19:53:09Zr' + testid2017-07-15T00:43:01Z2017-07-15T01:44:01Zr' headers: Connection: [keep-alive] Content-Length: ['257'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [83c13ff6-67fc-11e7-ba0d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b1b495fa-68f6-11e7-84d4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:01 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share492a15b6?restype=share&comp=acl response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:09 GMT'] - ETag: ['"0x8D4CA2067DC1AC6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:01 GMT'] + ETag: ['"0x8D4CB1A9670A217"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:01 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d5150973-001a-0076-2309-fcd068000000] + x-ms-request-id: [1e6ef9d8-001a-004a-2003-fd64b3000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [840ebb6e-67fc-11e7-9c62-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b1e9a1fa-68f6-11e7-baf9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:01 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/share492a15b6?restype=share&comp=acl response: - body: {string: "\uFEFFtestid2017-07-13T18:52:09.0000000Z2017-07-13T19:53:09.0000000Zr"} + body: {string: "\uFEFFtestid2017-07-15T00:43:01.0000000Z2017-07-15T01:44:01.0000000Zr"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:09 GMT'] - ETag: ['"0x8D4CA2067DC1AC6"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:01 GMT'] + ETag: ['"0x8D4CB1A9670A217"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:01 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [d5150974-001a-0076-2409-fcd068000000] + x-ms-request-id: [1e6ef9d9-001a-004a-2103-fd64b3000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_set_share_metadata.yaml b/tests/recordings/test_share.test_set_share_metadata.yaml index 4d51c63c..56c87dfe 100644 --- a/tests/recordings/test_share.test_set_share_metadata.yaml +++ b/tests/recordings/test_share.test_set_share_metadata.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [84304f68-67fc-11e7-87db-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b2070a26-68f6-11e7-ba14-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:01 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/sharef3d30dde?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:09 GMT'] - ETag: ['"0x8D4CA206823D68E"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:02 GMT'] + ETag: ['"0x8D4CB1A96D34D04"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:02 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fa598a12-001a-012a-2709-fc67c4000000] + x-ms-request-id: [05e22dc0-001a-00f1-4e03-fd8547000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [844494b4-67fc-11e7-be24-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b21c2c6c-68f6-11e7-ad89-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:01 GMT'] x-ms-meta-hello: [world] x-ms-meta-number: ['43'] x-ms-version: ['2017-04-17'] @@ -37,35 +37,35 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:09 GMT'] - ETag: ['"0x8D4CA206823D68F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:02 GMT'] + ETag: ['"0x8D4CB1A970C130B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:02 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [fa598a16-001a-012a-2809-fc67c4000000] + x-ms-request-id: [05e22dc3-001a-00f1-4f03-fd8547000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [84536318-67fc-11e7-aef0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b27a2b78-68f6-11e7-a14a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:02 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/sharef3d30dde?restype=share&comp=metadata response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:09 GMT'] - ETag: ['"0x8D4CA206823D68F"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:02 GMT'] + ETag: ['"0x8D4CB1A970C130B"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:02 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] x-ms-meta-hello: [world] x-ms-meta-number: ['43'] - x-ms-request-id: [fa598a17-001a-012a-2909-fc67c4000000] + x-ms-request-id: [05e22dc4-001a-00f1-5003-fd8547000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_share.test_set_share_properties.yaml b/tests/recordings/test_share.test_set_share_properties.yaml index c94a0002..ad2e70b4 100644 --- a/tests/recordings/test_share.test_set_share_properties.yaml +++ b/tests/recordings/test_share.test_set_share_properties.yaml @@ -4,21 +4,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [84789b06-67fc-11e7-8d77-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b2a251a2-68f6-11e7-a277-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:02 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/share12220eea?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:10 GMT'] - ETag: ['"0x8D4CA2068D2E7E7"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:02 GMT'] + ETag: ['"0x8D4CB1A9730C03F"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:03 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f90f7293-001a-0055-0a09-fcbfa3000000] + x-ms-request-id: [fb8fc0ed-001a-00bc-4703-fd43a5000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: @@ -26,9 +26,9 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [848ddb4c-67fc-11e7-bd68-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b2b69090-68f6-11e7-9515-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:02 GMT'] x-ms-share-quota: ['1'] x-ms-version: ['2017-04-17'] method: PUT @@ -36,33 +36,33 @@ interactions: response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:10 GMT'] - ETag: ['"0x8D4CA2068D2E7E8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:02 GMT'] + ETag: ['"0x8D4CB1A975053F9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:03 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f90f7296-001a-0055-0b09-fcbfa3000000] + x-ms-request-id: [fb8fc0f0-001a-00bc-4803-fd43a5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8497f886-67fc-11e7-bbe6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b2beb482-68f6-11e7-a669-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:02 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/share12220eea?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:10 GMT'] - ETag: ['"0x8D4CA2068D2E7E8"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:02 GMT'] + ETag: ['"0x8D4CB1A975053F9"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:03 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f90f7297-001a-0055-0c09-fcbfa3000000] + x-ms-request-id: [fb8fc0f1-001a-00bc-4903-fd43a5000000] x-ms-share-quota: ['1'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_share.test_share_exists.yaml b/tests/recordings/test_share.test_share_exists.yaml index cb4a98db..472b76da 100644 --- a/tests/recordings/test_share.test_share_exists.yaml +++ b/tests/recordings/test_share.test_share_exists.yaml @@ -4,42 +4,42 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [84b39e5e-67fc-11e7-96db-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b2da7fc8-68f6-11e7-88af-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:02 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/sharea69d0b92?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:10 GMT'] - ETag: ['"0x8D4CA2068C078F5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:03 GMT'] + ETag: ['"0x8D4CB1A97872B27"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:03 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [35d37e8d-001a-0124-8009-fc8bcf000000] + x-ms-request-id: [fec15c4b-001a-00ae-2a03-fd77b9000000] x-ms-version: ['2017-04-17'] status: {code: 201, message: Created} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [84c7ea62-67fc-11e7-b875-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b2f1f34c-68f6-11e7-93e8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:03 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/sharea69d0b92?restype=share response: body: {string: ''} headers: - Date: ['Thu, 13 Jul 2017 18:53:10 GMT'] - ETag: ['"0x8D4CA2068C078F5"'] - Last-Modified: ['Thu, 13 Jul 2017 18:53:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:03 GMT'] + ETag: ['"0x8D4CB1A97872B27"'] + Last-Modified: ['Sat, 15 Jul 2017 00:44:03 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [35d37e90-001a-0124-0109-fc8bcf000000] + x-ms-request-id: [fec15c4e-001a-00ae-2b03-fd77b9000000] x-ms-share-quota: ['5120'] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} diff --git a/tests/recordings/test_share.test_share_not_exists.yaml b/tests/recordings/test_share.test_share_not_exists.yaml index 598cce0f..95b4d9e7 100644 --- a/tests/recordings/test_share.test_share_not_exists.yaml +++ b/tests/recordings/test_share.test_share_not_exists.yaml @@ -3,22 +3,22 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [84e206e2-67fc-11e7-8876-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b30d34a4-68f6-11e7-8ed0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:03 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.file.core.windows.net/shared8d10d42?restype=share response: body: {string: "\uFEFFShareNotFoundThe\ - \ specified share does not exist.\nRequestId:7c935ef8-001a-003b-4109-fc168a000000\n\ - Time:2017-07-13T18:53:11.7816041Z"} + \ specified share does not exist.\nRequestId:d660710c-001a-00c9-6903-fdc41e000000\n\ + Time:2017-07-15T00:44:03.6509631Z"} headers: Content-Length: ['217'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:03 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [7c935ef8-001a-003b-4109-fc168a000000] + x-ms-request-id: [d660710c-001a-00c9-6903-fdc41e000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: The specified share does not exist.} version: 1 diff --git a/tests/recordings/test_share.test_unicode_create_share_unicode_name.yaml b/tests/recordings/test_share.test_unicode_create_share_unicode_name.yaml index e93043e7..51d51399 100644 --- a/tests/recordings/test_share.test_unicode_create_share_unicode_name.yaml +++ b/tests/recordings/test_share.test_unicode_create_share_unicode_name.yaml @@ -4,22 +4,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [850d6aa6-67fc-11e7-9592-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b33640a6-68f6-11e7-912e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:03 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.file.core.windows.net/%E5%95%8A%E9%BD%84%E4%B8%82%E7%8B%9B%E7%8B%9C?restype=share response: body: {string: "\uFEFFInvalidResourceNameThe\ - \ specifed resource name contains invalid characters.\nRequestId:315b94a5-001a-00b9-4a09-fcb7da000000\n\ - Time:2017-07-13T18:53:11.8107237Z"} + \ specifed resource name contains invalid characters.\nRequestId:1d15be24-001a-0008-3403-fd4fa7000000\n\ + Time:2017-07-15T00:44:04.3975656Z"} headers: Content-Length: ['243'] Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:10 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:04 GMT'] Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [315b94a5-001a-00b9-4a09-fcb7da000000] + x-ms-request-id: [1d15be24-001a-0008-3403-fd4fa7000000] x-ms-version: ['2017-04-17'] status: {code: 400, message: The specifed resource name contains invalid characters.} version: 1 diff --git a/tests/recordings/test_table.test_create_table.yaml b/tests/recordings/test_table.test_create_table.yaml index 463062e9..e67c9a61 100644 --- a/tests/recordings/test_table.test_create_table.yaml +++ b/tests/recordings/test_table.test_create_table.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8522fa9c-67fc-11e7-80ae-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b34c8ee2-68f6-11e7-a078-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:03 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''tablea4ed0b50'')'] - Date: ['Thu, 13 Jul 2017 18:53:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:04 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''tablea4ed0b50'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [75be31a8-0002-00c0-7109-fcde90000000] + x-ms-request-id: [976ef9b7-0002-0003-2d03-fd57d3000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -36,9 +36,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [85417906-67fc-11e7-b862-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b36856e2-68f6-11e7-a473-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:03 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables('tablea4ed0b50') @@ -47,11 +47,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:04 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [75be31c8-0002-00c0-0d09-fcde90000000] + x-ms-request-id: [976ef9cb-0002-0003-3d03-fd57d3000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table.test_create_table_fail_on_exist.yaml b/tests/recordings/test_table.test_create_table_fail_on_exist.yaml index 0a50b5b9..93bbcef9 100644 --- a/tests/recordings/test_table.test_create_table_fail_on_exist.yaml +++ b/tests/recordings/test_table.test_create_table_fail_on_exist.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [855d0a3e-67fc-11e7-b686-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b383d2a8-68f6-11e7-9156-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:04 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''table6d7c1113'')'] - Date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:04 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''table6d7c1113'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [5f085f20-0002-00af-5009-fc7644000000] + x-ms-request-id: [cf76f687-0002-0081-4303-fdf683000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -36,9 +36,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8570d6d8-67fc-11e7-9b67-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b39953e4-68f6-11e7-9272-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:04 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables('table6d7c1113') @@ -47,11 +47,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:04 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [5f085f37-0002-00af-6409-fc7644000000] + x-ms-request-id: [cf76f68b-0002-0081-4503-fdf683000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table.test_create_table_with_already_existing_table.yaml b/tests/recordings/test_table.test_create_table_with_already_existing_table.yaml index c937c822..f8519675 100644 --- a/tests/recordings/test_table.test_create_table_with_already_existing_table.yaml +++ b/tests/recordings/test_table.test_create_table_with_already_existing_table.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [858b7658-67fc-11e7-bbd6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b3b73ddc-68f6-11e7-a989-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:04 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''table898d16dd'')'] - Date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:05 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''table898d16dd'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [68f28245-0002-0102-3f09-fc107b000000] + x-ms-request-id: [a974f195-0002-0112-3503-fd269d000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -39,24 +39,24 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [859f8768-67fc-11e7-802b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b3cd18f0-68f6-11e7-8c42-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:04 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables response: body: {string: '{"odata.error":{"code":"TableAlreadyExists","message":{"lang":"en-US","value":"The - table specified already exists.\nRequestId:68f28250-0002-0102-4509-fc107b000000\nTime:2017-07-13T18:53:12.7413475Z"}}}'} + table specified already exists.\nRequestId:a974f1a9-0002-0112-4703-fd269d000000\nTime:2017-07-15T00:44:05.4448675Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:05 GMT'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [68f28250-0002-0102-4509-fc107b000000] + x-ms-request-id: [a974f1a9-0002-0112-4703-fd269d000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: Conflict} - request: @@ -66,9 +66,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [85a4547a-67fc-11e7-ab62-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b3d23bb4-68f6-11e7-bbe2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:04 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables('table898d16dd') @@ -77,11 +77,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:05 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [68f28257-0002-0102-4c09-fc107b000000] + x-ms-request-id: [a974f1b4-0002-0112-5203-fd269d000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table.test_create_table_with_already_existing_table_fail_on_exist.yaml b/tests/recordings/test_table.test_create_table_with_already_existing_table_fail_on_exist.yaml index 6b367e00..989af994 100644 --- a/tests/recordings/test_table.test_create_table_with_already_existing_table_fail_on_exist.yaml +++ b/tests/recordings/test_table.test_create_table_with_already_existing_table_fail_on_exist.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [85bff392-67fc-11e7-af13-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b3edc03a-68f6-11e7-bafa-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:04 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''tablef3d21ca0'')'] - Date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:05 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''tablef3d21ca0'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [fdd4a675-0002-0001-2a09-fc5529000000] + x-ms-request-id: [bff31539-0002-0014-4b03-fd97b0000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -39,24 +39,24 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [85d4d5b4-67fc-11e7-810b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b4034524-68f6-11e7-a405-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:04 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables response: body: {string: '{"odata.error":{"code":"TableAlreadyExists","message":{"lang":"en-US","value":"The - table specified already exists.\nRequestId:fdd4a67d-0002-0001-3009-fc5529000000\nTime:2017-07-13T18:53:13.1075250Z"}}}'} + table specified already exists.\nRequestId:bff31541-0002-0014-5103-fd97b0000000\nTime:2017-07-15T00:44:05.9739613Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:05 GMT'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [fdd4a67d-0002-0001-3009-fc5529000000] + x-ms-request-id: [bff31541-0002-0014-5103-fd97b0000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: Conflict} version: 1 diff --git a/tests/recordings/test_table.test_delete_table_with_existing_table.yaml b/tests/recordings/test_table.test_delete_table_with_existing_table.yaml index fea8fdd6..0809b3f2 100644 --- a/tests/recordings/test_table.test_delete_table_with_existing_table.yaml +++ b/tests/recordings/test_table.test_delete_table_with_existing_table.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [85ef36de-67fc-11e7-9724-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b4209890-68f6-11e7-b86a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:05 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''tableded1139b'')'] - Date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:05 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''tableded1139b'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2fe2298a-0002-0017-6209-fc94b7000000] + x-ms-request-id: [4cefd17d-0002-002e-7d03-fdd413000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -37,9 +37,9 @@ interactions: Content-Length: ['0'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8603db3e-67fc-11e7-bc05-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b4397194-68f6-11e7-924f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:05 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.table.core.windows.net/Tables('tableded1139b') @@ -48,10 +48,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:05 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2fe2299e-0002-0017-7409-fc94b7000000] + x-ms-request-id: [4cefd184-0002-002e-0203-fdd413000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -61,23 +61,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [860a17cc-67fc-11e7-9ed5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b43ffe58-68f6-11e7-8d91-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:05 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables('tableded1139b') response: body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:2fe229ad-0002-0017-0309-fc94b7000000\nTime:2017-07-13T18:53:13.0060761Z"}}}'} + specified resource does not exist.\nRequestId:4cefd18c-0002-002e-0903-fdd413000000\nTime:2017-07-15T00:44:06.0407597Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:05 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2fe229ad-0002-0017-0309-fc94b7000000] + x-ms-request-id: [4cefd18c-0002-002e-0903-fdd413000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: Not Found} version: 1 diff --git a/tests/recordings/test_table.test_delete_table_with_existing_table_fail_not_exist.yaml b/tests/recordings/test_table.test_delete_table_with_existing_table_fail_not_exist.yaml index 0964834d..0a46eed7 100644 --- a/tests/recordings/test_table.test_delete_table_with_existing_table_fail_not_exist.yaml +++ b/tests/recordings/test_table.test_delete_table_with_existing_table_fail_not_exist.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [862413e2-67fc-11e7-853c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b45b819e-68f6-11e7-9f72-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:05 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''table358619d2'')'] - Date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:05 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''table358619d2'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [65f88860-0002-0092-4309-fcc362000000] + x-ms-request-id: [01c14da8-0002-00bf-3703-fd40a2000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -37,9 +37,9 @@ interactions: Content-Length: ['0'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8637d236-67fc-11e7-9a2a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b46fa00c-68f6-11e7-8fe7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:05 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.table.core.windows.net/Tables('table358619d2') @@ -48,10 +48,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:05 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [65f88867-0002-0092-4809-fcc362000000] + x-ms-request-id: [01c14dbd-0002-00bf-4703-fd40a2000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -61,23 +61,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [863d3c8a-67fc-11e7-a363-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:13 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b477eecc-68f6-11e7-b778-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:05 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables('table358619d2') response: body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:65f8886a-0002-0092-4b09-fcc362000000\nTime:2017-07-13T18:53:13.7811979Z"}}}'} + specified resource does not exist.\nRequestId:01c14dd1-0002-00bf-5a03-fd40a2000000\nTime:2017-07-15T00:44:06.4945770Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:12 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:05 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [65f8886a-0002-0092-4b09-fcc362000000] + x-ms-request-id: [01c14dd1-0002-00bf-5a03-fd40a2000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: Not Found} version: 1 diff --git a/tests/recordings/test_table.test_delete_table_with_non_existing_table.yaml b/tests/recordings/test_table.test_delete_table_with_non_existing_table.yaml index f138f233..37849d7b 100644 --- a/tests/recordings/test_table.test_delete_table_with_non_existing_table.yaml +++ b/tests/recordings/test_table.test_delete_table_with_non_existing_table.yaml @@ -7,23 +7,23 @@ interactions: Content-Length: ['0'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8658c18a-67fc-11e7-be14-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:14 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b492d8ba-68f6-11e7-ad2f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:05 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.table.core.windows.net/Tables('table31901545') response: body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:2068153d-0002-0121-3109-fc7fb0000000\nTime:2017-07-13T18:53:14.2780290Z"}}}'} + specified resource does not exist.\nRequestId:7ed96397-0002-0115-5c03-fdd018000000\nTime:2017-07-15T00:44:07.0914710Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:06 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2068153d-0002-0121-3109-fc7fb0000000] + x-ms-request-id: [7ed96397-0002-0115-5c03-fdd018000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: Not Found} version: 1 diff --git a/tests/recordings/test_table.test_delete_table_with_non_existing_table_fail_not_exist.yaml b/tests/recordings/test_table.test_delete_table_with_non_existing_table_fail_not_exist.yaml index 9e16b236..2f5bc583 100644 --- a/tests/recordings/test_table.test_delete_table_with_non_existing_table_fail_not_exist.yaml +++ b/tests/recordings/test_table.test_delete_table_with_non_existing_table_fail_not_exist.yaml @@ -7,23 +7,23 @@ interactions: Content-Length: ['0'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [868fedb8-67fc-11e7-9698-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:14 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b4bc0258-68f6-11e7-bc84-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:06 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.table.core.windows.net/Tables('tablea12c1b7c') response: body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:eb047abb-0002-0098-7a09-fcdaeb000000\nTime:2017-07-13T18:53:14.2137359Z"}}}'} + specified resource does not exist.\nRequestId:97edf9f4-0002-00a3-7303-fd98b5000000\nTime:2017-07-15T00:44:07.0572098Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:06 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [eb047abb-0002-0098-7a09-fcdaeb000000] + x-ms-request-id: [97edf9f4-0002-00a3-7303-fd98b5000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: Not Found} version: 1 diff --git a/tests/recordings/test_table.test_get_table_acl.yaml b/tests/recordings/test_table.test_get_table_acl.yaml index 3a8a1ad2..b138259d 100644 --- a/tests/recordings/test_table.test_get_table_acl.yaml +++ b/tests/recordings/test_table.test_get_table_acl.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [86b6d342-67fc-11e7-bdaf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:14 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b4e5d25e-68f6-11e7-913d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:06 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''tableb07a0bab'')'] - Date: ['Thu, 13 Jul 2017 18:53:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:06 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''tableb07a0bab'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [38c09e90-0002-0073-2309-fc2417000000] + x-ms-request-id: [e41bd80e-0002-0094-0a03-fd341a000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -35,9 +35,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [86ceec1e-67fc-11e7-b045-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:14 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b4fb91ca-68f6-11e7-b7c7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:06 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/tableb07a0bab?comp=acl @@ -46,10 +46,10 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:06 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [38c09e96-0002-0073-2709-fc2417000000] + x-ms-request-id: [e41bd820-0002-0094-1803-fd341a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table.test_list_tables.yaml b/tests/recordings/test_table.test_list_tables.yaml index ab823960..245f56ab 100644 --- a/tests/recordings/test_table.test_list_tables.yaml +++ b/tests/recordings/test_table.test_list_tables.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [86fc6a7e-67fc-11e7-b324-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b53a00e2-68f6-11e7-8e5f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:06 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''table9a730b0b'')'] - Date: ['Thu, 13 Jul 2017 18:53:13 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:07 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''table9a730b0b'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [d4561d59-0002-00ed-0609-fc5d50000000] + x-ms-request-id: [205a300f-0002-00c2-0803-fddc6a000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -36,23 +36,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [871f80f4-67fc-11e7-bfb8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b54fc650-68f6-11e7-ac75-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:07 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables response: - body: {string: '{"value":[{"TableName":"CAPStable95217c74610847f795a116878ecde584"},{"TableName":"demotable"},{"TableName":"demotable5"},{"TableName":"newtable"},{"TableName":"pemari020817a"},{"TableName":"people"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e90"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e91"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e910"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e911"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e912"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e913"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e914"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e915"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e916"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e917"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e918"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e919"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e92"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e93"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e94"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e95"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e96"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e97"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e98"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e99"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab170"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab171"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1710"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1711"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1712"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1713"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1714"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1715"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1716"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1717"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1718"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1719"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab172"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab173"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab174"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab175"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab176"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab177"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab178"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab179"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f0"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f1"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f10"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f11"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f12"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f13"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f14"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f15"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f16"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f17"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f18"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f19"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f2"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f3"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f4"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f5"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f6"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f7"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f8"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f9"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e60"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e61"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e610"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e611"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e612"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e613"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e614"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e615"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e616"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e617"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e618"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e619"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e62"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e63"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e64"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e65"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e66"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e67"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e68"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e69"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f70"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f71"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f710"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f711"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f712"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f713"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f714"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f715"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f716"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f717"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f718"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f719"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f72"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f73"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f74"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f75"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f76"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f77"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f78"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f79"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f21"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f210"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f211"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f212"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f213"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f214"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f215"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f216"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f217"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f218"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f219"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f22"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f23"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f24"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f25"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f26"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f27"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f28"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f29"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a920"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a921"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9210"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9211"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9212"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9213"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9214"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9215"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9216"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9217"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9218"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9219"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a922"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a923"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a924"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a925"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a926"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a927"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a928"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a929"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e220"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e221"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2210"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2211"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2212"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2213"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2214"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2215"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2216"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2217"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2218"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2219"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e222"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e223"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e224"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e225"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e226"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e227"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e228"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e229"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c70"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c71"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c710"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c711"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c712"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c713"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c714"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c715"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c716"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c717"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c718"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c719"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c72"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c73"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c74"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c75"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c76"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c77"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c78"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c79"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b0"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b1"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b10"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b11"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b12"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b13"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b14"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b15"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b16"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b17"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b18"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b19"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b2"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b3"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b4"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b5"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b6"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b7"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b8"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b9"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c10"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c11"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c110"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c111"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c112"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c113"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c114"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c115"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c116"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c117"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c118"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c119"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c12"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c13"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c14"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c15"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c16"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c17"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c18"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c19"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b0"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b1"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b10"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b11"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b12"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b13"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b14"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b15"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b16"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b17"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b18"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b19"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b2"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b3"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b4"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b5"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b6"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b7"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b8"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b9"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a200"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a201"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2010"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2011"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2012"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2013"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2014"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2015"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2016"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2017"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2018"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2019"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a202"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a203"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a204"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a205"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a206"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a207"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a208"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a209"},{"TableName":"T001a0d2027f54dc0b9f93dd5f349785b"},{"TableName":"t00b14916910d42a796d35364e302075e"},{"TableName":"T00c393541b8f47469538e3632616c763"},{"TableName":"t01efb689725a4ae3b47fdc2575a19fa1"},{"TableName":"T02118a1eb5f248bea693e0e71fd097ee"},{"TableName":"t02817ec72156410ea2ddb5081f30bf57"},{"TableName":"t03aac74f336e4eb2923c221833a5bd4b"},{"TableName":"T03c5fea258d345e9944cfd9b9a8386f8"},{"TableName":"t048f72a916604721ab12298e7c3aaa53"},{"TableName":"t0563f3c5ed4c44e08f14d9ee19cb62c5"},{"TableName":"t0579e1d5c78a4c0598d8a5243cf43e65"},{"TableName":"t058f55460f50431d9a1109489fa76d14"},{"TableName":"t06249c0d5f6e431db554d338e64058f2"},{"TableName":"t066fd88625494f779d532ce67910a27c"},{"TableName":"t08698e98708d450e9e14297d9fb922b7"},{"TableName":"t09425794c2a149babf57b94c9230916a"},{"TableName":"t0a2646b3c45b4de3a512c5ca917f078e"},{"TableName":"t0a8dc1d7f26445e79d61495be7b0c7c0"},{"TableName":"t0ab3375e9251427abe9057111e156759"},{"TableName":"t0af90339dd2446af9a3147b69fcfa594"},{"TableName":"t0c41c70c0af84bd88518e3fcf73aa479"},{"TableName":"t0cb6bad4131f44b7964d9c8f737acc4c"},{"TableName":"t0e7da6e28794415883dab9336c90cb90"},{"TableName":"t0eda652c09164dc1a9d8c53a732ea9dd"},{"TableName":"t105c4852580c4a41a534dfbe3c9469be"},{"TableName":"T10ffcc88fab14fb2ba3d7a1394eeb564"},{"TableName":"t128e736ea01249eabcbdb2cbf17a2de8"},{"TableName":"t13818bd160004e328f5bd59ea78e05b8"},{"TableName":"t13b954f8935243149d27331fd2d6d649"},{"TableName":"t140b55e16ebd49b09befd9666d62d1e0"},{"TableName":"t1484c4f4519d4480a52534e9aefcde4b"},{"TableName":"t158b25ce8be14b5280432b79a1307750"},{"TableName":"t18f1e389c0904a78965d9976e401f78b"},{"TableName":"t19f50a9ce2864924ba2b2354cafc1830"},{"TableName":"t1b88bfa490d14c91bb849c5ef94303e3"},{"TableName":"t1b8bebfd31fc487b8a5f7922559aac11"},{"TableName":"t1bc1f75399fc437b8df9db1d3205cc1b"},{"TableName":"t1cb58996b8234759b9ddc8d4bf7288e7"},{"TableName":"t1d79196c24e143aa94371dfee49d87af"},{"TableName":"T1e058ffab15b4a6386c7bd4ebede17ab"},{"TableName":"t1eda7153fa8d4eab95f97575842cce54"},{"TableName":"t1eeb273ecfcd41b0be3c2db5275edc36"},{"TableName":"t1f13b22051c34ecfa86cfa2c54a460dd"},{"TableName":"T202b90f3d1b646a2abdbf2762dd158d3"},{"TableName":"t210bba068de14c83adfc9d8accdc54e9"},{"TableName":"t226f3597cb4840f5a163608200165f7e"},{"TableName":"t22ff30a42e304fc5aa04f2f8f4ca5720"},{"TableName":"t2322401054214fc3a418f475764acf67"},{"TableName":"t239c475ba4104834a67ead593ebabb11"},{"TableName":"t239fdf5026804cbcb7c14b09ac2fdbc0"},{"TableName":"t23c597ced1f3412c92513754a9aa1e6a"},{"TableName":"T2483038bc7694206ae1a99f644b13dfa"},{"TableName":"t24a991a33d6b4c5fa24c680f57622167"},{"TableName":"T24bf8de6a2be48d8acd01c327e3f77a7"},{"TableName":"t24e4a1806ecb4495ae8238c680218069"},{"TableName":"t2520c291fb53413985d3624a3fbb89cb"},{"TableName":"t25ac64dc7c4e4d89aaa44c98d93ad3d9"},{"TableName":"t2649d805c9bd418695e06819306aeb74"},{"TableName":"t268ede48e84a4eadb2adf667a9ef1c63"},{"TableName":"t2768a2c7f0184acf92481a8d2ae2ea5c"},{"TableName":"t279cddab984a40f7afc1e06bd42aae2a"},{"TableName":"t284869193e3c49c5921444ddbbc520f2"},{"TableName":"t289074fe5d88471f93b67498416d77e7"},{"TableName":"t2a808a43b1df42538f7d0e6528deb981"},{"TableName":"T2c064f7225e646ccb03d0aa773d4118e"},{"TableName":"T2c17828b990247e5843613f40b8f83fd"},{"TableName":"t2cd13915b2a34f27bdc41a62928af15b"},{"TableName":"t2d600d68aed5423eb1f45cc0b81451d8"},{"TableName":"t2dfe60179b2b45a6a1d9a787ef43a00c"},{"TableName":"t30146d92cf8843699a583e457a6371dd"},{"TableName":"T30385924e36641499738e07546aea50e"},{"TableName":"T3054f4f748834cab95768cee54fe0e9c"},{"TableName":"t311273edb2024ca6a84e97d3435f9f5b"},{"TableName":"t31a694ed5a3643e3a1043f022a1c8c36"},{"TableName":"t3210579cd44241e29d2113091739781a"},{"TableName":"t321ad756750340bfa89a52aa59483525"},{"TableName":"t353d025c335c4afb813fb5865ee15c94"},{"TableName":"t356b63d49c4a48c4b0920cc5e71b1c1e"},{"TableName":"T35a29d9c14ab4e1b88da732a81aaee90"},{"TableName":"t35e3e2a74268499abe912ee7040b061e"},{"TableName":"t3605f3775d72472bbe5f2c555a3337fd"},{"TableName":"t369261b3de074f178984f2c1f3f119ef"},{"TableName":"T373e0f31c2b941c6ab936b346b685442"},{"TableName":"t37d2bb67cd4347f8a4779f4ee7e80cf5"},{"TableName":"t382cd0a38b554a648166c036b9f9ca20"},{"TableName":"t396caf1032304f6a95f5ce410bc8a52f"},{"TableName":"T39d7379f916a4cc2890beee365c70a1f"},{"TableName":"t3abe5dcb8022415d9be471cdb03f049f"},{"TableName":"T3dddd798c85e455aa703caa086e68e14"},{"TableName":"t3f3e3e8ab1824c7488a399390467e0a9"},{"TableName":"t3facb27d75e94310b9a48ab2fc77666b"},{"TableName":"T431b4306bebe49949c20b23d670970b8"},{"TableName":"T4462b5289b13422ab679dbc462420699"},{"TableName":"t44b8d6ca247b4bbdbb14c745e993a59a"},{"TableName":"t45079372c0ec40a7b902b9529aac1697"},{"TableName":"t453fd7a0784046a48c8ed928c09b6f8d"},{"TableName":"t45b21c561b4040dcb2beabd809cd91b3"},{"TableName":"t47a49bafb9f640f4943cb3ba93eb409c"},{"TableName":"T493949ca50664a4db5468fa0e2390eb2"},{"TableName":"t4a9c71986f7c429b84a79b8fbdbd0df3"},{"TableName":"t4aba1d73f80e4c96b3c8b25cf7703d06"},{"TableName":"t4be1e227925a4c0ab74c17dd906b2feb"},{"TableName":"t511fa36357c54e55b09d26acfd95ac9d"},{"TableName":"t51310554d1e74db7bf00532c18e2295a"},{"TableName":"t53b7ef24d31f4e919150806b799df59b"},{"TableName":"t542d01077d6d47e498b1585a67e45c13"},{"TableName":"t548f026bbff8481d94d8aa221ed5f23f"},{"TableName":"t555d34b0ced641f4a227ece8a08c84b5"},{"TableName":"t55e8ca02f1524fbdb99ca2692f4e5e12"},{"TableName":"t56c67828e7d049168adbbcb26ead2c14"},{"TableName":"t57235838b0194a05b809271d11444c34"},{"TableName":"t577cb81f82414d1f8352a85afb1ff1ba"},{"TableName":"T590a53ba8aff41d7affeac5e4efc5593"},{"TableName":"t5a46703596f84649ab8c312a2eed92b1"},{"TableName":"t5e1ad56606a64d96b2718456750b2513"},{"TableName":"t5e3665cbb8e1401c968eab1465d57c00"},{"TableName":"T5e7c50920d164e52ad5bc44821e00f2b"},{"TableName":"T5eb0bb280d7340a2b3dc0267d752d3a9"},{"TableName":"T5ed3e70ac822466a8c141aa743e8dc65"},{"TableName":"t61b845ed4f8e4cff9badfcbcd3082a7e"},{"TableName":"t61e86f73b6c2455b81cb999b909f7f61"},{"TableName":"t6329124794cf4df09c8677cd32f9d067"},{"TableName":"t63d6f3c5f0b842bb978ad40b91047825"},{"TableName":"t675d26e2830a49cb8ecf614e9c4fdde1"},{"TableName":"t68b67dda5bc744bfbb35354087beb505"},{"TableName":"t6ae53578e96e4bd48c40b31a56dae2d6"},{"TableName":"t6b863737a073438cbc3c6798f6ecc854"},{"TableName":"t6ce27c3d3aa74568aeba3a95d9acb8e0"},{"TableName":"t6dd7b90432da494ebb0558a063f7816e"},{"TableName":"t6f268262f04843e6a55eeb8167218ebc"},{"TableName":"t6fe7d571364b4226ad68cf1f29a97146"},{"TableName":"t6ff0f70deded43229966de9b5ca786e0"},{"TableName":"T6ffecac0d10b40c4a4bc053d6ea3a5ca"},{"TableName":"t706ec073d02646d0b6c57e840fbbfa14"},{"TableName":"t72d7fed3dd234889bd1948913e3e7656"},{"TableName":"t734c858a2b9640109e3e140b9350438a"},{"TableName":"t74fd2e8d8c354acfac7f7a6501e3c5a9"},{"TableName":"t765f557c87454c15b26ff64ab0bc76dc"},{"TableName":"t77205a1d70c648ee86b8b1f05192acf3"},{"TableName":"t79963f4d52a64e559f71573826da3a7c"},{"TableName":"T7b2779d3af704a44a96783537577f746"},{"TableName":"t7d8b361486d44becaf62f8469dd188f8"},{"TableName":"t7e300b947a194e7794e05d103c54c78a"},{"TableName":"t7eb357cbe7b84ecc891b8a8f6aeb087d"},{"TableName":"t7f50cce2a10a49db879cccf58aaa581c"},{"TableName":"t7fd512ff4cfe47929c2fe50b7e7031ed"},{"TableName":"T7ff2cfac881c47f3a07cf75d347dce8a"},{"TableName":"t81f68ae476354d91a1789ea46d45aab5"},{"TableName":"t82d43e3d401142c894bc0198adf6caa6"},{"TableName":"t85152cd675784189bd53a6c71092f408"},{"TableName":"t8599ac762b1c4f1ab59b8d196e69b43c"},{"TableName":"T85db1fa2441644faabddc956b280a7f2"},{"TableName":"T85eac84d5b4e49b09082209fff382de7"},{"TableName":"t86436862f7644dcd907fe4137b195199"},{"TableName":"t87b60d612fdf43e19a1a9bc071aad2e0"},{"TableName":"t88f02fa7c8964c288cd1504553d13c8a"},{"TableName":"t890ffe96bd024382a1a42248e5849f57"},{"TableName":"t899d65a253a94846a3e6ce294a2afa58"},{"TableName":"t89a29b851d934a0e8451480573c514bd"},{"TableName":"T8a87309408874ebdb0bf79c047513321"},{"TableName":"T8af1ee954b58477f91b0397bdc397067"},{"TableName":"t8bb2e8c5498e4f8b9c11c3ea9a588ca1"},{"TableName":"t8d66fe617fc246dfb91773f3f66dc3c5"},{"TableName":"t8da2a859a73a457c8ee6464472110d95"},{"TableName":"t8dcdfba99dd6482380271aedf98af15e"},{"TableName":"t8f0da058f9944a3f891491e58ebbae5b"},{"TableName":"T8f890bca9f7c4e28b32e5dbc9bb556d0"},{"TableName":"t905ab23943424b79b21f9328bed4b7b4"},{"TableName":"t91f9034c55624947a819d2f22015c47f"},{"TableName":"t93a43796e9a34d2482f30ee0b3029499"},{"TableName":"t93d204249d744b1cad157eb4c16c2204"},{"TableName":"T954210538a4c48d6b9d445ee0e7a78ae"},{"TableName":"t957b2df1c8224a428a50831287be92e9"},{"TableName":"T962f4707d2a94b1c8a97cbe434910f2c"},{"TableName":"t967f39d0ae3442f7a8c3a46ae4fc5144"},{"TableName":"t9c7df29f73364e34be2d5e305a3755b1"},{"TableName":"t9c9556a6c9b040269d6edd9eabea24b6"},{"TableName":"t9c99f896e3a042b38652c11651a40228"},{"TableName":"t9d8311208d96439d88bd6080162d9d8a"},{"TableName":"t9e009d9c1b2d4861b0739b1dae859f1d"},{"TableName":"t9efd20a9ee7c423fbb2304bd84edd06e"},{"TableName":"t9ff6174fab9e4734b4c041f95c30a34f"},{"TableName":"Ta009ccc8e6014f1e98257cc9cac7f1ba"},{"TableName":"ta0c1ef135d6b4878b49e149a5c5fbe0e"},{"TableName":"Ta0e9e7db38d246238553573379cb977b"},{"TableName":"ta364010aa3ef49dbaa7d886a7a6120f8"},{"TableName":"Ta38a095e4a9346a0b72f5709638dde4e"},{"TableName":"ta3ff0eec988c47979568e82b9427b0bb"},{"TableName":"ta42aa2e01a4c426ab36c61ef208b9eba"},{"TableName":"ta511e453d9ed49e3898cda8a72b5a6d9"},{"TableName":"ta62e883698624762abab293af6c0a30c"},{"TableName":"ta7ab83d1cb6340bfaa3f7ab6a06550b9"},{"TableName":"ta7cf5249eac547a0a4bbf21bf3e98af6"},{"TableName":"Ta7db20ed615b4e919a1e22bbbde731f1"},{"TableName":"ta85b7b50521c4ce28d087d30aa9d2edc"},{"TableName":"ta8f22e668434424883761b07c8010721"},{"TableName":"taa6ad663d5c14dd38ef18065b15115b5"},{"TableName":"table21630f2d9b85c404aaf89e4164727addd"},{"TableName":"table22d62d92d0a4943109b3db56da5c64494"},{"TableName":"table4a2776ff8a6745649ef187562e43be05"},{"TableName":"table9a730b0b"},{"TableName":"tableb373389daa4b4d95809ee0b49f319461"},{"TableName":"tac0a7d4872884a81b683b8a8c0fab558"},{"TableName":"Tac2405d7922f4e028a2d5d141c1010da"},{"TableName":"tacef1340a5c74e52b9db4ffa187c47d2"},{"TableName":"tad8ca46eadd54c91b426d3430b501e79"},{"TableName":"taede7221b0c4450d821c9dd189aee51b"},{"TableName":"Taf6bc9e5872b4452bfdc5f0498963bf1"},{"TableName":"Taf9ec0abc3774d8184b57738cfb115ea"},{"TableName":"Tafc1105243e14b4e8a99357bb36faddb"},{"TableName":"tafeebf5ebb26414ea441d8c72b5d36bd"},{"TableName":"tb06ca3bc70f747ecafcaad0b03ba3306"},{"TableName":"tb072979191a944f5b038e2388307c721"},{"TableName":"tb0b2b6c1895949e688a9fd7c8509099d"},{"TableName":"tb2b2c8e9830c4ca7aa23ffdec8ceaa3a"},{"TableName":"tb31a2b4bc50f46148462bcbeb318f248"},{"TableName":"tb36cc2f734634127af837a6732af8cb8"},{"TableName":"tb40c81c918454b26a154ec32a7a039fa"},{"TableName":"tb4a84a7d225d44e09ea84d8aedadefdb"},{"TableName":"tb6135780875849a6b0559471d4fce527"},{"TableName":"tb8280eaa240b45d3a73d8d89a1a23abf"},{"TableName":"tb8bad8692d484baa8e9dce2a3160b409"},{"TableName":"Tb8d01a6fb7ff49729e31749b3b68feb8"},{"TableName":"tb90ab7b977094ee3b879c365fd1212d4"},{"TableName":"tbb3940ead90142f1bd1924b6ee766e83"},{"TableName":"tbce81459f8754c72b8b54e18f7b8917e"},{"TableName":"Tbd248e86f6be4014b0f979b521c9d2d8"},{"TableName":"tbdbe5b3de42243179dd89c32f4c1fcf1"},{"TableName":"tbec1c4c37d6140c294e1ddd2524d8a95"},{"TableName":"tbed01ddee57444a998104655e3d688f2"},{"TableName":"tbl000686f5e73b455081f27370ef8fa5f2"},{"TableName":"tbl0062d9ad6e3b4d55a46d868fbb656405"},{"TableName":"tbl00b2d2fffeca4828b0fac60517fb6aad"},{"TableName":"tbl00b31f1d3cb84e88a3b6ed6a4b3cdf41"},{"TableName":"tbl00e816e8850b4d6c931b55810fbf13c9"},{"TableName":"tbl00f63435a78b49ac82ffc05c4688cb11"},{"TableName":"tbl017a1c1d754447d294e8f267f96b5794"},{"TableName":"tbl01a0c6c00f5d44c7ae88c0bb1e8a2259"},{"TableName":"tbl01fe668f98014ffebc4af382f491ffa8"},{"TableName":"tbl02253db68e3e4197a560b7b0c122e38e"},{"TableName":"tbl025cc69fd70d4e458fe3dc50b24f4485"},{"TableName":"tbl02a1e807822a43a593091f422cd3e0b5"},{"TableName":"tbl0336ce478d4e42cdb3977f83c9c6bb2d"},{"TableName":"tbl0347101f08ca4a12942fb9acab029f9d"},{"TableName":"tbl03ee1a98ea57469ab582d0e254a6646b"},{"TableName":"tbl04abaa521c874037a3d33b588b6b62a6"},{"TableName":"tbl05ca8399c8274af5a6a7d51fe3a5e317"},{"TableName":"tbl0602a32f162a4380bbccfaa5b8fde60d"},{"TableName":"tbl062917b122de4ad2a3aa1097901755ad"},{"TableName":"tbl063ad89c7f284be5990471536f02fd82"},{"TableName":"tbl070e0a69af85489fb733043f3510fd79"},{"TableName":"tbl0761b43d82f94d5fa898a7a818e75558"},{"TableName":"tbl0866f37eaaca47b49261d7b67642720b"},{"TableName":"tbl0867b76ab27a4b12ad8350a1362130af"},{"TableName":"tbl086e9d54d5554641aef4ae7ba708b844"},{"TableName":"tbl088b12d9a2b54ad885c977f69c1bdd0e"},{"TableName":"tbl09247a02e70f482294897de91deb60b6"},{"TableName":"tbl0987f3c091124031905b1c0216ea5772"},{"TableName":"tbl099350c8341e4756a92b56a915b55820"},{"TableName":"tbl0a1b57a26c2243789f55350b005c2a95"},{"TableName":"tbl0aa378c8cbac4e84acaa6a956beee72d"},{"TableName":"tbl0b03168b578942fb8e456e431a68e401"},{"TableName":"tbl0b17bc70fb2c4a8f971ddb7a29c616e5"},{"TableName":"tbl0c840a50343245af8a5f9213dbaa33c3"},{"TableName":"tbl0c9f63b85b654089b27b397e379bd332"},{"TableName":"tbl0e5b1f4b46c842cda6bcbdc273c9d959"},{"TableName":"tbl0f6674e13e1a42ecbef25817ce5ac7db"},{"TableName":"tbl1129e83a15dd40afa6adcd78530a93a2"},{"TableName":"tbl11cf25acd7f045419e7a4254a8706bbb"},{"TableName":"tbl11f519a7b2dd42beab59d87ce79778f8"},{"TableName":"tbl129fece2b1e14eac8f5426afceec2fef"},{"TableName":"tbl12c089ca9bba45d988d48cdcbfcd7714"},{"TableName":"tbl1396fcecec3244a1971f1bfca86f4c3f"},{"TableName":"tbl13ebfd76f5a7457da09773af892026f4"},{"TableName":"tbl1464e550a2a740aeb921328c3b627a64"},{"TableName":"tbl149d25d5bac44a508ea877412162c1fb"},{"TableName":"tbl153ccbf1cd7a4d6a97b37ceae95198a8"},{"TableName":"tbl1543c4dc8a194b3795b3b5994414db0d"},{"TableName":"tbl15bcd127f4304589806064738ddfa48f"},{"TableName":"tbl15d1f2b96b584cdf9d82f0571918147f"},{"TableName":"tbl160e579c0ca44ca0837545bcc3d8baf2"},{"TableName":"tbl177fd5671a244bc0ac4f054b70e9929a"},{"TableName":"tbl17a2e79c12164ffca5b897d9e3566445"},{"TableName":"tbl17a7c97c0631462db8ad520371c60e9d"},{"TableName":"tbl17b699c464404eb584fb7d678c6458a8"},{"TableName":"tbl184df5fe1985430f8548fbb72cf77a02"},{"TableName":"tbl18c942f65d7f46058b70d1b3102f092b"},{"TableName":"tbl193fa418b54d473fb4d91002bc25b8b9"},{"TableName":"tbl194685be8fab4f5c84df5e4c2d1ce75b"},{"TableName":"tbl196b4ada11be490b9e49ef08393939c5"},{"TableName":"tbl19db8a26582f4002a6441800daf016b5"},{"TableName":"tbl19de788233084bc19064b130e8357643"},{"TableName":"tbl1a083f15a6cc4168bc4e812fdcc2d6c8"},{"TableName":"tbl1ab0b29ad1e445fb9fde751ef7258313"},{"TableName":"tbl1b3253d18ae946e9b58f30977e23a4aa"},{"TableName":"tbl1bb2bf6a3bef4949a858ec877aa3ceef"},{"TableName":"tbl1c19da3958714f25b9e96ea4c73fa6cb"},{"TableName":"tbl1c2a284431334e839fc9b819a664ed7c"},{"TableName":"tbl1d6bb4641a4740adb2a0670653254cd7"},{"TableName":"tbl1ea7e212f7b44ad0a5117caf9878309c"},{"TableName":"tbl1eaab3df395c42b888afcd97491e7c31"},{"TableName":"tbl1fa8959e558b4f88a0416355c66c192b"},{"TableName":"tbl2058344813354d5192d9d5141317b051"},{"TableName":"tbl21353ca572e84646a7d7eab5b98920b1"},{"TableName":"tbl21be34b2ab6b4069a7b9286d6aac5fd8"},{"TableName":"tbl2287cabe49554200b504cd71e4b70b24"},{"TableName":"tbl22b5163cd53646a6abf9bfc4f1e01529"},{"TableName":"tbl232753d1e1b14202bb23a1a987d68aef"},{"TableName":"tbl235b55030614434ea6eae4fbf1f30c5a"},{"TableName":"tbl235ce5ff71c240dfbaecd80bfebf9d73"},{"TableName":"tbl238f9d3cb88a4733a2a71681515e878b"},{"TableName":"tbl23ea4e8bd7ba496f9d0d394b3551cb17"},{"TableName":"tbl242064546b024e0db5b4ddf4b178b599"},{"TableName":"tbl24a874d7844b4d28bfb77b39df57abe5"},{"TableName":"tbl250dabf7345a482a904c9a2d742b37b4"},{"TableName":"tbl2522dfaf74ab499fae7ed23de2047800"},{"TableName":"tbl252b7288d41f4602875738c5b46902cd"},{"TableName":"tbl25943060f45c4fe2988fbe38dc0dc430"},{"TableName":"tbl25d68bbb565b49068252c4c3895fca10"},{"TableName":"tbl26738bdcde044248acb7bf2812cda71c"},{"TableName":"tbl2687b6a44ac04050bd69de37c7377cca"},{"TableName":"tbl269349b9757b4d51bf89321fef98e9c6"},{"TableName":"tbl26a13f11fa134160a0e5df0a4c233b61"},{"TableName":"tbl283353011e664b3c9f867cabfa9aa897"},{"TableName":"tbl28623fa19d1147d899b2bdc30e51f706"},{"TableName":"tbl28a3d0a7584a4cceb682121e36ef4dad"},{"TableName":"tbl29e957d938ae40fea956741c5a2a085d"},{"TableName":"tbl29ee00badd95413b8de52b2e0641a278"},{"TableName":"tbl2a05aa88fcec4b60a9bf64e775cc4eef"},{"TableName":"tbl2c0dbd376b0c4704b9c91b256914ed09"},{"TableName":"tbl2ca29a822fff400da658f9173ed09c22"},{"TableName":"tbl2cc94ee6cea14ec0b7edd99d80769134"},{"TableName":"tbl2d569aafca99458c911ec0f77f3824d0"},{"TableName":"tbl2dfea7cf7f904b98ac3192bc70b97fb4"},{"TableName":"tbl2eb4a0ee48224f278eef1881cabd9b3e"},{"TableName":"tbl2f0b14b34e4349f18dbd6788594e03d8"},{"TableName":"tbl2f47f1af37eb4d0dada1b2411421ef69"},{"TableName":"tbl30415045a54b45e1b5234f0f2e0a7ea3"},{"TableName":"tbl30caacdaaafb4771a4a0d712bfb4db52"},{"TableName":"tbl30ef45fa80804f03a8ca21965713b7f2"},{"TableName":"tbl3109b53f9b634cc6a58d5e5dca87d86c"},{"TableName":"tbl311251759a9146ed839b0b97a3f79b40"},{"TableName":"tbl315e4502eaf8454d91c22de8d676dee3"},{"TableName":"tbl31bb6c083b06469796e2bb20e9a03d60"},{"TableName":"tbl31c7b1bf86144f498790c028d15e44aa"},{"TableName":"tbl3216977b1ab94e17b25b46120cd5e7a6"},{"TableName":"tbl32704a8c4c3847c19beabeb76ffdaf68"},{"TableName":"tbl33e60d15005541cfbd0d79ee571e504d"},{"TableName":"tbl3432d8ab403a4a72ab6c13afe74a9a79"},{"TableName":"tbl358e51c89bf34825b54024d6ad64424f"},{"TableName":"tbl35e53983f2ab4048a9bf6aab3094c277"},{"TableName":"tbl364ee7c62c18418683ecc3347871363d"},{"TableName":"tbl365adf56b556439ba1edabc7a3b151f9"},{"TableName":"tbl36c56d15551f4a899363fa598ca5270c"},{"TableName":"tbl3800688668f2484692b1ef88f9b7dbeb"},{"TableName":"tbl38aac9ba65a44841b46592f078ab6880"},{"TableName":"tbl38d00566ab644059b4f2e96f69d8fb5a"},{"TableName":"tbl397a3361ee8340869a84d274d04273da"},{"TableName":"tbl399171ae046d47fe8c908bd595464a51"},{"TableName":"tbl39a8d39ceb7a4940a11ff41e31dd9d26"},{"TableName":"tbl3a03de6e9d524a08a0eab6aec3752f56"},{"TableName":"tbl3a557984770d4a889af089c0ed662459"},{"TableName":"tbl3a798a2f17e9422f88335d8d14c8b06c"},{"TableName":"tbl3b24670192f24545950a373933e4fddd"},{"TableName":"tbl3bc7998a086c4c7484a140b0f7f192ee"},{"TableName":"tbl3bdd7628294c48299424aad871e44b28"},{"TableName":"tbl3be128b8bb5f4015a2fd867e629f85be"},{"TableName":"tbl3c410b1728144e8487c8b56ba1b9af83"},{"TableName":"tbl3d537ef691fc410aa7dda3646527e4e7"},{"TableName":"tbl3d64fe22decc424684d588554f6f75e5"},{"TableName":"tbl3d8d62a03bec4151aac85f4fbe9daa01"},{"TableName":"tbl3e885cc18775486f83bd1720b718a0fa"},{"TableName":"tbl3ee036273ec4419b9563208ca264203f"},{"TableName":"tbl3f6126816d5f442a9d46b516ce13c63f"},{"TableName":"tbl4006523f6459474f947d799749e347f0"},{"TableName":"tbl409e9679175b45f187717c1c085d7eb2"},{"TableName":"tbl40de65d1b3194b83b4c6b61e8a5c3836"},{"TableName":"tbl4180a4acb1d642c1baec348aac29f400"},{"TableName":"tbl41b3ccbf37ba4862b9446e3795a41f39"},{"TableName":"tbl41cc33b5514d4e368071d9e64c249864"},{"TableName":"tbl428d1377ace146d9b49b95b97718d16e"},{"TableName":"tbl433330a1eca94f6bbdd3aa86950200a8"},{"TableName":"tbl43bb74e873f44575997a7eb0ee78db77"},{"TableName":"tbl43d297ac83974678a99a005c621720ea"},{"TableName":"tbl43eb901812744abe9d1d18dfc1a7bac2"},{"TableName":"tbl440a6bcee011436b8e2de7f58c91b2d6"},{"TableName":"tbl44dbdcb273ad451685707ca3a0bda916"},{"TableName":"tbl44ed2f4580434261bcc7f2c69773ff3f"},{"TableName":"tbl45076da26a6d45f0bc5c50d66d562070"},{"TableName":"tbl45d5f8490eb746809d9692a222175ca9"},{"TableName":"tbl45ee6a55944045b2a226d0526b00f7d9"},{"TableName":"tbl46283514121447a6b4ab7e0ac3f8f334"},{"TableName":"tbl4636d4fca457423db2522b06056960a9"},{"TableName":"tbl46a86137604b4fc8acbb4317b6552386"},{"TableName":"tbl46ec40452ac24751a0d701ee2206d729"},{"TableName":"tbl472ee50446844245a1233928f09ca4f3"},{"TableName":"tbl4732966c1b814ae8ae9f2d254629c9d7"},{"TableName":"tbl47654d9e2c004e3ea2ae81f2d681b398"},{"TableName":"tbl47961e7eb59b461abb09cfa98e0cc12e"},{"TableName":"tbl49102c5b10924f06861ca884fccc3ca6"},{"TableName":"tbl4957b4fca29e4d3bba50854cf7a650ce"},{"TableName":"tbl495c13711c8645b3a8ccb9c7a7bb0982"},{"TableName":"tbl4970173963ca4772b875caa1d942eadb"},{"TableName":"tbl4972366b795345d39cf06a72225e4262"},{"TableName":"tbl49ab5be36b1f499092b8db18ccb782b6"},{"TableName":"tbl4a11f313d4984614b4e7e6828b20e645"},{"TableName":"tbl4a50ad77180941b5a8d11a7c031d21ad"},{"TableName":"tbl4a666cd4e3464d7aa31323831f6f8ceb"},{"TableName":"tbl4ab8422d2aa14695b92229c2341bc80d"},{"TableName":"tbl4b1fbe3f7d1643abaed5ac9a041510cf"},{"TableName":"tbl4b95a88b912f44be90904698aec94771"},{"TableName":"tbl4c08f733bcae4737b0f1165cc8be7ada"},{"TableName":"tbl4c291024a22e4e4fa256a7dfd700e584"},{"TableName":"tbl4c5aa3cece36476fa0963ebeba9b3097"},{"TableName":"tbl4cbee75578ab40a4afbab3ec3a5de2ca"},{"TableName":"tbl4d60d971d54540e58a753ac6004bcc24"},{"TableName":"tbl4dc8de20fc47456a9194920c1e0c8934"},{"TableName":"tbl4de3a029c8d1477e84aca3e1195198c0"},{"TableName":"tbl4e53247bf9934abda381e0d641f334b5"},{"TableName":"tbl4e6176b107f2443fbbec930384d117c1"},{"TableName":"tbl4f0e7268e4c2436f8475e52b03e4d35e"},{"TableName":"tbl4f2ce8d76d6e4ff3bab5ac8bbda73592"},{"TableName":"tbl4f9b05f1cfe0489bb6af4d83ad67bcc2"},{"TableName":"tbl4fb78cdbfe0e4d519c67b53b0c900d22"},{"TableName":"tbl50de9ba6afc8445f8ffd1a4eaf92fb2d"},{"TableName":"tbl50e8dcc9a01449af9736f93c4f419be9"},{"TableName":"tbl51a8eea6cc324c579422ca0b8b168c0c"},{"TableName":"tbl51f5a3fbaabe42f4aead734a88d8262e"},{"TableName":"tbl520a16ddb53c4717a9254300ddb28cb3"},{"TableName":"tbl5210ccde7f7647928f6e78f6eac8afe1"},{"TableName":"tbl52d730e6910f4186a7b5ce1333f1a981"},{"TableName":"tbl532224413f0e4224bcbb318d7d5030f1"},{"TableName":"tbl545fec4dff134c5089fc4da535143c10"},{"TableName":"tbl55b42258b4a14d34bf74832a5832f764"},{"TableName":"tbl5799738a394343c0a9c90dcf649cba5e"},{"TableName":"tbl58314157c3c542ea930faf4de154ad70"},{"TableName":"tbl58599d817c224b75ba33c6268458b099"},{"TableName":"tbl586b85dba22e4dfeaff1ea29f186c27a"},{"TableName":"tbl587723096c544735bfb0d0da21ee22ac"},{"TableName":"tbl5884d57712b648e08288f86253db892c"},{"TableName":"tbl588b7c84383041c2a6b5e0a2d50e3b9b"},{"TableName":"tbl5984166ffc844196ae2b077e20365196"},{"TableName":"tbl59a098c3922e40409b0254a3858a45bf"},{"TableName":"tbl5b057a22cf694c2fbe887c44127a0368"},{"TableName":"tbl5b459448994f4e73af123d102ae7fb5f"},{"TableName":"tbl5b5dbcfe2df54964acc46c1d911687a9"},{"TableName":"tbl5b773e664a9c453a9aa70cd33e9948a4"},{"TableName":"tbl5b95331c604c4365ac859b765f389537"},{"TableName":"tbl5bdb8b2aa56246d69ff24cdc94c397ba"},{"TableName":"tbl5c82747f89114cc29d5caf423d8cd62d"},{"TableName":"tbl5cc3b6835ec04995805b6de6a2e536bc"},{"TableName":"tbl5cc40aa24cc7408a9d0d3db5e51bca7e"},{"TableName":"tbl5d8a046b856a4aeba7c07db2b8361c26"},{"TableName":"tbl5d9fcee1d0d043d0b1339024bd445434"},{"TableName":"tbl5e63aa37bac245729ee3184e286de23d"},{"TableName":"tbl5e74225d83084f61b6a06aa86c334a48"},{"TableName":"tbl5ec485defde24b1f99a3ddcfe40e3e23"},{"TableName":"tbl6026d803fd7a4d3d82852528cb74b494"},{"TableName":"tbl603ceb9e79cc4d4992b84c4183b7aaee"},{"TableName":"tbl6058b6f5f30e432e94881befae4bf154"},{"TableName":"tbl60e7eb2a48274b57bc5ff5eea61a385c"},{"TableName":"tbl60edc9ee02ca49689af7d58d69db816f"},{"TableName":"tbl60f4afb4228c4348b4c0065cddc95c74"},{"TableName":"tbl612314d7ffd545cf9b10bfb2a73b186b"},{"TableName":"tbl612961478ccf4289be7ef49816f68e7a"},{"TableName":"tbl615633100b1c4970896a703af027199e"},{"TableName":"tbl61a55ffa7c9a4afab711668c8005860b"},{"TableName":"tbl62ac44b6c62e48f1b6764eaa3aa436a2"},{"TableName":"tbl62e40b6b9d4a42f6a6e8ea4150365209"},{"TableName":"tbl6326f0a71c5e4c7b9e76d1884ddeac2c"},{"TableName":"tbl6356911923f144718ad862e8d3db283d"},{"TableName":"tbl63664f190d7e4cc88191487feddf007e"},{"TableName":"tbl63b71d4d4cfe4acdb6dfb8e7e9ccc2bf"},{"TableName":"tbl63c6c1534b6346b59e5acf95bf7623f5"},{"TableName":"tbl63cd6482f9c54c6bb52189dcddc9724b"},{"TableName":"tbl63dc7ae20cf44113ae9c59ddf889e61a"},{"TableName":"tbl6485837c60544280a1f04c3b832fad33"},{"TableName":"tbl64d70af300354851805f612594c3e311"},{"TableName":"tbl653b3cbc070e40bfb9ea9747baefe6fb"},{"TableName":"tbl65ba33068ef64b9f95c1038e22b720d9"},{"TableName":"tbl661839bb54174e2d92c5e20d3d6b6d5f"},{"TableName":"tbl665a3a7f18584abe8d13967a6db39434"},{"TableName":"tbl668ea4354635458c98a402950bd8d949"},{"TableName":"tbl66d93ebd92604bbca059de6e1d477674"},{"TableName":"tbl67ae3f7e8df4419a9a8c193aa217d479"},{"TableName":"tbl67b6a9410d1943b5b035adb9473a62d6"},{"TableName":"tbl67d852962d9243a5aed0628e640b152d"},{"TableName":"tbl68981bba1a8b4d46a9e1c3b18ebc46e2"},{"TableName":"tbl692477f37f1447748ddf7dde9ec5709a"},{"TableName":"tbl695a3961c0eb414384c6336b4aaf804b"},{"TableName":"tbl695ac752444e4f3481d9a9ffba8b5638"},{"TableName":"tbl697420bd1bb8431f8e45b32ddf305e19"},{"TableName":"tbl6a3a88221adc4025b19b61159bc61f05"},{"TableName":"tbl6a6e1bd351e648c799f1ea0acbd387c3"},{"TableName":"tbl6af8f29120434f82b5f850c3b6c38412"},{"TableName":"tbl6b20729646464684b7c34e4e8e897ce9"},{"TableName":"tbl6dbb137a974d425f8dc8b1aca1652c0a"},{"TableName":"tbl6dd05d032c464667bdf2490ac45061f4"},{"TableName":"tbl6e8d8497d0e843b7b17c2341c3311167"},{"TableName":"tbl6ebc55c855f5461d8dc3eb391e4a83e2"},{"TableName":"tbl70a4ad03faba477b9f9e850d56cde4a2"},{"TableName":"tbl70c34fbd74ee407ea8b38035f5f4dd2e"},{"TableName":"tbl71ebff1580bd4f0fa88e7da2a7f4777d"},{"TableName":"tbl71ed15e557e44cff85ea96a8d9c8367a"},{"TableName":"tbl7287b263a07844c29cc39d4d5695dbc0"},{"TableName":"tbl7383c9debc234f12a30d79da3a3be57b"},{"TableName":"tbl73b4e67479e64a0789137d24085d8f72"},{"TableName":"tbl73d7c83e67a14db9bd4717126d99e0b1"},{"TableName":"tbl748205f7e9404748ba8afdbb225be01f"},{"TableName":"tbl748adc61d2f04856a07fecb44d493791"},{"TableName":"tbl74db9c051c1441609388b4137b0f809e"},{"TableName":"tbl75f2fd99c12e492fa37ddb3704387033"},{"TableName":"tbl75fec2302b914989bc14e2c34afe9389"},{"TableName":"tbl7626ed6fb2e74eb6a424003e5779ba50"},{"TableName":"tbl7793ec943a1f43268de1cca77f120f18"},{"TableName":"tbl779bfdc1d99f44aebc9cdeaf4cf64360"},{"TableName":"tbl77fa62f38fe14dce843e1271ab6d51f1"},{"TableName":"tbl78e320b08e0a4cc58a50e86f08c76871"},{"TableName":"tbl78ff6308d71f4835bc8dc3e921c8f25c"},{"TableName":"tbl797eceba1fb2437f83c3fb1cd2365639"},{"TableName":"tbl79c5f0ad27214c02b75da570942baef9"},{"TableName":"tbl7a229e3e15db4993b0475ed42afde8b6"},{"TableName":"tbl7b2b085727554320aa110653d531dbc2"},{"TableName":"tbl7b47a2ea35764287992045e737f6ede4"},{"TableName":"tbl7ba70546599444dc8557bd13e8e5c345"},{"TableName":"tbl7c81165257824096944b82f5978faa3f"},{"TableName":"tbl7ce670ab029b420c94b16a7dbaa9571f"},{"TableName":"tbl7deeb7a3934e43d5a7d92f3bfbdeeaa3"},{"TableName":"tbl7e22c37f3152474282606de7e65d1680"},{"TableName":"tbl7eefbbe8cbe549d79e9fd3cf362e086a"},{"TableName":"tbl7f1336488e534479a093239887ac714d"},{"TableName":"tbl7f55ffde39a84cf3be454c3286b4f96e"},{"TableName":"tbl8044e77c75024812b9f328d1beaff52f"},{"TableName":"tbl80f5cc8302b0470ba5c2a050d4e8e9d2"},{"TableName":"tbl811383723ea34ef7aec2c8a697f2776a"},{"TableName":"tbl819b89cdd71a488e8a935cf7be17160d"},{"TableName":"tbl81ceca3e6fa24f46842b9e4306056a55"},{"TableName":"tbl832f0ab2d9f24bac939863d7c5523232"},{"TableName":"tbl8351e529ceb54a6c84d9efa3ed99f701"},{"TableName":"tbl849f86644fa3421e9f79fbe4a02d7107"},{"TableName":"tbl85ad7eebe7c644469f6a3189c24026af"},{"TableName":"tbl85e2f8f8756143188298050a3b4ec997"},{"TableName":"tbl8628341ef7824e84916048e7ae8093f3"},{"TableName":"tbl8645329745a34ba4878764749db9ae26"},{"TableName":"tbl87a9e0e8c30c40508e9e734f6649cf85"},{"TableName":"tbl87d855d1d4394f109368199cd63e0c66"},{"TableName":"tbl88283307f9e643fba5c45309bbda262e"},{"TableName":"tbl88f447f6d3d240f8876c365c5174c83b"},{"TableName":"tbl8918127646d8478e83e2b15314847347"},{"TableName":"tbl895cc8252e9344c18db16b88454c4da9"},{"TableName":"tbl89ed661e89394f27a139742a3e85bb4c"},{"TableName":"tbl89fe90a023ad4bfdb12699747e3d68fe"},{"TableName":"tbl8a3051b4251c43b6b43dc02a730f63ee"},{"TableName":"tbl8c24cc0b9808455cb7091f1f9f60c28c"},{"TableName":"tbl8c32dae36609489d9e2809e20d183c73"},{"TableName":"tbl8d0e302d942d44328d026987a4af9c90"},{"TableName":"tbl8d2524071d704f51965b60bd72eca8c8"},{"TableName":"tbl8d39da6b2385424c99bddffb3c2f72e8"},{"TableName":"tbl8d43d663113d4094b5e846ac924dd3ec"},{"TableName":"tbl8d45fc6295134b9b97d5d46c3b537d6b"},{"TableName":"tbl8dc4cbba93484e14898727fc2150ee9b"},{"TableName":"tbl8ecb8980a98449d5845554df5807f464"},{"TableName":"tbl9013a8b8c4c54c7587fd88661bad25ad"},{"TableName":"tbl907c66fb68d24c5ba5bde349bc88bd49"},{"TableName":"tbl90e29e13dc6845bf9fad72c069b586a1"},{"TableName":"tbl90e9b2a1307348e0b4f55da0607b7706"},{"TableName":"tbl91db25754a1f45d89d96c5ef25d7f223"},{"TableName":"tbl922f77f33adb43c38e549f26272beb19"},{"TableName":"tbl9246be10378743f0aa13be1a5cd35756"},{"TableName":"tbl93232305a9dc49f78f05c9f92528b817"},{"TableName":"tbl939f8900c5ae4936b7503dae6dd1cef9"},{"TableName":"tbl940c529980c54a54ad2a9a1f11632e84"},{"TableName":"tbl943dba6e3e944dfd8f1bab67e17ef004"},{"TableName":"tbl94e79d35c8214bca8dfb78d6907cd85b"},{"TableName":"tbl950df5d086b64bd5876fe7a03b1f9e24"},{"TableName":"tbl95926d3fa6f242b9bb43bcec516ae6c7"},{"TableName":"tbl95f57655a58043efb1faf177a53337e7"},{"TableName":"tbl96f3b984012f4fd9a7d1d98873b48452"},{"TableName":"tbl97c7aa5e6f6843b4bad8d16e97cc983a"},{"TableName":"tbl9816b487e74b4306bc829906ea523755"},{"TableName":"tbl981a8316cd154cb4a61fb1e23262cd1e"},{"TableName":"tbl9822ee4a74bb4df4ac969b76b7d0bc83"},{"TableName":"tbl9916631c7207455690d156d0d98c50fd"},{"TableName":"tbl99caef9bd210437cb754fbe2ccc4d51d"},{"TableName":"tbl9b75dc68d573487b97edfbd8c5a50837"},{"TableName":"tbl9d01714014d44c9c825a50ec5fd9c421"},{"TableName":"tbl9d0b8f5537a940b99809609ed3e276a1"},{"TableName":"tbl9d8ed3ae1f9b4aa7a7ed7bb6d1c845a7"},{"TableName":"tbl9da103ebdbed4b109ac4e373b9c779b6"},{"TableName":"tbl9dad282fe3354275964f84a79c590782"},{"TableName":"tbl9db8bec0c84e4b899d40b4597ebbd27e"},{"TableName":"tbl9dbcfe05a0e84a549cd7b85901613d34"},{"TableName":"tbl9e301801c6654f18aeea41b92e0f1c84"},{"TableName":"tbl9edd36a91f4b4c4aa85e4749f43d5be9"},{"TableName":"tbl9f2118b2c08e4fb18a211619220aeb56"},{"TableName":"tbl9fb368e02bf743488aa4746bae31b437"},{"TableName":"tbl9ff44348007441c7938965aa91389c71"},{"TableName":"tbla00cccaad49d44b39499378f8942a5d1"},{"TableName":"tbla0bd41d53d7a4793a699e8559ccacdbd"},{"TableName":"tbla1e00da0fe454b28b240f14ddbd90510"},{"TableName":"tbla1e6362f56f64a51babe0933cf98d8c5"},{"TableName":"tbla22312a85ccc4df5b1259ffab9ce7b18"},{"TableName":"tbla24a36b3c60c4e86adac7f1639edb456"},{"TableName":"tbla2adc64faea0494480f0a2b02cc93c75"},{"TableName":"tbla2b3655c27bd4bd684f2a450602a0a6b"},{"TableName":"tbla327fa460a8a4366a3d69064c68e680d"},{"TableName":"tbla3a4ef84e2b14a8e8f3e44383c50ce00"},{"TableName":"tbla3b780dc60ce42da801c87882299775a"},{"TableName":"tbla4053977a7024857be5a8467339ece02"},{"TableName":"tbla4304ef551d341928c99729d176d6126"},{"TableName":"tbla4be01548a074240bb0fe3cb61c1e2c5"},{"TableName":"tbla529550480554158a0c126e1923d4510"},{"TableName":"tbla52c050d27b44a6dab5b6e8154d8e4a6"},{"TableName":"tbla548bb240ba54036a6ecfca53e03e88e"},{"TableName":"tbla588edd2230c4d9aa960a198a6d610a2"},{"TableName":"tbla66beb7f5f354b01963c1affa3f4c9c2"},{"TableName":"tbla673d82ae8754222961b576cbdd873cb"},{"TableName":"tbla6ad17e79b3d4020ad369623f4d22d2f"},{"TableName":"tbla6cda3ffdab64e8b8f59e5523c78efdb"},{"TableName":"tbla7a886b95a3e4184aaba0a0c765eadd0"},{"TableName":"tbla8307fe6a848468799109501730afef4"},{"TableName":"tbla8b00d5dc9a04ac5ba15fc92d71110bc"},{"TableName":"tbla8c0118e0f3943509ba9ca1dae4da3e9"},{"TableName":"tbla928edff8f784005b33e75e0f13d244a"},{"TableName":"tbla93c46d213ce40aa9faddf7fc2da8bbd"},{"TableName":"tbla97662c8d3ff4d73abc4720f284a7603"},{"TableName":"tbla9b00156c43c49aa9edc2065f2faa359"},{"TableName":"tbla9f42aad3d4045f1a9dc1a1645b27522"},{"TableName":"tblaa79ed457ca4489388ea7fbffd6a523e"},{"TableName":"tblab8d2cf34b984848896f4cc805d7db11"},{"TableName":"tblabf72d56d6c94d218b7140ada1e2ad4e"},{"TableName":"tblac04d4f7cfe645e7a74e7bdc435160a5"},{"TableName":"tblac44753d77b545f7853b62b6bdb810ea"},{"TableName":"tblac80c9e6fb8346b2b7f3828245bbde41"},{"TableName":"tblad74689d72974cc5b7de30816fa367ca"},{"TableName":"tblad85067aaa0749d69f6cb54ffd1b85ca"},{"TableName":"tblae0e731fb98746b48f4974a9abff0161"},{"TableName":"tblae408fed8afe46268d009057cd49ec60"},{"TableName":"tblae61d3ce6d4441239a62982fed3ec771"},{"TableName":"tblaed2ee48e8b24a3caefa680d4bdc88fb"},{"TableName":"tblaed4f8338c9c40b5a064a2a8e4de769b"},{"TableName":"tblaf0835297f364a259e60a7a976afb533"},{"TableName":"tblaf154a7844304949a4c10ae9ce6ae26a"},{"TableName":"tblaf2cd676583f4e7ba16f8f98b469b8c4"},{"TableName":"tblaf668b7b47d448ccbc449cd0193cd9e7"},{"TableName":"tblaf7d5c4f327e4e4f87863ec4f43610eb"},{"TableName":"tblaf992a780d55488fa478a3b9a3689ff1"},{"TableName":"tblb06e2cd2f2ca44c78649e85c579ec145"},{"TableName":"tblb0ca34e062044b478d532ba2918cc553"},{"TableName":"tblb0d464adfabf4bdb952ea17df9b59f15"},{"TableName":"tblb0d710065aae49a58e2710fbc12ab05f"},{"TableName":"tblb0facbe36bb74ef4a53a8e305e932449"},{"TableName":"tblb0fbe53650294bfc8c780b76edd0cd7d"},{"TableName":"tblb1d464cecf5345ec84923caa55cfdc94"},{"TableName":"tblb1e3c24c16fa465098541a4ab68901ca"},{"TableName":"tblb28526c80886411c912988d332c85fd6"},{"TableName":"tblb3086ecd0b1d40e08d2f3ddf919ef334"},{"TableName":"tblb3110ed97cf7489689a83fccd0ab1b2e"},{"TableName":"tblb35477c4d91047a0b4800716b90f3822"},{"TableName":"tblb3badfdc4a2a49aa8886a3d07b8f6bc3"},{"TableName":"tblb3c022544cdc4cd8bbed0e494f8b4343"},{"TableName":"tblb4a3595bbbff48419e59310483ceb13b"},{"TableName":"tblb4c11d1a365046f78d24233799cd055f"},{"TableName":"tblb524096f774347599f572cde624fe83e"},{"TableName":"tblb677d5fd14ea46d58d872fe218fb934a"},{"TableName":"tblb6fb13a4e64c45d2823e76d0f71cc406"},{"TableName":"tblb783bfcb178a4f86a301718f82eea5a8"},{"TableName":"tblb7af1e3dbba0459eacb30f26c887952f"},{"TableName":"tblb87d96bdac2f41fe8db4b34a76194338"},{"TableName":"tblb883bdfe250840f8bbed580d009919ec"},{"TableName":"tblb8f3166dd6cf4aca8db3a9faff96f4f0"},{"TableName":"tblb973716f82c4477e8d4d144bc8136af6"},{"TableName":"tblb9dbea5933254daab4a069d3e14b436c"},{"TableName":"tblba003f099d0f45408422254a4492ff1d"},{"TableName":"tblba680f8669c04d9c81e55ca561d5139b"},{"TableName":"tblbabd06408f2f40edbb48160a1822c347"},{"TableName":"tblbb25f58edc1e489f82f2836472b046fd"},{"TableName":"tblbbb3dcc6411a4597a4a7ee879bf9adb7"},{"TableName":"tblbbdc3a8870954ab88d5a0e953e0e0519"},{"TableName":"tblbca9a9b915f84734b1f6cf444d4210a6"},{"TableName":"tblbcda6e16b80a4cc09337665b6fb54afa"},{"TableName":"tblbd5ea3cc250442bea868a633fba6ec9b"},{"TableName":"tblbd7185081777410b81ab9b8a00887ec4"},{"TableName":"tblbdfb77f749254674936c1345f5cf89c0"},{"TableName":"tblbef7715fea5d4364a50a1eecc6c3d908"},{"TableName":"tblbf7b57faa00a43209d7e290b89d64701"},{"TableName":"tblc0359086919e4f3ba75a3e3be4dc93ef"},{"TableName":"tblc0e0ed7f342a4bd1b4c35a54dba6269a"},{"TableName":"tblc105950447774436b0f1857575064398"},{"TableName":"tblc1ba5103237645f78ecc765d44a12a20"},{"TableName":"tblc22325111e3f4f12b702f70f2118fdcf"},{"TableName":"tblc243782315ce4dc9a113d608dd06286f"},{"TableName":"tblc27dca19c5854a0b92c838b3d502b339"},{"TableName":"tblc29e5fb075f144348726527b00526b2d"},{"TableName":"tblc30a541803504b5db75ac8e51b3c7bed"},{"TableName":"tblc4417b8e3afb4f1f83aa6f786ce6429f"},{"TableName":"tblc44cb09bdbe949e080c2a2b11aa332af"},{"TableName":"tblc458d4ac05be48d297efabc36586ae21"},{"TableName":"tblc4d5a3c552cf407aa2095b3654115ddc"},{"TableName":"tblc4e7a83dfddd459fa5e35ee9c046c3db"},{"TableName":"tblc5686dabfcc64ded887342c39904b7d7"},{"TableName":"tblc572fa1756de4189aebd2b6a816c33d5"},{"TableName":"tblc5d2bb46092a4fb3a87ee054e2922a28"},{"TableName":"tblc6261f052dc442fda333b32c69ede321"},{"TableName":"tblc69b0a2263664056b05cad9896074a08"},{"TableName":"tblc6bdf19a534e4b328a4f26e99f146f41"},{"TableName":"tblc723348989234f0e8163782784b47e70"},{"TableName":"tblc742d56cf8fc45b5913a0920f71e8125"},{"TableName":"tblc76acadb11e443fb88a1641af81a94d7"},{"TableName":"tblc786674298f5461dacc6be5bcea6167f"},{"TableName":"tblc79dac2d437f4d9ea63f3dfcfe870902"},{"TableName":"tblc855944446b94d698202bf8d85f4a7a4"},{"TableName":"tblc89eb1164f19487a9b9e900c6bfab786"},{"TableName":"tblc8ace17b9fd04759a17529a06f7046c8"},{"TableName":"tblc8d253d06f7a4bbeb344dde90a374c43"},{"TableName":"tblc8e963245555476fbdc2865a481240ba"},{"TableName":"tblca02458fed974f07a67876ff6d659ce4"},{"TableName":"tblca1ef18a6fde4d57a8b005c9a1e17317"},{"TableName":"tblca5b6fb234f643a19f045147eb183e89"},{"TableName":"tblcafcbc41541f4f73b9a66b282d66c3ff"},{"TableName":"tblcb4cd1fccbbb4da0a254427082318cab"},{"TableName":"tblcb606f18ac74403ab462e454af9ad650"},{"TableName":"tblcb74b83143af4cbf95d86325c9de385d"},{"TableName":"tblcbfc1839624d4241b93005298e3eab4f"},{"TableName":"tblcce73519d3ce4c8f8ef679580509c5e2"},{"TableName":"tblccfc5e750d154c6a9015a8bd7fbb074a"},{"TableName":"tblcd6b9c3945d34d79a410e812113fe9ce"},{"TableName":"tblcda480b1ab854665b9dd0257bc4eb3ef"},{"TableName":"tblce3df078203446dd91911af850c59629"},{"TableName":"tblce7b654b12d24133aa80861590f6ba65"},{"TableName":"tblced6f78aa4b14f7b985a548bd3b0ec9e"},{"TableName":"tblcf0b0bf49f014dbeb5444591d334ebaf"},{"TableName":"tblcf45b54aa2d7471696a5a90d0c542f50"},{"TableName":"tblcf740cecb7d7409ca8e84fee48c9f57f"},{"TableName":"tbld06ed131de3743a19611f60c5790e272"}]}'} + body: {string: '{"value":[{"TableName":"CAPStable95217c74610847f795a116878ecde584"},{"TableName":"demotable"},{"TableName":"demotable5"},{"TableName":"newtable"},{"TableName":"pemari020817a"},{"TableName":"people"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e90"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e91"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e910"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e911"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e912"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e913"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e914"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e915"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e916"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e917"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e918"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e919"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e92"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e93"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e94"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e95"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e96"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e97"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e98"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e99"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab170"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab171"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1710"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1711"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1712"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1713"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1714"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1715"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1716"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1717"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1718"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1719"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab172"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab173"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab174"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab175"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab176"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab177"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab178"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab179"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f0"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f1"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f10"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f11"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f12"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f13"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f14"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f15"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f16"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f17"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f18"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f19"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f2"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f3"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f4"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f5"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f6"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f7"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f8"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f9"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e60"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e61"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e610"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e611"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e612"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e613"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e614"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e615"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e616"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e617"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e618"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e619"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e62"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e63"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e64"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e65"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e66"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e67"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e68"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e69"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f70"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f71"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f710"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f711"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f712"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f713"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f714"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f715"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f716"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f717"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f718"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f719"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f72"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f73"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f74"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f75"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f76"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f77"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f78"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f79"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f21"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f210"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f211"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f212"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f213"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f214"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f215"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f216"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f217"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f218"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f219"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f22"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f23"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f24"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f25"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f26"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f27"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f28"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f29"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a920"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a921"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9210"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9211"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9212"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9213"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9214"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9215"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9216"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9217"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9218"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9219"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a922"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a923"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a924"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a925"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a926"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a927"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a928"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a929"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e220"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e221"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2210"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2211"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2212"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2213"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2214"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2215"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2216"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2217"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2218"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2219"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e222"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e223"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e224"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e225"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e226"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e227"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e228"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e229"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c70"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c71"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c710"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c711"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c712"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c713"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c714"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c715"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c716"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c717"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c718"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c719"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c72"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c73"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c74"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c75"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c76"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c77"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c78"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c79"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b0"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b1"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b10"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b11"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b12"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b13"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b14"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b15"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b16"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b17"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b18"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b19"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b2"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b3"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b4"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b5"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b6"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b7"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b8"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b9"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c10"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c11"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c110"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c111"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c112"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c113"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c114"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c115"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c116"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c117"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c118"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c119"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c12"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c13"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c14"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c15"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c16"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c17"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c18"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c19"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b0"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b1"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b10"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b11"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b12"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b13"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b14"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b15"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b16"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b17"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b18"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b19"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b2"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b3"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b4"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b5"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b6"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b7"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b8"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b9"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a200"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a201"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2010"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2011"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2012"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2013"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2014"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2015"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2016"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2017"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2018"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2019"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a202"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a203"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a204"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a205"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a206"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a207"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a208"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a209"},{"TableName":"T001a0d2027f54dc0b9f93dd5f349785b"},{"TableName":"t00b14916910d42a796d35364e302075e"},{"TableName":"T00c393541b8f47469538e3632616c763"},{"TableName":"t01efb689725a4ae3b47fdc2575a19fa1"},{"TableName":"T02118a1eb5f248bea693e0e71fd097ee"},{"TableName":"t02817ec72156410ea2ddb5081f30bf57"},{"TableName":"t03aac74f336e4eb2923c221833a5bd4b"},{"TableName":"T03c5fea258d345e9944cfd9b9a8386f8"},{"TableName":"t048f72a916604721ab12298e7c3aaa53"},{"TableName":"t0563f3c5ed4c44e08f14d9ee19cb62c5"},{"TableName":"t0579e1d5c78a4c0598d8a5243cf43e65"},{"TableName":"t058f55460f50431d9a1109489fa76d14"},{"TableName":"t06249c0d5f6e431db554d338e64058f2"},{"TableName":"t066fd88625494f779d532ce67910a27c"},{"TableName":"t08698e98708d450e9e14297d9fb922b7"},{"TableName":"t09425794c2a149babf57b94c9230916a"},{"TableName":"t0a2646b3c45b4de3a512c5ca917f078e"},{"TableName":"t0a8dc1d7f26445e79d61495be7b0c7c0"},{"TableName":"t0ab3375e9251427abe9057111e156759"},{"TableName":"t0af90339dd2446af9a3147b69fcfa594"},{"TableName":"t0c41c70c0af84bd88518e3fcf73aa479"},{"TableName":"t0cb6bad4131f44b7964d9c8f737acc4c"},{"TableName":"t0e7da6e28794415883dab9336c90cb90"},{"TableName":"t0eda652c09164dc1a9d8c53a732ea9dd"},{"TableName":"t105c4852580c4a41a534dfbe3c9469be"},{"TableName":"T10ffcc88fab14fb2ba3d7a1394eeb564"},{"TableName":"t128e736ea01249eabcbdb2cbf17a2de8"},{"TableName":"t13818bd160004e328f5bd59ea78e05b8"},{"TableName":"t13b954f8935243149d27331fd2d6d649"},{"TableName":"t140b55e16ebd49b09befd9666d62d1e0"},{"TableName":"t1484c4f4519d4480a52534e9aefcde4b"},{"TableName":"t158b25ce8be14b5280432b79a1307750"},{"TableName":"t18f1e389c0904a78965d9976e401f78b"},{"TableName":"t19f50a9ce2864924ba2b2354cafc1830"},{"TableName":"t1b88bfa490d14c91bb849c5ef94303e3"},{"TableName":"t1b8bebfd31fc487b8a5f7922559aac11"},{"TableName":"t1bc1f75399fc437b8df9db1d3205cc1b"},{"TableName":"t1cb58996b8234759b9ddc8d4bf7288e7"},{"TableName":"t1d79196c24e143aa94371dfee49d87af"},{"TableName":"T1e058ffab15b4a6386c7bd4ebede17ab"},{"TableName":"t1eda7153fa8d4eab95f97575842cce54"},{"TableName":"t1eeb273ecfcd41b0be3c2db5275edc36"},{"TableName":"t1f13b22051c34ecfa86cfa2c54a460dd"},{"TableName":"T202b90f3d1b646a2abdbf2762dd158d3"},{"TableName":"t210bba068de14c83adfc9d8accdc54e9"},{"TableName":"t226f3597cb4840f5a163608200165f7e"},{"TableName":"t22ff30a42e304fc5aa04f2f8f4ca5720"},{"TableName":"t2322401054214fc3a418f475764acf67"},{"TableName":"t239c475ba4104834a67ead593ebabb11"},{"TableName":"t239fdf5026804cbcb7c14b09ac2fdbc0"},{"TableName":"t23c597ced1f3412c92513754a9aa1e6a"},{"TableName":"T2483038bc7694206ae1a99f644b13dfa"},{"TableName":"t24a991a33d6b4c5fa24c680f57622167"},{"TableName":"T24bf8de6a2be48d8acd01c327e3f77a7"},{"TableName":"t24e4a1806ecb4495ae8238c680218069"},{"TableName":"t2520c291fb53413985d3624a3fbb89cb"},{"TableName":"t25ac64dc7c4e4d89aaa44c98d93ad3d9"},{"TableName":"t2649d805c9bd418695e06819306aeb74"},{"TableName":"t268ede48e84a4eadb2adf667a9ef1c63"},{"TableName":"t2768a2c7f0184acf92481a8d2ae2ea5c"},{"TableName":"t279cddab984a40f7afc1e06bd42aae2a"},{"TableName":"t284869193e3c49c5921444ddbbc520f2"},{"TableName":"t289074fe5d88471f93b67498416d77e7"},{"TableName":"t2a808a43b1df42538f7d0e6528deb981"},{"TableName":"T2c064f7225e646ccb03d0aa773d4118e"},{"TableName":"T2c17828b990247e5843613f40b8f83fd"},{"TableName":"t2cd13915b2a34f27bdc41a62928af15b"},{"TableName":"t2d600d68aed5423eb1f45cc0b81451d8"},{"TableName":"t2dfe60179b2b45a6a1d9a787ef43a00c"},{"TableName":"t30146d92cf8843699a583e457a6371dd"},{"TableName":"T30385924e36641499738e07546aea50e"},{"TableName":"T3054f4f748834cab95768cee54fe0e9c"},{"TableName":"t311273edb2024ca6a84e97d3435f9f5b"},{"TableName":"t31a694ed5a3643e3a1043f022a1c8c36"},{"TableName":"t3210579cd44241e29d2113091739781a"},{"TableName":"t321ad756750340bfa89a52aa59483525"},{"TableName":"t353d025c335c4afb813fb5865ee15c94"},{"TableName":"t356b63d49c4a48c4b0920cc5e71b1c1e"},{"TableName":"T35a29d9c14ab4e1b88da732a81aaee90"},{"TableName":"t35e3e2a74268499abe912ee7040b061e"},{"TableName":"t3605f3775d72472bbe5f2c555a3337fd"},{"TableName":"t369261b3de074f178984f2c1f3f119ef"},{"TableName":"T373e0f31c2b941c6ab936b346b685442"},{"TableName":"t37d2bb67cd4347f8a4779f4ee7e80cf5"},{"TableName":"t382cd0a38b554a648166c036b9f9ca20"},{"TableName":"t396caf1032304f6a95f5ce410bc8a52f"},{"TableName":"T39d7379f916a4cc2890beee365c70a1f"},{"TableName":"t3abe5dcb8022415d9be471cdb03f049f"},{"TableName":"T3dddd798c85e455aa703caa086e68e14"},{"TableName":"t3f3e3e8ab1824c7488a399390467e0a9"},{"TableName":"t3facb27d75e94310b9a48ab2fc77666b"},{"TableName":"T431b4306bebe49949c20b23d670970b8"},{"TableName":"T4462b5289b13422ab679dbc462420699"},{"TableName":"t44b8d6ca247b4bbdbb14c745e993a59a"},{"TableName":"t45079372c0ec40a7b902b9529aac1697"},{"TableName":"t453fd7a0784046a48c8ed928c09b6f8d"},{"TableName":"t45b21c561b4040dcb2beabd809cd91b3"},{"TableName":"t47a49bafb9f640f4943cb3ba93eb409c"},{"TableName":"T493949ca50664a4db5468fa0e2390eb2"},{"TableName":"t4a9c71986f7c429b84a79b8fbdbd0df3"},{"TableName":"t4aba1d73f80e4c96b3c8b25cf7703d06"},{"TableName":"t4be1e227925a4c0ab74c17dd906b2feb"},{"TableName":"t511fa36357c54e55b09d26acfd95ac9d"},{"TableName":"t51310554d1e74db7bf00532c18e2295a"},{"TableName":"t53b7ef24d31f4e919150806b799df59b"},{"TableName":"t542d01077d6d47e498b1585a67e45c13"},{"TableName":"t548f026bbff8481d94d8aa221ed5f23f"},{"TableName":"t555d34b0ced641f4a227ece8a08c84b5"},{"TableName":"t55e8ca02f1524fbdb99ca2692f4e5e12"},{"TableName":"t56c67828e7d049168adbbcb26ead2c14"},{"TableName":"t57235838b0194a05b809271d11444c34"},{"TableName":"t577cb81f82414d1f8352a85afb1ff1ba"},{"TableName":"T590a53ba8aff41d7affeac5e4efc5593"},{"TableName":"t5a46703596f84649ab8c312a2eed92b1"},{"TableName":"t5e1ad56606a64d96b2718456750b2513"},{"TableName":"t5e3665cbb8e1401c968eab1465d57c00"},{"TableName":"T5e7c50920d164e52ad5bc44821e00f2b"},{"TableName":"T5eb0bb280d7340a2b3dc0267d752d3a9"},{"TableName":"T5ed3e70ac822466a8c141aa743e8dc65"},{"TableName":"t61b845ed4f8e4cff9badfcbcd3082a7e"},{"TableName":"t61e86f73b6c2455b81cb999b909f7f61"},{"TableName":"t6329124794cf4df09c8677cd32f9d067"},{"TableName":"t63d6f3c5f0b842bb978ad40b91047825"},{"TableName":"t675d26e2830a49cb8ecf614e9c4fdde1"},{"TableName":"t68b67dda5bc744bfbb35354087beb505"},{"TableName":"t6ae53578e96e4bd48c40b31a56dae2d6"},{"TableName":"t6b863737a073438cbc3c6798f6ecc854"},{"TableName":"t6ce27c3d3aa74568aeba3a95d9acb8e0"},{"TableName":"t6dd7b90432da494ebb0558a063f7816e"},{"TableName":"t6f268262f04843e6a55eeb8167218ebc"},{"TableName":"t6fe7d571364b4226ad68cf1f29a97146"},{"TableName":"t6ff0f70deded43229966de9b5ca786e0"},{"TableName":"T6ffecac0d10b40c4a4bc053d6ea3a5ca"},{"TableName":"t706ec073d02646d0b6c57e840fbbfa14"},{"TableName":"t72d7fed3dd234889bd1948913e3e7656"},{"TableName":"t734c858a2b9640109e3e140b9350438a"},{"TableName":"t74fd2e8d8c354acfac7f7a6501e3c5a9"},{"TableName":"t765f557c87454c15b26ff64ab0bc76dc"},{"TableName":"t77205a1d70c648ee86b8b1f05192acf3"},{"TableName":"t79963f4d52a64e559f71573826da3a7c"},{"TableName":"T7b2779d3af704a44a96783537577f746"},{"TableName":"t7d8b361486d44becaf62f8469dd188f8"},{"TableName":"t7e300b947a194e7794e05d103c54c78a"},{"TableName":"t7eb357cbe7b84ecc891b8a8f6aeb087d"},{"TableName":"t7f50cce2a10a49db879cccf58aaa581c"},{"TableName":"t7fd512ff4cfe47929c2fe50b7e7031ed"},{"TableName":"T7ff2cfac881c47f3a07cf75d347dce8a"},{"TableName":"t81f68ae476354d91a1789ea46d45aab5"},{"TableName":"t82d43e3d401142c894bc0198adf6caa6"},{"TableName":"t85152cd675784189bd53a6c71092f408"},{"TableName":"t8599ac762b1c4f1ab59b8d196e69b43c"},{"TableName":"T85db1fa2441644faabddc956b280a7f2"},{"TableName":"T85eac84d5b4e49b09082209fff382de7"},{"TableName":"t86436862f7644dcd907fe4137b195199"},{"TableName":"t87b60d612fdf43e19a1a9bc071aad2e0"},{"TableName":"t88f02fa7c8964c288cd1504553d13c8a"},{"TableName":"t890ffe96bd024382a1a42248e5849f57"},{"TableName":"t899d65a253a94846a3e6ce294a2afa58"},{"TableName":"t89a29b851d934a0e8451480573c514bd"},{"TableName":"T8a87309408874ebdb0bf79c047513321"},{"TableName":"T8af1ee954b58477f91b0397bdc397067"},{"TableName":"t8bb2e8c5498e4f8b9c11c3ea9a588ca1"},{"TableName":"t8d66fe617fc246dfb91773f3f66dc3c5"},{"TableName":"t8da2a859a73a457c8ee6464472110d95"},{"TableName":"t8dcdfba99dd6482380271aedf98af15e"},{"TableName":"t8f0da058f9944a3f891491e58ebbae5b"},{"TableName":"T8f890bca9f7c4e28b32e5dbc9bb556d0"},{"TableName":"t905ab23943424b79b21f9328bed4b7b4"},{"TableName":"t91f9034c55624947a819d2f22015c47f"},{"TableName":"t93a43796e9a34d2482f30ee0b3029499"},{"TableName":"t93d204249d744b1cad157eb4c16c2204"},{"TableName":"T954210538a4c48d6b9d445ee0e7a78ae"},{"TableName":"t957b2df1c8224a428a50831287be92e9"},{"TableName":"T962f4707d2a94b1c8a97cbe434910f2c"},{"TableName":"t967f39d0ae3442f7a8c3a46ae4fc5144"},{"TableName":"t9c7df29f73364e34be2d5e305a3755b1"},{"TableName":"t9c9556a6c9b040269d6edd9eabea24b6"},{"TableName":"t9c99f896e3a042b38652c11651a40228"},{"TableName":"t9d8311208d96439d88bd6080162d9d8a"},{"TableName":"t9e009d9c1b2d4861b0739b1dae859f1d"},{"TableName":"t9efd20a9ee7c423fbb2304bd84edd06e"},{"TableName":"t9ff6174fab9e4734b4c041f95c30a34f"},{"TableName":"Ta009ccc8e6014f1e98257cc9cac7f1ba"},{"TableName":"ta0c1ef135d6b4878b49e149a5c5fbe0e"},{"TableName":"Ta0e9e7db38d246238553573379cb977b"},{"TableName":"ta364010aa3ef49dbaa7d886a7a6120f8"},{"TableName":"Ta38a095e4a9346a0b72f5709638dde4e"},{"TableName":"ta3ff0eec988c47979568e82b9427b0bb"},{"TableName":"ta42aa2e01a4c426ab36c61ef208b9eba"},{"TableName":"ta511e453d9ed49e3898cda8a72b5a6d9"},{"TableName":"ta62e883698624762abab293af6c0a30c"},{"TableName":"ta7ab83d1cb6340bfaa3f7ab6a06550b9"},{"TableName":"ta7cf5249eac547a0a4bbf21bf3e98af6"},{"TableName":"Ta7db20ed615b4e919a1e22bbbde731f1"},{"TableName":"ta85b7b50521c4ce28d087d30aa9d2edc"},{"TableName":"ta8f22e668434424883761b07c8010721"},{"TableName":"taa6ad663d5c14dd38ef18065b15115b5"},{"TableName":"table21630f2d9b85c404aaf89e4164727addd"},{"TableName":"table22d62d92d0a4943109b3db56da5c64494"},{"TableName":"table4a2776ff8a6745649ef187562e43be05"},{"TableName":"table9a730b0b"},{"TableName":"tableb373389daa4b4d95809ee0b49f319461"},{"TableName":"tac0a7d4872884a81b683b8a8c0fab558"},{"TableName":"Tac2405d7922f4e028a2d5d141c1010da"},{"TableName":"tacef1340a5c74e52b9db4ffa187c47d2"},{"TableName":"tad8ca46eadd54c91b426d3430b501e79"},{"TableName":"taede7221b0c4450d821c9dd189aee51b"},{"TableName":"Taf6bc9e5872b4452bfdc5f0498963bf1"},{"TableName":"Taf9ec0abc3774d8184b57738cfb115ea"},{"TableName":"Tafc1105243e14b4e8a99357bb36faddb"},{"TableName":"tafeebf5ebb26414ea441d8c72b5d36bd"},{"TableName":"tb06ca3bc70f747ecafcaad0b03ba3306"},{"TableName":"tb072979191a944f5b038e2388307c721"},{"TableName":"tb0b2b6c1895949e688a9fd7c8509099d"},{"TableName":"tb2b2c8e9830c4ca7aa23ffdec8ceaa3a"},{"TableName":"tb31a2b4bc50f46148462bcbeb318f248"},{"TableName":"tb36cc2f734634127af837a6732af8cb8"},{"TableName":"tb40c81c918454b26a154ec32a7a039fa"},{"TableName":"tb4a84a7d225d44e09ea84d8aedadefdb"},{"TableName":"tb6135780875849a6b0559471d4fce527"},{"TableName":"tb8280eaa240b45d3a73d8d89a1a23abf"},{"TableName":"tb8bad8692d484baa8e9dce2a3160b409"},{"TableName":"Tb8d01a6fb7ff49729e31749b3b68feb8"},{"TableName":"tb90ab7b977094ee3b879c365fd1212d4"},{"TableName":"tbb3940ead90142f1bd1924b6ee766e83"},{"TableName":"tbce81459f8754c72b8b54e18f7b8917e"},{"TableName":"Tbd248e86f6be4014b0f979b521c9d2d8"},{"TableName":"tbdbe5b3de42243179dd89c32f4c1fcf1"},{"TableName":"tbec1c4c37d6140c294e1ddd2524d8a95"},{"TableName":"tbed01ddee57444a998104655e3d688f2"},{"TableName":"tbl000686f5e73b455081f27370ef8fa5f2"},{"TableName":"tbl0062d9ad6e3b4d55a46d868fbb656405"},{"TableName":"tbl00b2d2fffeca4828b0fac60517fb6aad"},{"TableName":"tbl00b31f1d3cb84e88a3b6ed6a4b3cdf41"},{"TableName":"tbl00e816e8850b4d6c931b55810fbf13c9"},{"TableName":"tbl00f63435a78b49ac82ffc05c4688cb11"},{"TableName":"tbl017a1c1d754447d294e8f267f96b5794"},{"TableName":"tbl01a0c6c00f5d44c7ae88c0bb1e8a2259"},{"TableName":"tbl01fe668f98014ffebc4af382f491ffa8"},{"TableName":"tbl02253db68e3e4197a560b7b0c122e38e"},{"TableName":"tbl025cc69fd70d4e458fe3dc50b24f4485"},{"TableName":"tbl02a1e807822a43a593091f422cd3e0b5"},{"TableName":"tbl0336ce478d4e42cdb3977f83c9c6bb2d"},{"TableName":"tbl0347101f08ca4a12942fb9acab029f9d"},{"TableName":"tbl03ee1a98ea57469ab582d0e254a6646b"},{"TableName":"tbl04abaa521c874037a3d33b588b6b62a6"},{"TableName":"tbl05ca8399c8274af5a6a7d51fe3a5e317"},{"TableName":"tbl0602a32f162a4380bbccfaa5b8fde60d"},{"TableName":"tbl062917b122de4ad2a3aa1097901755ad"},{"TableName":"tbl063ad89c7f284be5990471536f02fd82"},{"TableName":"tbl070e0a69af85489fb733043f3510fd79"},{"TableName":"tbl0761b43d82f94d5fa898a7a818e75558"},{"TableName":"tbl0866f37eaaca47b49261d7b67642720b"},{"TableName":"tbl0867b76ab27a4b12ad8350a1362130af"},{"TableName":"tbl086e9d54d5554641aef4ae7ba708b844"},{"TableName":"tbl088b12d9a2b54ad885c977f69c1bdd0e"},{"TableName":"tbl09247a02e70f482294897de91deb60b6"},{"TableName":"tbl0987f3c091124031905b1c0216ea5772"},{"TableName":"tbl099350c8341e4756a92b56a915b55820"},{"TableName":"tbl0a1b57a26c2243789f55350b005c2a95"},{"TableName":"tbl0aa378c8cbac4e84acaa6a956beee72d"},{"TableName":"tbl0b03168b578942fb8e456e431a68e401"},{"TableName":"tbl0b17bc70fb2c4a8f971ddb7a29c616e5"},{"TableName":"tbl0c840a50343245af8a5f9213dbaa33c3"},{"TableName":"tbl0c9f63b85b654089b27b397e379bd332"},{"TableName":"tbl0e5b1f4b46c842cda6bcbdc273c9d959"},{"TableName":"tbl0f6674e13e1a42ecbef25817ce5ac7db"},{"TableName":"tbl1129e83a15dd40afa6adcd78530a93a2"},{"TableName":"tbl11cf25acd7f045419e7a4254a8706bbb"},{"TableName":"tbl11f519a7b2dd42beab59d87ce79778f8"},{"TableName":"tbl129fece2b1e14eac8f5426afceec2fef"},{"TableName":"tbl12c089ca9bba45d988d48cdcbfcd7714"},{"TableName":"tbl1396fcecec3244a1971f1bfca86f4c3f"},{"TableName":"tbl13ebfd76f5a7457da09773af892026f4"},{"TableName":"tbl1464e550a2a740aeb921328c3b627a64"},{"TableName":"tbl149d25d5bac44a508ea877412162c1fb"},{"TableName":"tbl153ccbf1cd7a4d6a97b37ceae95198a8"},{"TableName":"tbl1543c4dc8a194b3795b3b5994414db0d"},{"TableName":"tbl15bcd127f4304589806064738ddfa48f"},{"TableName":"tbl15d1f2b96b584cdf9d82f0571918147f"},{"TableName":"tbl160e579c0ca44ca0837545bcc3d8baf2"},{"TableName":"tbl177fd5671a244bc0ac4f054b70e9929a"},{"TableName":"tbl17a2e79c12164ffca5b897d9e3566445"},{"TableName":"tbl17a7c97c0631462db8ad520371c60e9d"},{"TableName":"tbl17b699c464404eb584fb7d678c6458a8"},{"TableName":"tbl184df5fe1985430f8548fbb72cf77a02"},{"TableName":"tbl18c942f65d7f46058b70d1b3102f092b"},{"TableName":"tbl193fa418b54d473fb4d91002bc25b8b9"},{"TableName":"tbl194685be8fab4f5c84df5e4c2d1ce75b"},{"TableName":"tbl196b4ada11be490b9e49ef08393939c5"},{"TableName":"tbl19db8a26582f4002a6441800daf016b5"},{"TableName":"tbl19de788233084bc19064b130e8357643"},{"TableName":"tbl1a083f15a6cc4168bc4e812fdcc2d6c8"},{"TableName":"tbl1ab0b29ad1e445fb9fde751ef7258313"},{"TableName":"tbl1b3253d18ae946e9b58f30977e23a4aa"},{"TableName":"tbl1bb2bf6a3bef4949a858ec877aa3ceef"},{"TableName":"tbl1c19da3958714f25b9e96ea4c73fa6cb"},{"TableName":"tbl1c2a284431334e839fc9b819a664ed7c"},{"TableName":"tbl1d6bb4641a4740adb2a0670653254cd7"},{"TableName":"tbl1ea7e212f7b44ad0a5117caf9878309c"},{"TableName":"tbl1eaab3df395c42b888afcd97491e7c31"},{"TableName":"tbl1fa8959e558b4f88a0416355c66c192b"},{"TableName":"tbl2058344813354d5192d9d5141317b051"},{"TableName":"tbl21353ca572e84646a7d7eab5b98920b1"},{"TableName":"tbl21be34b2ab6b4069a7b9286d6aac5fd8"},{"TableName":"tbl2287cabe49554200b504cd71e4b70b24"},{"TableName":"tbl22b5163cd53646a6abf9bfc4f1e01529"},{"TableName":"tbl232753d1e1b14202bb23a1a987d68aef"},{"TableName":"tbl235b55030614434ea6eae4fbf1f30c5a"},{"TableName":"tbl235ce5ff71c240dfbaecd80bfebf9d73"},{"TableName":"tbl238f9d3cb88a4733a2a71681515e878b"},{"TableName":"tbl23ea4e8bd7ba496f9d0d394b3551cb17"},{"TableName":"tbl242064546b024e0db5b4ddf4b178b599"},{"TableName":"tbl24a874d7844b4d28bfb77b39df57abe5"},{"TableName":"tbl250dabf7345a482a904c9a2d742b37b4"},{"TableName":"tbl2522dfaf74ab499fae7ed23de2047800"},{"TableName":"tbl252b7288d41f4602875738c5b46902cd"},{"TableName":"tbl25943060f45c4fe2988fbe38dc0dc430"},{"TableName":"tbl25d68bbb565b49068252c4c3895fca10"},{"TableName":"tbl26738bdcde044248acb7bf2812cda71c"},{"TableName":"tbl2687b6a44ac04050bd69de37c7377cca"},{"TableName":"tbl269349b9757b4d51bf89321fef98e9c6"},{"TableName":"tbl26a13f11fa134160a0e5df0a4c233b61"},{"TableName":"tbl283353011e664b3c9f867cabfa9aa897"},{"TableName":"tbl28623fa19d1147d899b2bdc30e51f706"},{"TableName":"tbl28a3d0a7584a4cceb682121e36ef4dad"},{"TableName":"tbl28d33d42c95d4f2daad88154974bd5f3"},{"TableName":"tbl29e957d938ae40fea956741c5a2a085d"},{"TableName":"tbl29ee00badd95413b8de52b2e0641a278"},{"TableName":"tbl2a05aa88fcec4b60a9bf64e775cc4eef"},{"TableName":"tbl2c0dbd376b0c4704b9c91b256914ed09"},{"TableName":"tbl2ca29a822fff400da658f9173ed09c22"},{"TableName":"tbl2cc94ee6cea14ec0b7edd99d80769134"},{"TableName":"tbl2d569aafca99458c911ec0f77f3824d0"},{"TableName":"tbl2dfea7cf7f904b98ac3192bc70b97fb4"},{"TableName":"tbl2eb4a0ee48224f278eef1881cabd9b3e"},{"TableName":"tbl2f0b14b34e4349f18dbd6788594e03d8"},{"TableName":"tbl2f47f1af37eb4d0dada1b2411421ef69"},{"TableName":"tbl30415045a54b45e1b5234f0f2e0a7ea3"},{"TableName":"tbl30caacdaaafb4771a4a0d712bfb4db52"},{"TableName":"tbl30ef45fa80804f03a8ca21965713b7f2"},{"TableName":"tbl3109b53f9b634cc6a58d5e5dca87d86c"},{"TableName":"tbl311251759a9146ed839b0b97a3f79b40"},{"TableName":"tbl315e4502eaf8454d91c22de8d676dee3"},{"TableName":"tbl31bb6c083b06469796e2bb20e9a03d60"},{"TableName":"tbl31c7b1bf86144f498790c028d15e44aa"},{"TableName":"tbl3216977b1ab94e17b25b46120cd5e7a6"},{"TableName":"tbl32704a8c4c3847c19beabeb76ffdaf68"},{"TableName":"tbl33e60d15005541cfbd0d79ee571e504d"},{"TableName":"tbl3432d8ab403a4a72ab6c13afe74a9a79"},{"TableName":"tbl358e51c89bf34825b54024d6ad64424f"},{"TableName":"tbl35e53983f2ab4048a9bf6aab3094c277"},{"TableName":"tbl364ee7c62c18418683ecc3347871363d"},{"TableName":"tbl365adf56b556439ba1edabc7a3b151f9"},{"TableName":"tbl36c56d15551f4a899363fa598ca5270c"},{"TableName":"tbl3800688668f2484692b1ef88f9b7dbeb"},{"TableName":"tbl38aac9ba65a44841b46592f078ab6880"},{"TableName":"tbl38d00566ab644059b4f2e96f69d8fb5a"},{"TableName":"tbl397a3361ee8340869a84d274d04273da"},{"TableName":"tbl399171ae046d47fe8c908bd595464a51"},{"TableName":"tbl39a8d39ceb7a4940a11ff41e31dd9d26"},{"TableName":"tbl3a03de6e9d524a08a0eab6aec3752f56"},{"TableName":"tbl3a557984770d4a889af089c0ed662459"},{"TableName":"tbl3a798a2f17e9422f88335d8d14c8b06c"},{"TableName":"tbl3b24670192f24545950a373933e4fddd"},{"TableName":"tbl3bc7998a086c4c7484a140b0f7f192ee"},{"TableName":"tbl3bdd7628294c48299424aad871e44b28"},{"TableName":"tbl3be128b8bb5f4015a2fd867e629f85be"},{"TableName":"tbl3c410b1728144e8487c8b56ba1b9af83"},{"TableName":"tbl3d537ef691fc410aa7dda3646527e4e7"},{"TableName":"tbl3d64fe22decc424684d588554f6f75e5"},{"TableName":"tbl3d8d62a03bec4151aac85f4fbe9daa01"},{"TableName":"tbl3e885cc18775486f83bd1720b718a0fa"},{"TableName":"tbl3ee036273ec4419b9563208ca264203f"},{"TableName":"tbl3f6126816d5f442a9d46b516ce13c63f"},{"TableName":"tbl4006523f6459474f947d799749e347f0"},{"TableName":"tbl409e9679175b45f187717c1c085d7eb2"},{"TableName":"tbl40de65d1b3194b83b4c6b61e8a5c3836"},{"TableName":"tbl4180a4acb1d642c1baec348aac29f400"},{"TableName":"tbl41b3ccbf37ba4862b9446e3795a41f39"},{"TableName":"tbl41cc33b5514d4e368071d9e64c249864"},{"TableName":"tbl428d1377ace146d9b49b95b97718d16e"},{"TableName":"tbl433330a1eca94f6bbdd3aa86950200a8"},{"TableName":"tbl43bb74e873f44575997a7eb0ee78db77"},{"TableName":"tbl43d297ac83974678a99a005c621720ea"},{"TableName":"tbl43eb901812744abe9d1d18dfc1a7bac2"},{"TableName":"tbl440a6bcee011436b8e2de7f58c91b2d6"},{"TableName":"tbl44dbdcb273ad451685707ca3a0bda916"},{"TableName":"tbl44ed2f4580434261bcc7f2c69773ff3f"},{"TableName":"tbl45076da26a6d45f0bc5c50d66d562070"},{"TableName":"tbl45d5f8490eb746809d9692a222175ca9"},{"TableName":"tbl45ee6a55944045b2a226d0526b00f7d9"},{"TableName":"tbl46283514121447a6b4ab7e0ac3f8f334"},{"TableName":"tbl4636d4fca457423db2522b06056960a9"},{"TableName":"tbl46a86137604b4fc8acbb4317b6552386"},{"TableName":"tbl46ec40452ac24751a0d701ee2206d729"},{"TableName":"tbl472ee50446844245a1233928f09ca4f3"},{"TableName":"tbl4732966c1b814ae8ae9f2d254629c9d7"},{"TableName":"tbl47654d9e2c004e3ea2ae81f2d681b398"},{"TableName":"tbl47961e7eb59b461abb09cfa98e0cc12e"},{"TableName":"tbl49102c5b10924f06861ca884fccc3ca6"},{"TableName":"tbl4957b4fca29e4d3bba50854cf7a650ce"},{"TableName":"tbl495c13711c8645b3a8ccb9c7a7bb0982"},{"TableName":"tbl4970173963ca4772b875caa1d942eadb"},{"TableName":"tbl4972366b795345d39cf06a72225e4262"},{"TableName":"tbl49ab5be36b1f499092b8db18ccb782b6"},{"TableName":"tbl4a11f313d4984614b4e7e6828b20e645"},{"TableName":"tbl4a50ad77180941b5a8d11a7c031d21ad"},{"TableName":"tbl4a666cd4e3464d7aa31323831f6f8ceb"},{"TableName":"tbl4ab8422d2aa14695b92229c2341bc80d"},{"TableName":"tbl4b1fbe3f7d1643abaed5ac9a041510cf"},{"TableName":"tbl4b95a88b912f44be90904698aec94771"},{"TableName":"tbl4c08f733bcae4737b0f1165cc8be7ada"},{"TableName":"tbl4c291024a22e4e4fa256a7dfd700e584"},{"TableName":"tbl4c5aa3cece36476fa0963ebeba9b3097"},{"TableName":"tbl4cbee75578ab40a4afbab3ec3a5de2ca"},{"TableName":"tbl4d60d971d54540e58a753ac6004bcc24"},{"TableName":"tbl4dc8de20fc47456a9194920c1e0c8934"},{"TableName":"tbl4de3a029c8d1477e84aca3e1195198c0"},{"TableName":"tbl4e53247bf9934abda381e0d641f334b5"},{"TableName":"tbl4e6176b107f2443fbbec930384d117c1"},{"TableName":"tbl4f0e7268e4c2436f8475e52b03e4d35e"},{"TableName":"tbl4f2ce8d76d6e4ff3bab5ac8bbda73592"},{"TableName":"tbl4f9b05f1cfe0489bb6af4d83ad67bcc2"},{"TableName":"tbl4fb78cdbfe0e4d519c67b53b0c900d22"},{"TableName":"tbl50de9ba6afc8445f8ffd1a4eaf92fb2d"},{"TableName":"tbl50e8dcc9a01449af9736f93c4f419be9"},{"TableName":"tbl51a8eea6cc324c579422ca0b8b168c0c"},{"TableName":"tbl51f5a3fbaabe42f4aead734a88d8262e"},{"TableName":"tbl520a16ddb53c4717a9254300ddb28cb3"},{"TableName":"tbl5210ccde7f7647928f6e78f6eac8afe1"},{"TableName":"tbl52d730e6910f4186a7b5ce1333f1a981"},{"TableName":"tbl532224413f0e4224bcbb318d7d5030f1"},{"TableName":"tbl545fec4dff134c5089fc4da535143c10"},{"TableName":"tbl55b42258b4a14d34bf74832a5832f764"},{"TableName":"tbl5799738a394343c0a9c90dcf649cba5e"},{"TableName":"tbl58314157c3c542ea930faf4de154ad70"},{"TableName":"tbl58599d817c224b75ba33c6268458b099"},{"TableName":"tbl586b85dba22e4dfeaff1ea29f186c27a"},{"TableName":"tbl587723096c544735bfb0d0da21ee22ac"},{"TableName":"tbl5884d57712b648e08288f86253db892c"},{"TableName":"tbl588b7c84383041c2a6b5e0a2d50e3b9b"},{"TableName":"tbl5984166ffc844196ae2b077e20365196"},{"TableName":"tbl59a098c3922e40409b0254a3858a45bf"},{"TableName":"tbl5b057a22cf694c2fbe887c44127a0368"},{"TableName":"tbl5b459448994f4e73af123d102ae7fb5f"},{"TableName":"tbl5b5dbcfe2df54964acc46c1d911687a9"},{"TableName":"tbl5b773e664a9c453a9aa70cd33e9948a4"},{"TableName":"tbl5b95331c604c4365ac859b765f389537"},{"TableName":"tbl5bdb8b2aa56246d69ff24cdc94c397ba"},{"TableName":"tbl5c82747f89114cc29d5caf423d8cd62d"},{"TableName":"tbl5cc3b6835ec04995805b6de6a2e536bc"},{"TableName":"tbl5cc40aa24cc7408a9d0d3db5e51bca7e"},{"TableName":"tbl5d8a046b856a4aeba7c07db2b8361c26"},{"TableName":"tbl5d9fcee1d0d043d0b1339024bd445434"},{"TableName":"tbl5e63aa37bac245729ee3184e286de23d"},{"TableName":"tbl5e74225d83084f61b6a06aa86c334a48"},{"TableName":"tbl5ec485defde24b1f99a3ddcfe40e3e23"},{"TableName":"tbl6026d803fd7a4d3d82852528cb74b494"},{"TableName":"tbl603ceb9e79cc4d4992b84c4183b7aaee"},{"TableName":"tbl6058b6f5f30e432e94881befae4bf154"},{"TableName":"tbl60e7eb2a48274b57bc5ff5eea61a385c"},{"TableName":"tbl60edc9ee02ca49689af7d58d69db816f"},{"TableName":"tbl60f4afb4228c4348b4c0065cddc95c74"},{"TableName":"tbl612314d7ffd545cf9b10bfb2a73b186b"},{"TableName":"tbl612961478ccf4289be7ef49816f68e7a"},{"TableName":"tbl615633100b1c4970896a703af027199e"},{"TableName":"tbl61a55ffa7c9a4afab711668c8005860b"},{"TableName":"tbl62ac44b6c62e48f1b6764eaa3aa436a2"},{"TableName":"tbl62e40b6b9d4a42f6a6e8ea4150365209"},{"TableName":"tbl6326f0a71c5e4c7b9e76d1884ddeac2c"},{"TableName":"tbl6356911923f144718ad862e8d3db283d"},{"TableName":"tbl63664f190d7e4cc88191487feddf007e"},{"TableName":"tbl63b71d4d4cfe4acdb6dfb8e7e9ccc2bf"},{"TableName":"tbl63c6c1534b6346b59e5acf95bf7623f5"},{"TableName":"tbl63cd6482f9c54c6bb52189dcddc9724b"},{"TableName":"tbl63dc7ae20cf44113ae9c59ddf889e61a"},{"TableName":"tbl6485837c60544280a1f04c3b832fad33"},{"TableName":"tbl64d70af300354851805f612594c3e311"},{"TableName":"tbl653b3cbc070e40bfb9ea9747baefe6fb"},{"TableName":"tbl65ba33068ef64b9f95c1038e22b720d9"},{"TableName":"tbl661839bb54174e2d92c5e20d3d6b6d5f"},{"TableName":"tbl665a3a7f18584abe8d13967a6db39434"},{"TableName":"tbl668ea4354635458c98a402950bd8d949"},{"TableName":"tbl66d93ebd92604bbca059de6e1d477674"},{"TableName":"tbl67ae3f7e8df4419a9a8c193aa217d479"},{"TableName":"tbl67b6a9410d1943b5b035adb9473a62d6"},{"TableName":"tbl67d852962d9243a5aed0628e640b152d"},{"TableName":"tbl68981bba1a8b4d46a9e1c3b18ebc46e2"},{"TableName":"tbl692477f37f1447748ddf7dde9ec5709a"},{"TableName":"tbl695a3961c0eb414384c6336b4aaf804b"},{"TableName":"tbl695ac752444e4f3481d9a9ffba8b5638"},{"TableName":"tbl697420bd1bb8431f8e45b32ddf305e19"},{"TableName":"tbl6a3a88221adc4025b19b61159bc61f05"},{"TableName":"tbl6a6e1bd351e648c799f1ea0acbd387c3"},{"TableName":"tbl6af8f29120434f82b5f850c3b6c38412"},{"TableName":"tbl6b20729646464684b7c34e4e8e897ce9"},{"TableName":"tbl6dbb137a974d425f8dc8b1aca1652c0a"},{"TableName":"tbl6dd05d032c464667bdf2490ac45061f4"},{"TableName":"tbl6e8d8497d0e843b7b17c2341c3311167"},{"TableName":"tbl6ebc55c855f5461d8dc3eb391e4a83e2"},{"TableName":"tbl70a4ad03faba477b9f9e850d56cde4a2"},{"TableName":"tbl70c34fbd74ee407ea8b38035f5f4dd2e"},{"TableName":"tbl71ebff1580bd4f0fa88e7da2a7f4777d"},{"TableName":"tbl71ed15e557e44cff85ea96a8d9c8367a"},{"TableName":"tbl7287b263a07844c29cc39d4d5695dbc0"},{"TableName":"tbl7383c9debc234f12a30d79da3a3be57b"},{"TableName":"tbl73b4e67479e64a0789137d24085d8f72"},{"TableName":"tbl73d7c83e67a14db9bd4717126d99e0b1"},{"TableName":"tbl748205f7e9404748ba8afdbb225be01f"},{"TableName":"tbl748adc61d2f04856a07fecb44d493791"},{"TableName":"tbl74db9c051c1441609388b4137b0f809e"},{"TableName":"tbl75f2fd99c12e492fa37ddb3704387033"},{"TableName":"tbl75fec2302b914989bc14e2c34afe9389"},{"TableName":"tbl7626ed6fb2e74eb6a424003e5779ba50"},{"TableName":"tbl7793ec943a1f43268de1cca77f120f18"},{"TableName":"tbl779bfdc1d99f44aebc9cdeaf4cf64360"},{"TableName":"tbl77fa62f38fe14dce843e1271ab6d51f1"},{"TableName":"tbl78e320b08e0a4cc58a50e86f08c76871"},{"TableName":"tbl78ff6308d71f4835bc8dc3e921c8f25c"},{"TableName":"tbl797eceba1fb2437f83c3fb1cd2365639"},{"TableName":"tbl79c5f0ad27214c02b75da570942baef9"},{"TableName":"tbl7a229e3e15db4993b0475ed42afde8b6"},{"TableName":"tbl7b2b085727554320aa110653d531dbc2"},{"TableName":"tbl7b47a2ea35764287992045e737f6ede4"},{"TableName":"tbl7ba70546599444dc8557bd13e8e5c345"},{"TableName":"tbl7c81165257824096944b82f5978faa3f"},{"TableName":"tbl7ce670ab029b420c94b16a7dbaa9571f"},{"TableName":"tbl7deeb7a3934e43d5a7d92f3bfbdeeaa3"},{"TableName":"tbl7e22c37f3152474282606de7e65d1680"},{"TableName":"tbl7eefbbe8cbe549d79e9fd3cf362e086a"},{"TableName":"tbl7f1336488e534479a093239887ac714d"},{"TableName":"tbl7f55ffde39a84cf3be454c3286b4f96e"},{"TableName":"tbl8044e77c75024812b9f328d1beaff52f"},{"TableName":"tbl80f5cc8302b0470ba5c2a050d4e8e9d2"},{"TableName":"tbl811383723ea34ef7aec2c8a697f2776a"},{"TableName":"tbl819b89cdd71a488e8a935cf7be17160d"},{"TableName":"tbl81ceca3e6fa24f46842b9e4306056a55"},{"TableName":"tbl832f0ab2d9f24bac939863d7c5523232"},{"TableName":"tbl8351e529ceb54a6c84d9efa3ed99f701"},{"TableName":"tbl849f86644fa3421e9f79fbe4a02d7107"},{"TableName":"tbl85ad7eebe7c644469f6a3189c24026af"},{"TableName":"tbl85e2f8f8756143188298050a3b4ec997"},{"TableName":"tbl8628341ef7824e84916048e7ae8093f3"},{"TableName":"tbl8645329745a34ba4878764749db9ae26"},{"TableName":"tbl87a9e0e8c30c40508e9e734f6649cf85"},{"TableName":"tbl87d855d1d4394f109368199cd63e0c66"},{"TableName":"tbl88283307f9e643fba5c45309bbda262e"},{"TableName":"tbl88f447f6d3d240f8876c365c5174c83b"},{"TableName":"tbl8918127646d8478e83e2b15314847347"},{"TableName":"tbl895cc8252e9344c18db16b88454c4da9"},{"TableName":"tbl89ed661e89394f27a139742a3e85bb4c"},{"TableName":"tbl89fe90a023ad4bfdb12699747e3d68fe"},{"TableName":"tbl8a3051b4251c43b6b43dc02a730f63ee"},{"TableName":"tbl8c24cc0b9808455cb7091f1f9f60c28c"},{"TableName":"tbl8c32dae36609489d9e2809e20d183c73"},{"TableName":"tbl8d0e302d942d44328d026987a4af9c90"},{"TableName":"tbl8d2524071d704f51965b60bd72eca8c8"},{"TableName":"tbl8d39da6b2385424c99bddffb3c2f72e8"},{"TableName":"tbl8d43d663113d4094b5e846ac924dd3ec"},{"TableName":"tbl8d45fc6295134b9b97d5d46c3b537d6b"},{"TableName":"tbl8dc4cbba93484e14898727fc2150ee9b"},{"TableName":"tbl8ecb8980a98449d5845554df5807f464"},{"TableName":"tbl9013a8b8c4c54c7587fd88661bad25ad"},{"TableName":"tbl907c66fb68d24c5ba5bde349bc88bd49"},{"TableName":"tbl90e29e13dc6845bf9fad72c069b586a1"},{"TableName":"tbl90e9b2a1307348e0b4f55da0607b7706"},{"TableName":"tbl91db25754a1f45d89d96c5ef25d7f223"},{"TableName":"tbl922f77f33adb43c38e549f26272beb19"},{"TableName":"tbl9246be10378743f0aa13be1a5cd35756"},{"TableName":"tbl93232305a9dc49f78f05c9f92528b817"},{"TableName":"tbl939f8900c5ae4936b7503dae6dd1cef9"},{"TableName":"tbl940c529980c54a54ad2a9a1f11632e84"},{"TableName":"tbl943dba6e3e944dfd8f1bab67e17ef004"},{"TableName":"tbl94e79d35c8214bca8dfb78d6907cd85b"},{"TableName":"tbl950df5d086b64bd5876fe7a03b1f9e24"},{"TableName":"tbl95926d3fa6f242b9bb43bcec516ae6c7"},{"TableName":"tbl95f57655a58043efb1faf177a53337e7"},{"TableName":"tbl96f3b984012f4fd9a7d1d98873b48452"},{"TableName":"tbl97c7aa5e6f6843b4bad8d16e97cc983a"},{"TableName":"tbl9816b487e74b4306bc829906ea523755"},{"TableName":"tbl981a8316cd154cb4a61fb1e23262cd1e"},{"TableName":"tbl9822ee4a74bb4df4ac969b76b7d0bc83"},{"TableName":"tbl9916631c7207455690d156d0d98c50fd"},{"TableName":"tbl99caef9bd210437cb754fbe2ccc4d51d"},{"TableName":"tbl9b75dc68d573487b97edfbd8c5a50837"},{"TableName":"tbl9d01714014d44c9c825a50ec5fd9c421"},{"TableName":"tbl9d0b8f5537a940b99809609ed3e276a1"},{"TableName":"tbl9d8ed3ae1f9b4aa7a7ed7bb6d1c845a7"},{"TableName":"tbl9da103ebdbed4b109ac4e373b9c779b6"},{"TableName":"tbl9dad282fe3354275964f84a79c590782"},{"TableName":"tbl9db8bec0c84e4b899d40b4597ebbd27e"},{"TableName":"tbl9dbcfe05a0e84a549cd7b85901613d34"},{"TableName":"tbl9e301801c6654f18aeea41b92e0f1c84"},{"TableName":"tbl9edd36a91f4b4c4aa85e4749f43d5be9"},{"TableName":"tbl9f2118b2c08e4fb18a211619220aeb56"},{"TableName":"tbl9fb368e02bf743488aa4746bae31b437"},{"TableName":"tbl9ff44348007441c7938965aa91389c71"},{"TableName":"tbla00cccaad49d44b39499378f8942a5d1"},{"TableName":"tbla0152bb1715448509bd87571d091f827"},{"TableName":"tbla0bd41d53d7a4793a699e8559ccacdbd"},{"TableName":"tbla1e00da0fe454b28b240f14ddbd90510"},{"TableName":"tbla1e6362f56f64a51babe0933cf98d8c5"},{"TableName":"tbla22312a85ccc4df5b1259ffab9ce7b18"},{"TableName":"tbla24a36b3c60c4e86adac7f1639edb456"},{"TableName":"tbla2adc64faea0494480f0a2b02cc93c75"},{"TableName":"tbla2b3655c27bd4bd684f2a450602a0a6b"},{"TableName":"tbla327fa460a8a4366a3d69064c68e680d"},{"TableName":"tbla3a4ef84e2b14a8e8f3e44383c50ce00"},{"TableName":"tbla3b780dc60ce42da801c87882299775a"},{"TableName":"tbla4053977a7024857be5a8467339ece02"},{"TableName":"tbla4304ef551d341928c99729d176d6126"},{"TableName":"tbla4be01548a074240bb0fe3cb61c1e2c5"},{"TableName":"tbla529550480554158a0c126e1923d4510"},{"TableName":"tbla52c050d27b44a6dab5b6e8154d8e4a6"},{"TableName":"tbla548bb240ba54036a6ecfca53e03e88e"},{"TableName":"tbla588edd2230c4d9aa960a198a6d610a2"},{"TableName":"tbla66beb7f5f354b01963c1affa3f4c9c2"},{"TableName":"tbla673d82ae8754222961b576cbdd873cb"},{"TableName":"tbla6ad17e79b3d4020ad369623f4d22d2f"},{"TableName":"tbla6cda3ffdab64e8b8f59e5523c78efdb"},{"TableName":"tbla7a886b95a3e4184aaba0a0c765eadd0"},{"TableName":"tbla8307fe6a848468799109501730afef4"},{"TableName":"tbla8b00d5dc9a04ac5ba15fc92d71110bc"},{"TableName":"tbla8c0118e0f3943509ba9ca1dae4da3e9"},{"TableName":"tbla928edff8f784005b33e75e0f13d244a"},{"TableName":"tbla93c46d213ce40aa9faddf7fc2da8bbd"},{"TableName":"tbla97662c8d3ff4d73abc4720f284a7603"},{"TableName":"tbla9b00156c43c49aa9edc2065f2faa359"},{"TableName":"tbla9f42aad3d4045f1a9dc1a1645b27522"},{"TableName":"tblaa79ed457ca4489388ea7fbffd6a523e"},{"TableName":"tblab8d2cf34b984848896f4cc805d7db11"},{"TableName":"tblabf72d56d6c94d218b7140ada1e2ad4e"},{"TableName":"tblac04d4f7cfe645e7a74e7bdc435160a5"},{"TableName":"tblac44753d77b545f7853b62b6bdb810ea"},{"TableName":"tblac80c9e6fb8346b2b7f3828245bbde41"},{"TableName":"tblad74689d72974cc5b7de30816fa367ca"},{"TableName":"tblad85067aaa0749d69f6cb54ffd1b85ca"},{"TableName":"tblae0e731fb98746b48f4974a9abff0161"},{"TableName":"tblae408fed8afe46268d009057cd49ec60"},{"TableName":"tblae61d3ce6d4441239a62982fed3ec771"},{"TableName":"tblaed2ee48e8b24a3caefa680d4bdc88fb"},{"TableName":"tblaed4f8338c9c40b5a064a2a8e4de769b"},{"TableName":"tblaf0835297f364a259e60a7a976afb533"},{"TableName":"tblaf154a7844304949a4c10ae9ce6ae26a"},{"TableName":"tblaf2cd676583f4e7ba16f8f98b469b8c4"},{"TableName":"tblaf668b7b47d448ccbc449cd0193cd9e7"},{"TableName":"tblaf7d5c4f327e4e4f87863ec4f43610eb"},{"TableName":"tblaf992a780d55488fa478a3b9a3689ff1"},{"TableName":"tblb06e2cd2f2ca44c78649e85c579ec145"},{"TableName":"tblb0ca34e062044b478d532ba2918cc553"},{"TableName":"tblb0d464adfabf4bdb952ea17df9b59f15"},{"TableName":"tblb0d710065aae49a58e2710fbc12ab05f"},{"TableName":"tblb0facbe36bb74ef4a53a8e305e932449"},{"TableName":"tblb0fbe53650294bfc8c780b76edd0cd7d"},{"TableName":"tblb1d464cecf5345ec84923caa55cfdc94"},{"TableName":"tblb1e3c24c16fa465098541a4ab68901ca"},{"TableName":"tblb28526c80886411c912988d332c85fd6"},{"TableName":"tblb3086ecd0b1d40e08d2f3ddf919ef334"},{"TableName":"tblb3110ed97cf7489689a83fccd0ab1b2e"},{"TableName":"tblb35477c4d91047a0b4800716b90f3822"},{"TableName":"tblb3badfdc4a2a49aa8886a3d07b8f6bc3"},{"TableName":"tblb3c022544cdc4cd8bbed0e494f8b4343"},{"TableName":"tblb4a3595bbbff48419e59310483ceb13b"},{"TableName":"tblb4c11d1a365046f78d24233799cd055f"},{"TableName":"tblb524096f774347599f572cde624fe83e"},{"TableName":"tblb677d5fd14ea46d58d872fe218fb934a"},{"TableName":"tblb6fb13a4e64c45d2823e76d0f71cc406"},{"TableName":"tblb783bfcb178a4f86a301718f82eea5a8"},{"TableName":"tblb7af1e3dbba0459eacb30f26c887952f"},{"TableName":"tblb87d96bdac2f41fe8db4b34a76194338"},{"TableName":"tblb883bdfe250840f8bbed580d009919ec"},{"TableName":"tblb8f3166dd6cf4aca8db3a9faff96f4f0"},{"TableName":"tblb973716f82c4477e8d4d144bc8136af6"},{"TableName":"tblb9dbea5933254daab4a069d3e14b436c"},{"TableName":"tblba003f099d0f45408422254a4492ff1d"},{"TableName":"tblba680f8669c04d9c81e55ca561d5139b"},{"TableName":"tblbabd06408f2f40edbb48160a1822c347"},{"TableName":"tblbb25f58edc1e489f82f2836472b046fd"},{"TableName":"tblbbb3dcc6411a4597a4a7ee879bf9adb7"},{"TableName":"tblbbdc3a8870954ab88d5a0e953e0e0519"},{"TableName":"tblbca9a9b915f84734b1f6cf444d4210a6"},{"TableName":"tblbcda6e16b80a4cc09337665b6fb54afa"},{"TableName":"tblbd5ea3cc250442bea868a633fba6ec9b"},{"TableName":"tblbd7185081777410b81ab9b8a00887ec4"},{"TableName":"tblbdfb77f749254674936c1345f5cf89c0"},{"TableName":"tblbef7715fea5d4364a50a1eecc6c3d908"},{"TableName":"tblbf7b57faa00a43209d7e290b89d64701"},{"TableName":"tblc0359086919e4f3ba75a3e3be4dc93ef"},{"TableName":"tblc0e0ed7f342a4bd1b4c35a54dba6269a"},{"TableName":"tblc105950447774436b0f1857575064398"},{"TableName":"tblc1ba5103237645f78ecc765d44a12a20"},{"TableName":"tblc22325111e3f4f12b702f70f2118fdcf"},{"TableName":"tblc243782315ce4dc9a113d608dd06286f"},{"TableName":"tblc27dca19c5854a0b92c838b3d502b339"},{"TableName":"tblc29e5fb075f144348726527b00526b2d"},{"TableName":"tblc30a541803504b5db75ac8e51b3c7bed"},{"TableName":"tblc4417b8e3afb4f1f83aa6f786ce6429f"},{"TableName":"tblc44cb09bdbe949e080c2a2b11aa332af"},{"TableName":"tblc458d4ac05be48d297efabc36586ae21"},{"TableName":"tblc4d5a3c552cf407aa2095b3654115ddc"},{"TableName":"tblc4e7a83dfddd459fa5e35ee9c046c3db"},{"TableName":"tblc5686dabfcc64ded887342c39904b7d7"},{"TableName":"tblc572fa1756de4189aebd2b6a816c33d5"},{"TableName":"tblc5d2bb46092a4fb3a87ee054e2922a28"},{"TableName":"tblc6261f052dc442fda333b32c69ede321"},{"TableName":"tblc69b0a2263664056b05cad9896074a08"},{"TableName":"tblc6bdf19a534e4b328a4f26e99f146f41"},{"TableName":"tblc723348989234f0e8163782784b47e70"},{"TableName":"tblc742d56cf8fc45b5913a0920f71e8125"},{"TableName":"tblc76acadb11e443fb88a1641af81a94d7"},{"TableName":"tblc786674298f5461dacc6be5bcea6167f"},{"TableName":"tblc79dac2d437f4d9ea63f3dfcfe870902"},{"TableName":"tblc855944446b94d698202bf8d85f4a7a4"},{"TableName":"tblc89eb1164f19487a9b9e900c6bfab786"},{"TableName":"tblc8ace17b9fd04759a17529a06f7046c8"},{"TableName":"tblc8d253d06f7a4bbeb344dde90a374c43"},{"TableName":"tblc8e963245555476fbdc2865a481240ba"},{"TableName":"tblca02458fed974f07a67876ff6d659ce4"},{"TableName":"tblca1ef18a6fde4d57a8b005c9a1e17317"},{"TableName":"tblca5b6fb234f643a19f045147eb183e89"},{"TableName":"tblcafcbc41541f4f73b9a66b282d66c3ff"},{"TableName":"tblcb4cd1fccbbb4da0a254427082318cab"},{"TableName":"tblcb606f18ac74403ab462e454af9ad650"},{"TableName":"tblcb74b83143af4cbf95d86325c9de385d"},{"TableName":"tblcbfc1839624d4241b93005298e3eab4f"},{"TableName":"tblcce73519d3ce4c8f8ef679580509c5e2"},{"TableName":"tblccfc5e750d154c6a9015a8bd7fbb074a"},{"TableName":"tblcd6b9c3945d34d79a410e812113fe9ce"},{"TableName":"tblcda480b1ab854665b9dd0257bc4eb3ef"},{"TableName":"tblce3df078203446dd91911af850c59629"},{"TableName":"tblce7b654b12d24133aa80861590f6ba65"},{"TableName":"tblced6f78aa4b14f7b985a548bd3b0ec9e"},{"TableName":"tblcf0b0bf49f014dbeb5444591d334ebaf"},{"TableName":"tblcf45b54aa2d7471696a5a90d0c542f50"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:07 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-continuation-NextTableName: [1!72!dGJsZDBhMmUyMDFiZDZiNDMyNTk3YmRmMGI1NDg3MzQwODABMDFkMjU1YTNjMTJmYmMxZg--] - x-ms-request-id: [d4561d90-0002-00ed-3a09-fc5d50000000] + x-ms-continuation-NextTableName: [1!72!dGJsY2Y3NDBjZWNiN2Q3NDA5Y2E4ZTg0ZmVlNDhjOWY1N2YBMDFkMmExYjVkZThhMWNkNg--] + x-ms-request-id: [205a301f-0002-00c2-1603-fddc6a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -62,22 +62,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [874a96b8-67fc-11e7-a464-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:15 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b56ed928-68f6-11e7-b6d2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:07 GMT'] x-ms-version: ['2017-04-17'] method: GET - uri: https://storagename.table.core.windows.net/Tables?NextTableName=1%2172%21dGJsZDBhMmUyMDFiZDZiNDMyNTk3YmRmMGI1NDg3MzQwODABMDFkMjU1YTNjMTJmYmMxZg-- + uri: https://storagename.table.core.windows.net/Tables?NextTableName=1%2172%21dGJsY2Y3NDBjZWNiN2Q3NDA5Y2E4ZTg0ZmVlNDhjOWY1N2YBMDFkMmExYjVkZThhMWNkNg-- response: - body: {string: '{"value":[{"TableName":"tbld0a2e201bd6b432597bdf0b548734080"},{"TableName":"tbld0d9f8a25527458f99578c2328355325"},{"TableName":"tbld139f20f3c6c41a08aabe8bada41f66f"},{"TableName":"tbld1557aacf6654a398f59562e1ee3a3c5"},{"TableName":"tbld233852eadcf4026b2aed77c92c5ddd7"},{"TableName":"tbld3b05eeae80e4a7e8d8896ddddd27d0d"},{"TableName":"tbld466d4964b894ea68bebc7927b53dc0c"},{"TableName":"tbld53f561d227b488498e93e4132c04590"},{"TableName":"tbld67c3c6989ec440d8923d2f554d0d70a"},{"TableName":"tbld6e0b661a0344162ad35907a5bf6c16a"},{"TableName":"tbld713caaef1e24258ba67ccb451d72270"},{"TableName":"tbld749bb48cc4b4f389d99743afbfb49fa"},{"TableName":"tbld7580fb2a74a44fb91315062501358e6"},{"TableName":"tbld81b9a1555604d23b76720fab44d5ff0"},{"TableName":"tbld82f7e3e7c104aad9681b109e266fd08"},{"TableName":"tbld9b405d020ad4775978d6ab877c291fd"},{"TableName":"tblda7b3a6e8c2f4d9abc5dbd741f0a644d"},{"TableName":"tblda9f4588583f43f98efc517c012ff93e"},{"TableName":"tbldabe5494ded3412ca8910a149283d401"},{"TableName":"tbldac5bd20ba3e477b860753a6a985804d"},{"TableName":"tbldafae619f568484eac2c72045f3e271d"},{"TableName":"tbldbc2f0930cea49108caf9b0c8587923e"},{"TableName":"tbldd5e6c64172a47daad8dcaef3725ab64"},{"TableName":"tblddba1310f8c94eca97f7857cda67d3e9"},{"TableName":"tbldddf2b00c33846a4b7579452ed2f03c0"},{"TableName":"tbldde775431a5542ba92d204b70426897a"},{"TableName":"tblddf1d23ea3a54f9baca424537e917fbf"},{"TableName":"tblde8b656497f24cf7ac119873ab053073"},{"TableName":"tbldfb2893f657f41649273393e09336940"},{"TableName":"tble0c4f5a5692641acb2e775f3338fc24f"},{"TableName":"tble12bbd1539254e399231832071b5af27"},{"TableName":"tble169dd9d7cdb48d19195759afc8b6da2"},{"TableName":"tble185d5c633644b4081e7205bbda3707f"},{"TableName":"tble1adce3cebae47d4bf2e7d1141fb5dd1"},{"TableName":"tble1d33848c0314d75b08db686eb82fab5"},{"TableName":"tble1eb3f37873f4362acc5e3fce7c3157b"},{"TableName":"tble28b124b1eaf48b8a804f275988e8187"},{"TableName":"tble35f110c6d474217a45ca9f1e8c926da"},{"TableName":"tble4db5e35454f41ada2eb83f096d2b00d"},{"TableName":"tble571f021cd5742ad81310606fa6481fb"},{"TableName":"tble5ccc0f3454048eba161d8be93fcce7f"},{"TableName":"tble5eb6f854ab04694acfe645ca68eec36"},{"TableName":"tble6d71d02d2e246dd8b51cca1c62ac0d2"},{"TableName":"tble7aa728f0c744b68967ecb032288a11c"},{"TableName":"tble7afd16629b9412a8e95495d3233d418"},{"TableName":"tble7eb33ec657e4178b3204f0e24b6a955"},{"TableName":"tble8722dcc905c46bfa7b678b559909e6f"},{"TableName":"tble98ad279928f4db1abe6536939f6fcc6"},{"TableName":"tblea1c1a3316d749aebb7cc1dac25591a1"},{"TableName":"tblea5817925e2545c2933dceec09fdd66d"},{"TableName":"tbleaab3e5193a34eca99a0048c3cb1e080"},{"TableName":"tblead0b1f6d4da4c0ea1efac8254bcd075"},{"TableName":"tbleb1067bc8cd64c3eaf1dc029cd37a1ae"},{"TableName":"tbleb3adcf89bea411dba025bb48ac62a21"},{"TableName":"tbleba920a84a5b4fbcb1a5b3b6801cedc4"},{"TableName":"tblebf2efe7e7af40218e7244589155fb7a"},{"TableName":"tblec2342c1136f4ba196dbb5b297a545bd"},{"TableName":"tblec798b253ce241dea3dc80d02da349d7"},{"TableName":"tbledcc55c88d3f4de183830e1450b45749"},{"TableName":"tblee23651036274002a50bd465a674073c"},{"TableName":"tblee2e6428cb194677986f182089f5650f"},{"TableName":"tblee549b11ecb449f2b944942b9b2a30ab"},{"TableName":"tbleea33735e2ad4277ab68e56a6caf0291"},{"TableName":"tblef1c1522d51e4c67947394499a35ef82"},{"TableName":"tblef3d2bf1b19b4c53ade544858ae31f59"},{"TableName":"tblef6086dabf1f4f0da9006cce0b2f01d6"},{"TableName":"tblefdffe44d1aa43f3a60b84e54f476ac2"},{"TableName":"tblf033517d612a41e298f6048cd0bd6496"},{"TableName":"tblf0495838532f49d5a67adb9582074ac0"},{"TableName":"tblf0efbd89fb204f45aabbb1ef66b46b41"},{"TableName":"tblf1354e08adf94b4a992d831fdd36b1a8"},{"TableName":"tblf13d75694be44fb6bad2b7f7fc038edd"},{"TableName":"tblf201b3655ed7434a9a1d774e1188c61e"},{"TableName":"tblf20e8341cfe944da8a9f615d29d16043"},{"TableName":"tblf24e31cc5bf84d96ae80506db4fa0a47"},{"TableName":"tblf2a3fb7fddaf448aab7dc8e89606fb78"},{"TableName":"tblf2d9d8c8a0cb4403b4e71c278055929b"},{"TableName":"tblf2df94d744b44aa1bf93b3d1c88bf4ac"},{"TableName":"tblf3b11ae38c034bf98dfda713a32a9fce"},{"TableName":"tblf40bb499741b4511a5d86136c74f859d"},{"TableName":"tblf4121aa3f11b466dabeff25612c73129"},{"TableName":"tblf4b702ba9a0047c18baed8fad2adfa72"},{"TableName":"tblf5091efe9c02491a927fa98e926f0ae3"},{"TableName":"tblf5216227dfd34e6fb761546e6d38e4e8"},{"TableName":"tblf574d07a882f4b409319b3075bfd5f50"},{"TableName":"tblf58c376fd08c434289404139ecfd0505"},{"TableName":"tblf5f5b9a054b6422d9a9e816bc8e6eeb0"},{"TableName":"tblf6a66f18d6e6459ebb0da96341050bfa"},{"TableName":"tblf7d950839e1a427b97a401ac6cd8933e"},{"TableName":"tblf81f0872556944528748609fb7ca2b49"},{"TableName":"tblf87dfacd199b475381f696081af4c1a1"},{"TableName":"tblf962d96005c64eff97823904d17ffbac"},{"TableName":"tblfafcaa82853e4ee8837273d4c1716106"},{"TableName":"tblfb24d5bca2a947f9b0b37b1c7d9eae0e"},{"TableName":"tblfbf0417f489b4000bd3fe5792d9de1c1"},{"TableName":"tblfc4b59dbc32a48599771c876ea10c530"},{"TableName":"tblfdb306f3576941059ea61c5d74b5db80"},{"TableName":"tblfddb2fbd576e4c9890d49ec2f5e760b9"},{"TableName":"tblfdf5aa6c7d68412f80d4838ec323cb8b"},{"TableName":"tblfe70485407dd4cd18cc5d73e27a23173"},{"TableName":"tblfeb034a12e9b43afb065b0f4f3a292d0"},{"TableName":"tblfeccdb4b02354087a9247758d6678d1f"},{"TableName":"tblfee8a8f30a4742caa227e9916ca70442"},{"TableName":"Tc03609224ea141359aa23b3a7a545ec1"},{"TableName":"tc3a6dfc248a94ff886ff55065164f587"},{"TableName":"tc4257c2c050249df921cc55b9d06ef61"},{"TableName":"tc469f4b8bef347999a225bb4a16db41a"},{"TableName":"tc4f0d5e1cadd46cfbe72fba2c94bfc66"},{"TableName":"tc69de9cec4a24d10928ee322457ca420"},{"TableName":"Tc7355f7e91c14b6cbe01e3205536c302"},{"TableName":"tc99fe76513c84482b416fb1b800c72cf"},{"TableName":"tca3103bb04554fd2b2502a7ef49d54d5"},{"TableName":"tca8be91d2b9140198c3f2e14091c23e0"},{"TableName":"tcb20fc7d94c64a758339474d60321672"},{"TableName":"tcb9717788f9e4c818f8ac1b1e27984d2"},{"TableName":"Tcce7c028adfd452c98e733a0da6e1f41"},{"TableName":"Tcd1fd83945534ac4af8472817e3d4697"},{"TableName":"tce841ce28cc5494ab71a0498fb1a63bd"},{"TableName":"tceae84a5580842a9b6167b711ed6684f"},{"TableName":"Td05c1f9fe9334841a944aa34cc2f3ab1"},{"TableName":"td10b393602c147d8ba1f02a20c16fb01"},{"TableName":"td240846e3fdd40bc87b5c457bb6dae5b"},{"TableName":"td2aea76be443494498e6b5fc6c95d483"},{"TableName":"td42c35dbb8b34aef97df68061c434760"},{"TableName":"td5edfdcd2ce147658c5c37c9c2b00ba3"},{"TableName":"td6e52c6f7e8847929d44b940ded8c440"},{"TableName":"Td71d425df49a46faa4722060b2b5acf0"},{"TableName":"td9683cc6df5645acbf0fff23e96bb333"},{"TableName":"td9a2809ba7ad475bbd3b3138eeeb3b16"},{"TableName":"tdc3d7ce781f9424f8f588dc9072ca520"},{"TableName":"tdd27360a165b434ebcb12525844603dc"},{"TableName":"tdea9ec7014d242c6b4b7e169f8c182b3"},{"TableName":"tdf698da2642e4b45bee686c4328d07d1"},{"TableName":"tdf9b66eaf89040bf95461302dca50bac"},{"TableName":"te0a4a855af1044b99da80545231890c6"},{"TableName":"te0ec4e9276ed4dbbb4a4375b05b0ff81"},{"TableName":"te15e17122c5a4c7f9b0b6b86e35e5017"},{"TableName":"te44c86227815425cb6005afabcd49c3d"},{"TableName":"te52ac36078ba48aea5f095838d98ce04"},{"TableName":"te56b26d1f29d4eb6b8bb169cb9dc35f0"},{"TableName":"te67702f3732d4bc7a875cef40439dfd9"},{"TableName":"te88400787fcf471da0f3ca107437bdc7"},{"TableName":"te96d4736f8564e2997eb13b473badada"},{"TableName":"Te97fa48dc4ec4039a3af649e659e5e40"},{"TableName":"te99ec2d5f1c44cc3ad330c4a98330953"},{"TableName":"Tead0e8a84fe5454884c4b113d896f840"},{"TableName":"teb97c4ad7041421fbc52a8c75e0e7281"},{"TableName":"tec2afa9a40e2420e899417b36b590c77"},{"TableName":"ted33b88df1884cde86ce3210e20a2c3d"},{"TableName":"ted7c307f049e4fa69719f00aeeb31752"},{"TableName":"test"},{"TableName":"test5"},{"TableName":"TestTable"},{"TableName":"Tf063f0d9ad624161907fb36906ad6881"},{"TableName":"tf1900f23dda9404ca4b8a34ecef2c44b"},{"TableName":"tf2078facdb0944f59858bff58a1aee49"},{"TableName":"tf21665cabd1f47868309111884bdfe6f"},{"TableName":"tf272073eb34b4a14b5c7455c5f9d55cb"},{"TableName":"tf2c82d7148ea4f84bb1e75918ac9bcd6"},{"TableName":"tf358b6831d8d49238b4afac169a994c9"},{"TableName":"tf49c752e047b43c2890276299670b6c7"},{"TableName":"tf4c610ffcdba4fbfb49805b0d9fe4c43"},{"TableName":"Tf61a5071c3cc4d648021207406088d4b"},{"TableName":"tf6516afa9bb44978af70d9b0e1d6f8f8"},{"TableName":"tf6a18ec940a747f8915aab7129a7433d"},{"TableName":"tf76822d364ea42b28e3ef17c9f3a82ce"},{"TableName":"tf836b2d51d6340ed899dd0ccf37dc3c3"},{"TableName":"tf8fc1c26d5e74d9eaaeb5caf7d0281dc"},{"TableName":"tf9b171aa158d4980a62b2d097e436a93"},{"TableName":"tf9d4511135394ee285b5d69a4d49b22e"},{"TableName":"tfafa6d903d594a0cae08d9e145b1c8f3"},{"TableName":"tfb7c7517bf6343e8950977e16ae8105d"},{"TableName":"tfdae40659cb7443b82f728924449ede9"},{"TableName":"tfebcd4988b5643fbb5a6e7104be8387a"},{"TableName":"Tff00e9043e504729b8ded696d6a7f094"},{"TableName":"tffb444547f224eaf80654d8a6dab56c8"},{"TableName":"tffce2ff958d64e68a9481639b973c073"},{"TableName":"tffd14cfe34b24dbc808eede5231a08a4"}]}'} + body: {string: '{"value":[{"TableName":"tblcf740cecb7d7409ca8e84fee48c9f57f"},{"TableName":"tbld06ed131de3743a19611f60c5790e272"},{"TableName":"tbld0a2e201bd6b432597bdf0b548734080"},{"TableName":"tbld0d9f8a25527458f99578c2328355325"},{"TableName":"tbld139f20f3c6c41a08aabe8bada41f66f"},{"TableName":"tbld1557aacf6654a398f59562e1ee3a3c5"},{"TableName":"tbld233852eadcf4026b2aed77c92c5ddd7"},{"TableName":"tbld3b05eeae80e4a7e8d8896ddddd27d0d"},{"TableName":"tbld466d4964b894ea68bebc7927b53dc0c"},{"TableName":"tbld53f561d227b488498e93e4132c04590"},{"TableName":"tbld67c3c6989ec440d8923d2f554d0d70a"},{"TableName":"tbld6e0b661a0344162ad35907a5bf6c16a"},{"TableName":"tbld713caaef1e24258ba67ccb451d72270"},{"TableName":"tbld749bb48cc4b4f389d99743afbfb49fa"},{"TableName":"tbld7580fb2a74a44fb91315062501358e6"},{"TableName":"tbld81b9a1555604d23b76720fab44d5ff0"},{"TableName":"tbld82f7e3e7c104aad9681b109e266fd08"},{"TableName":"tbld9b405d020ad4775978d6ab877c291fd"},{"TableName":"tblda7b3a6e8c2f4d9abc5dbd741f0a644d"},{"TableName":"tblda9f4588583f43f98efc517c012ff93e"},{"TableName":"tbldabe5494ded3412ca8910a149283d401"},{"TableName":"tbldac5bd20ba3e477b860753a6a985804d"},{"TableName":"tbldafae619f568484eac2c72045f3e271d"},{"TableName":"tbldbc2f0930cea49108caf9b0c8587923e"},{"TableName":"tbldd5e6c64172a47daad8dcaef3725ab64"},{"TableName":"tblddba1310f8c94eca97f7857cda67d3e9"},{"TableName":"tbldddf2b00c33846a4b7579452ed2f03c0"},{"TableName":"tbldde775431a5542ba92d204b70426897a"},{"TableName":"tblddf1d23ea3a54f9baca424537e917fbf"},{"TableName":"tblde8b656497f24cf7ac119873ab053073"},{"TableName":"tbldfb2893f657f41649273393e09336940"},{"TableName":"tble0c4f5a5692641acb2e775f3338fc24f"},{"TableName":"tble12bbd1539254e399231832071b5af27"},{"TableName":"tble169dd9d7cdb48d19195759afc8b6da2"},{"TableName":"tble185d5c633644b4081e7205bbda3707f"},{"TableName":"tble1adce3cebae47d4bf2e7d1141fb5dd1"},{"TableName":"tble1d33848c0314d75b08db686eb82fab5"},{"TableName":"tble1eb3f37873f4362acc5e3fce7c3157b"},{"TableName":"tble28b124b1eaf48b8a804f275988e8187"},{"TableName":"tble35f110c6d474217a45ca9f1e8c926da"},{"TableName":"tble4db5e35454f41ada2eb83f096d2b00d"},{"TableName":"tble571f021cd5742ad81310606fa6481fb"},{"TableName":"tble5ccc0f3454048eba161d8be93fcce7f"},{"TableName":"tble5eb6f854ab04694acfe645ca68eec36"},{"TableName":"tble6d71d02d2e246dd8b51cca1c62ac0d2"},{"TableName":"tble7aa728f0c744b68967ecb032288a11c"},{"TableName":"tble7afd16629b9412a8e95495d3233d418"},{"TableName":"tble7eb33ec657e4178b3204f0e24b6a955"},{"TableName":"tble8722dcc905c46bfa7b678b559909e6f"},{"TableName":"tble98ad279928f4db1abe6536939f6fcc6"},{"TableName":"tblea1c1a3316d749aebb7cc1dac25591a1"},{"TableName":"tblea5817925e2545c2933dceec09fdd66d"},{"TableName":"tbleaab3e5193a34eca99a0048c3cb1e080"},{"TableName":"tblead0b1f6d4da4c0ea1efac8254bcd075"},{"TableName":"tbleb1067bc8cd64c3eaf1dc029cd37a1ae"},{"TableName":"tbleb3adcf89bea411dba025bb48ac62a21"},{"TableName":"tbleba920a84a5b4fbcb1a5b3b6801cedc4"},{"TableName":"tblebf2efe7e7af40218e7244589155fb7a"},{"TableName":"tblec2342c1136f4ba196dbb5b297a545bd"},{"TableName":"tblec798b253ce241dea3dc80d02da349d7"},{"TableName":"tbledcc55c88d3f4de183830e1450b45749"},{"TableName":"tblee23651036274002a50bd465a674073c"},{"TableName":"tblee2e6428cb194677986f182089f5650f"},{"TableName":"tblee549b11ecb449f2b944942b9b2a30ab"},{"TableName":"tbleea33735e2ad4277ab68e56a6caf0291"},{"TableName":"tblef1c1522d51e4c67947394499a35ef82"},{"TableName":"tblef3d2bf1b19b4c53ade544858ae31f59"},{"TableName":"tblef6086dabf1f4f0da9006cce0b2f01d6"},{"TableName":"tblefdffe44d1aa43f3a60b84e54f476ac2"},{"TableName":"tblf033517d612a41e298f6048cd0bd6496"},{"TableName":"tblf0495838532f49d5a67adb9582074ac0"},{"TableName":"tblf0efbd89fb204f45aabbb1ef66b46b41"},{"TableName":"tblf1354e08adf94b4a992d831fdd36b1a8"},{"TableName":"tblf13d75694be44fb6bad2b7f7fc038edd"},{"TableName":"tblf201b3655ed7434a9a1d774e1188c61e"},{"TableName":"tblf20e8341cfe944da8a9f615d29d16043"},{"TableName":"tblf24e31cc5bf84d96ae80506db4fa0a47"},{"TableName":"tblf27d981223f446029f30cc90138fa1e3"},{"TableName":"tblf2a3fb7fddaf448aab7dc8e89606fb78"},{"TableName":"tblf2d9d8c8a0cb4403b4e71c278055929b"},{"TableName":"tblf2df94d744b44aa1bf93b3d1c88bf4ac"},{"TableName":"tblf3b11ae38c034bf98dfda713a32a9fce"},{"TableName":"tblf40bb499741b4511a5d86136c74f859d"},{"TableName":"tblf4121aa3f11b466dabeff25612c73129"},{"TableName":"tblf4b702ba9a0047c18baed8fad2adfa72"},{"TableName":"tblf5091efe9c02491a927fa98e926f0ae3"},{"TableName":"tblf5216227dfd34e6fb761546e6d38e4e8"},{"TableName":"tblf574d07a882f4b409319b3075bfd5f50"},{"TableName":"tblf58c376fd08c434289404139ecfd0505"},{"TableName":"tblf5f5b9a054b6422d9a9e816bc8e6eeb0"},{"TableName":"tblf6a66f18d6e6459ebb0da96341050bfa"},{"TableName":"tblf7d950839e1a427b97a401ac6cd8933e"},{"TableName":"tblf81f0872556944528748609fb7ca2b49"},{"TableName":"tblf87dfacd199b475381f696081af4c1a1"},{"TableName":"tblf962d96005c64eff97823904d17ffbac"},{"TableName":"tblfafcaa82853e4ee8837273d4c1716106"},{"TableName":"tblfb24d5bca2a947f9b0b37b1c7d9eae0e"},{"TableName":"tblfbf0417f489b4000bd3fe5792d9de1c1"},{"TableName":"tblfc4b59dbc32a48599771c876ea10c530"},{"TableName":"tblfdb306f3576941059ea61c5d74b5db80"},{"TableName":"tblfddb2fbd576e4c9890d49ec2f5e760b9"},{"TableName":"tblfdf5aa6c7d68412f80d4838ec323cb8b"},{"TableName":"tblfe70485407dd4cd18cc5d73e27a23173"},{"TableName":"tblfeb034a12e9b43afb065b0f4f3a292d0"},{"TableName":"tblfeccdb4b02354087a9247758d6678d1f"},{"TableName":"tblfee8a8f30a4742caa227e9916ca70442"},{"TableName":"Tc03609224ea141359aa23b3a7a545ec1"},{"TableName":"tc3a6dfc248a94ff886ff55065164f587"},{"TableName":"tc4257c2c050249df921cc55b9d06ef61"},{"TableName":"tc469f4b8bef347999a225bb4a16db41a"},{"TableName":"tc4f0d5e1cadd46cfbe72fba2c94bfc66"},{"TableName":"tc69de9cec4a24d10928ee322457ca420"},{"TableName":"Tc7355f7e91c14b6cbe01e3205536c302"},{"TableName":"tc99fe76513c84482b416fb1b800c72cf"},{"TableName":"tca3103bb04554fd2b2502a7ef49d54d5"},{"TableName":"tca8be91d2b9140198c3f2e14091c23e0"},{"TableName":"tcb20fc7d94c64a758339474d60321672"},{"TableName":"tcb9717788f9e4c818f8ac1b1e27984d2"},{"TableName":"Tcce7c028adfd452c98e733a0da6e1f41"},{"TableName":"Tcd1fd83945534ac4af8472817e3d4697"},{"TableName":"tce841ce28cc5494ab71a0498fb1a63bd"},{"TableName":"tceae84a5580842a9b6167b711ed6684f"},{"TableName":"Td05c1f9fe9334841a944aa34cc2f3ab1"},{"TableName":"td10b393602c147d8ba1f02a20c16fb01"},{"TableName":"td240846e3fdd40bc87b5c457bb6dae5b"},{"TableName":"td2aea76be443494498e6b5fc6c95d483"},{"TableName":"td42c35dbb8b34aef97df68061c434760"},{"TableName":"td5edfdcd2ce147658c5c37c9c2b00ba3"},{"TableName":"td6e52c6f7e8847929d44b940ded8c440"},{"TableName":"Td71d425df49a46faa4722060b2b5acf0"},{"TableName":"td9683cc6df5645acbf0fff23e96bb333"},{"TableName":"td9a2809ba7ad475bbd3b3138eeeb3b16"},{"TableName":"tdc3d7ce781f9424f8f588dc9072ca520"},{"TableName":"tdd27360a165b434ebcb12525844603dc"},{"TableName":"tdea9ec7014d242c6b4b7e169f8c182b3"},{"TableName":"tdf698da2642e4b45bee686c4328d07d1"},{"TableName":"tdf9b66eaf89040bf95461302dca50bac"},{"TableName":"te0a4a855af1044b99da80545231890c6"},{"TableName":"te0ec4e9276ed4dbbb4a4375b05b0ff81"},{"TableName":"te15e17122c5a4c7f9b0b6b86e35e5017"},{"TableName":"te44c86227815425cb6005afabcd49c3d"},{"TableName":"te52ac36078ba48aea5f095838d98ce04"},{"TableName":"te56b26d1f29d4eb6b8bb169cb9dc35f0"},{"TableName":"te67702f3732d4bc7a875cef40439dfd9"},{"TableName":"te88400787fcf471da0f3ca107437bdc7"},{"TableName":"te96d4736f8564e2997eb13b473badada"},{"TableName":"Te97fa48dc4ec4039a3af649e659e5e40"},{"TableName":"te99ec2d5f1c44cc3ad330c4a98330953"},{"TableName":"Tead0e8a84fe5454884c4b113d896f840"},{"TableName":"teb97c4ad7041421fbc52a8c75e0e7281"},{"TableName":"tec2afa9a40e2420e899417b36b590c77"},{"TableName":"ted33b88df1884cde86ce3210e20a2c3d"},{"TableName":"ted7c307f049e4fa69719f00aeeb31752"},{"TableName":"test"},{"TableName":"test5"},{"TableName":"TestTable"},{"TableName":"Tf063f0d9ad624161907fb36906ad6881"},{"TableName":"tf1900f23dda9404ca4b8a34ecef2c44b"},{"TableName":"tf2078facdb0944f59858bff58a1aee49"},{"TableName":"tf21665cabd1f47868309111884bdfe6f"},{"TableName":"tf272073eb34b4a14b5c7455c5f9d55cb"},{"TableName":"tf2c82d7148ea4f84bb1e75918ac9bcd6"},{"TableName":"tf358b6831d8d49238b4afac169a994c9"},{"TableName":"tf49c752e047b43c2890276299670b6c7"},{"TableName":"tf4c610ffcdba4fbfb49805b0d9fe4c43"},{"TableName":"Tf61a5071c3cc4d648021207406088d4b"},{"TableName":"tf6516afa9bb44978af70d9b0e1d6f8f8"},{"TableName":"tf6a18ec940a747f8915aab7129a7433d"},{"TableName":"tf76822d364ea42b28e3ef17c9f3a82ce"},{"TableName":"tf836b2d51d6340ed899dd0ccf37dc3c3"},{"TableName":"tf8fc1c26d5e74d9eaaeb5caf7d0281dc"},{"TableName":"tf9b171aa158d4980a62b2d097e436a93"},{"TableName":"tf9d4511135394ee285b5d69a4d49b22e"},{"TableName":"tfafa6d903d594a0cae08d9e145b1c8f3"},{"TableName":"tfb7c7517bf6343e8950977e16ae8105d"},{"TableName":"tfdae40659cb7443b82f728924449ede9"},{"TableName":"tfebcd4988b5643fbb5a6e7104be8387a"},{"TableName":"Tff00e9043e504729b8ded696d6a7f094"},{"TableName":"tffb444547f224eaf80654d8a6dab56c8"},{"TableName":"tffce2ff958d64e68a9481639b973c073"},{"TableName":"tffd14cfe34b24dbc808eede5231a08a4"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:07 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [d4561e41-0002-00ed-6309-fc5d50000000] + x-ms-request-id: [205a3069-0002-00c2-5803-fddc6a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table.test_list_tables_with_marker.yaml b/tests/recordings/test_table.test_list_tables_with_marker.yaml index 96d38808..339a28f7 100644 --- a/tests/recordings/test_table.test_list_tables_with_marker.yaml +++ b/tests/recordings/test_table.test_list_tables_with_marker.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [87796d94-67fc-11e7-9e36-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b59db1da-68f6-11e7-92cf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:07 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''listtable3f561007'')'] - Date: ['Thu, 13 Jul 2017 18:53:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:09 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''listtable3f561007'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [25a3e0d7-0002-0014-4d09-fc97b0000000] + x-ms-request-id: [1efd26f5-0002-00b3-1103-fdae53000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -39,24 +39,24 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [878d81c6-67fc-11e7-83a1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b5b25fd8-68f6-11e7-aef1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:07 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables response: body: {string: '{"odata.error":{"code":"TableAlreadyExists","message":{"lang":"en-US","value":"The - table specified already exists.\nRequestId:25a3e0df-0002-0014-5109-fc97b0000000\nTime:2017-07-13T18:53:15.8400144Z"}}}'} + table specified already exists.\nRequestId:1efd270c-0002-00b3-2503-fdae53000000\nTime:2017-07-15T00:44:09.8100888Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:09 GMT'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [25a3e0df-0002-0014-5109-fc97b0000000] + x-ms-request-id: [1efd270c-0002-00b3-2503-fdae53000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: Conflict} - request: @@ -69,24 +69,24 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8792c79e-67fc-11e7-a1f2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b5b73274-68f6-11e7-bfae-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:07 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables response: body: {string: '{"odata.error":{"code":"TableAlreadyExists","message":{"lang":"en-US","value":"The - table specified already exists.\nRequestId:25a3e0e1-0002-0014-5309-fc97b0000000\nTime:2017-07-13T18:53:15.8730378Z"}}}'} + table specified already exists.\nRequestId:1efd271b-0002-00b3-3303-fdae53000000\nTime:2017-07-15T00:44:09.8441160Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:09 GMT'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [25a3e0e1-0002-0014-5309-fc97b0000000] + x-ms-request-id: [1efd271b-0002-00b3-3303-fdae53000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: Conflict} - request: @@ -99,24 +99,24 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8797ba10-67fc-11e7-ac1b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b5bc7840-68f6-11e7-b520-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:07 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables response: body: {string: '{"odata.error":{"code":"TableAlreadyExists","message":{"lang":"en-US","value":"The - table specified already exists.\nRequestId:25a3e0e6-0002-0014-5709-fc97b0000000\nTime:2017-07-13T18:53:15.9050622Z"}}}'} + table specified already exists.\nRequestId:1efd2729-0002-00b3-4103-fdae53000000\nTime:2017-07-15T00:44:09.8771382Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:14 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:09 GMT'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [25a3e0e6-0002-0014-5709-fc97b0000000] + x-ms-request-id: [1efd2729-0002-00b3-4103-fdae53000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: Conflict} - request: @@ -126,9 +126,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [879ca3fe-67fc-11e7-945f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b5c18cb8-68f6-11e7-9192-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:07 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables?%24top=2 @@ -137,12 +137,12 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:09 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] x-ms-continuation-NextTableName: [1!36!ZGVtb3RhYmxlNQEwMWQyOWQwMzYzMjlkYjVk] - x-ms-request-id: [25a3e0ed-0002-0014-5b09-fc97b0000000] + x-ms-request-id: [1efd2733-0002-00b3-4a03-fdae53000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -152,9 +152,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [87a23422-67fc-11e7-90dd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b5c6f3a6-68f6-11e7-a704-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:07 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables?%24top=2&NextTableName=1%2136%21ZGVtb3RhYmxlNQEwMWQyOWQwMzYzMjlkYjVk @@ -163,12 +163,12 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:09 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] x-ms-continuation-NextTableName: [1!36!bmV3dGFibGUBMDFkMWVlMzQ3NWQyY2QwZg--] - x-ms-request-id: [25a3e0f0-0002-0014-5e09-fc97b0000000] + x-ms-request-id: [1efd2743-0002-00b3-5903-fdae53000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table.test_list_tables_with_num_results.yaml b/tests/recordings/test_table.test_list_tables_with_num_results.yaml index 1fe42976..994dea0f 100644 --- a/tests/recordings/test_table.test_list_tables_with_num_results.yaml +++ b/tests/recordings/test_table.test_list_tables_with_num_results.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [87debe2e-67fc-11e7-b427-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b5f5d75c-68f6-11e7-90e6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:08 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''table967e1246'')'] - Date: ['Thu, 13 Jul 2017 18:53:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:08 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''table967e1246'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b366c1a9-0002-007b-2109-fc3f64000000] + x-ms-request-id: [33627e0c-0002-007d-0203-fdc81c000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -39,24 +39,24 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [87f393d0-67fc-11e7-8528-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b60bb3e2-68f6-11e7-a8ed-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:08 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables response: body: {string: '{"odata.error":{"code":"TableAlreadyExists","message":{"lang":"en-US","value":"The - table specified already exists.\nRequestId:b366c1b5-0002-007b-2a09-fc3f64000000\nTime:2017-07-13T18:53:16.5175868Z"}}}'} + table specified already exists.\nRequestId:33627e16-0002-007d-0a03-fdc81c000000\nTime:2017-07-15T00:44:09.0864297Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:08 GMT'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b366c1b5-0002-007b-2a09-fc3f64000000] + x-ms-request-id: [33627e16-0002-007d-0a03-fdc81c000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: Conflict} - request: @@ -69,24 +69,24 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [87f8a3ac-67fc-11e7-9e07-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b610b3cc-68f6-11e7-8f50-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:08 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables response: body: {string: '{"odata.error":{"code":"TableAlreadyExists","message":{"lang":"en-US","value":"The - table specified already exists.\nRequestId:b366c1b9-0002-007b-2e09-fc3f64000000\nTime:2017-07-13T18:53:16.5486089Z"}}}'} + table specified already exists.\nRequestId:33627e1b-0002-007d-0f03-fdc81c000000\nTime:2017-07-15T00:44:09.1204527Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:08 GMT'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b366c1b9-0002-007b-2e09-fc3f64000000] + x-ms-request-id: [33627e1b-0002-007d-0f03-fdc81c000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: Conflict} - request: @@ -99,24 +99,24 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [87fd49d4-67fc-11e7-b7ac-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b6160568-68f6-11e7-aa8f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:08 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables response: body: {string: '{"odata.error":{"code":"TableAlreadyExists","message":{"lang":"en-US","value":"The - table specified already exists.\nRequestId:b366c1c1-0002-007b-3409-fc3f64000000\nTime:2017-07-13T18:53:16.5796315Z"}}}'} + table specified already exists.\nRequestId:33627e23-0002-007d-1603-fdc81c000000\nTime:2017-07-15T00:44:09.1554776Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:08 GMT'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b366c1c1-0002-007b-3409-fc3f64000000] + x-ms-request-id: [33627e23-0002-007d-1603-fdc81c000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: Conflict} - request: @@ -126,9 +126,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [88022c38-67fc-11e7-935c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:16 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b61b2c34-68f6-11e7-ae23-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:08 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables?%24top=3 @@ -137,12 +137,12 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:15 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:08 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-continuation-NextTableName: [1!48!bGlzdHRhYmxlM2Y1NjEwMDcBMDFkMmZjMDk0OTE1YmQ3Zg--] - x-ms-request-id: [b366c1c8-0002-007b-3b09-fc3f64000000] + x-ms-continuation-NextTableName: [1!48!bGlzdHRhYmxlM2Y1NjEwMDcBMDFkMmZkMDM3N2VjMDFmZQ--] + x-ms-request-id: [33627e28-0002-007d-1b03-fdc81c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table.test_locale.yaml b/tests/recordings/test_table.test_locale.yaml index ec143c80..9a45f7f6 100644 --- a/tests/recordings/test_table.test_locale.yaml +++ b/tests/recordings/test_table.test_locale.yaml @@ -6,23 +6,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [882ac508-67fc-11e7-975f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b646bfbe-68f6-11e7-91e0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:08 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables response: - body: {string: '{"value":[{"TableName":"CAPStable95217c74610847f795a116878ecde584"},{"TableName":"demotable"},{"TableName":"demotable5"},{"TableName":"newtable"},{"TableName":"pemari020817a"},{"TableName":"people"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e90"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e91"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e910"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e911"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e912"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e913"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e914"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e915"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e916"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e917"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e918"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e919"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e92"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e93"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e94"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e95"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e96"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e97"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e98"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e99"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab170"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab171"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1710"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1711"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1712"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1713"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1714"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1715"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1716"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1717"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1718"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1719"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab172"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab173"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab174"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab175"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab176"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab177"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab178"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab179"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f0"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f1"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f10"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f11"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f12"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f13"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f14"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f15"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f16"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f17"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f18"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f19"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f2"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f3"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f4"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f5"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f6"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f7"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f8"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f9"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e60"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e61"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e610"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e611"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e612"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e613"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e614"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e615"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e616"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e617"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e618"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e619"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e62"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e63"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e64"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e65"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e66"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e67"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e68"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e69"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f70"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f71"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f710"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f711"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f712"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f713"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f714"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f715"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f716"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f717"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f718"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f719"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f72"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f73"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f74"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f75"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f76"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f77"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f78"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f79"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f21"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f210"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f211"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f212"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f213"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f214"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f215"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f216"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f217"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f218"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f219"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f22"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f23"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f24"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f25"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f26"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f27"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f28"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f29"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a920"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a921"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9210"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9211"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9212"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9213"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9214"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9215"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9216"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9217"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9218"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9219"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a922"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a923"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a924"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a925"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a926"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a927"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a928"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a929"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e220"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e221"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2210"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2211"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2212"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2213"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2214"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2215"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2216"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2217"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2218"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2219"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e222"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e223"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e224"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e225"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e226"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e227"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e228"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e229"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c70"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c71"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c710"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c711"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c712"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c713"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c714"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c715"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c716"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c717"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c718"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c719"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c72"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c73"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c74"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c75"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c76"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c77"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c78"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c79"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b0"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b1"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b10"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b11"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b12"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b13"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b14"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b15"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b16"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b17"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b18"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b19"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b2"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b3"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b4"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b5"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b6"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b7"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b8"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b9"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c10"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c11"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c110"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c111"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c112"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c113"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c114"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c115"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c116"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c117"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c118"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c119"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c12"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c13"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c14"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c15"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c16"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c17"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c18"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c19"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b0"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b1"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b10"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b11"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b12"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b13"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b14"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b15"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b16"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b17"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b18"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b19"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b2"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b3"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b4"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b5"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b6"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b7"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b8"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b9"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a200"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a201"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2010"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2011"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2012"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2013"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2014"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2015"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2016"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2017"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2018"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2019"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a202"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a203"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a204"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a205"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a206"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a207"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a208"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a209"},{"TableName":"T001a0d2027f54dc0b9f93dd5f349785b"},{"TableName":"t00b14916910d42a796d35364e302075e"},{"TableName":"T00c393541b8f47469538e3632616c763"},{"TableName":"t01efb689725a4ae3b47fdc2575a19fa1"},{"TableName":"T02118a1eb5f248bea693e0e71fd097ee"},{"TableName":"t02817ec72156410ea2ddb5081f30bf57"},{"TableName":"t03aac74f336e4eb2923c221833a5bd4b"},{"TableName":"T03c5fea258d345e9944cfd9b9a8386f8"},{"TableName":"t048f72a916604721ab12298e7c3aaa53"},{"TableName":"t0563f3c5ed4c44e08f14d9ee19cb62c5"},{"TableName":"t0579e1d5c78a4c0598d8a5243cf43e65"},{"TableName":"t058f55460f50431d9a1109489fa76d14"},{"TableName":"t06249c0d5f6e431db554d338e64058f2"},{"TableName":"t066fd88625494f779d532ce67910a27c"},{"TableName":"t08698e98708d450e9e14297d9fb922b7"},{"TableName":"t09425794c2a149babf57b94c9230916a"},{"TableName":"t0a2646b3c45b4de3a512c5ca917f078e"},{"TableName":"t0a8dc1d7f26445e79d61495be7b0c7c0"},{"TableName":"t0ab3375e9251427abe9057111e156759"},{"TableName":"t0af90339dd2446af9a3147b69fcfa594"},{"TableName":"t0c41c70c0af84bd88518e3fcf73aa479"},{"TableName":"t0cb6bad4131f44b7964d9c8f737acc4c"},{"TableName":"t0e7da6e28794415883dab9336c90cb90"},{"TableName":"t0eda652c09164dc1a9d8c53a732ea9dd"},{"TableName":"t105c4852580c4a41a534dfbe3c9469be"},{"TableName":"T10ffcc88fab14fb2ba3d7a1394eeb564"},{"TableName":"t128e736ea01249eabcbdb2cbf17a2de8"},{"TableName":"t13818bd160004e328f5bd59ea78e05b8"},{"TableName":"t13b954f8935243149d27331fd2d6d649"},{"TableName":"t140b55e16ebd49b09befd9666d62d1e0"},{"TableName":"t1484c4f4519d4480a52534e9aefcde4b"},{"TableName":"t158b25ce8be14b5280432b79a1307750"},{"TableName":"t18f1e389c0904a78965d9976e401f78b"},{"TableName":"t19f50a9ce2864924ba2b2354cafc1830"},{"TableName":"t1b88bfa490d14c91bb849c5ef94303e3"},{"TableName":"t1b8bebfd31fc487b8a5f7922559aac11"},{"TableName":"t1bc1f75399fc437b8df9db1d3205cc1b"},{"TableName":"t1cb58996b8234759b9ddc8d4bf7288e7"},{"TableName":"t1d79196c24e143aa94371dfee49d87af"},{"TableName":"T1e058ffab15b4a6386c7bd4ebede17ab"},{"TableName":"t1eda7153fa8d4eab95f97575842cce54"},{"TableName":"t1eeb273ecfcd41b0be3c2db5275edc36"},{"TableName":"t1f13b22051c34ecfa86cfa2c54a460dd"},{"TableName":"T202b90f3d1b646a2abdbf2762dd158d3"},{"TableName":"t210bba068de14c83adfc9d8accdc54e9"},{"TableName":"t226f3597cb4840f5a163608200165f7e"},{"TableName":"t22ff30a42e304fc5aa04f2f8f4ca5720"},{"TableName":"t2322401054214fc3a418f475764acf67"},{"TableName":"t239c475ba4104834a67ead593ebabb11"},{"TableName":"t239fdf5026804cbcb7c14b09ac2fdbc0"},{"TableName":"t23c597ced1f3412c92513754a9aa1e6a"},{"TableName":"T2483038bc7694206ae1a99f644b13dfa"},{"TableName":"t24a991a33d6b4c5fa24c680f57622167"},{"TableName":"T24bf8de6a2be48d8acd01c327e3f77a7"},{"TableName":"t24e4a1806ecb4495ae8238c680218069"},{"TableName":"t2520c291fb53413985d3624a3fbb89cb"},{"TableName":"t25ac64dc7c4e4d89aaa44c98d93ad3d9"},{"TableName":"t2649d805c9bd418695e06819306aeb74"},{"TableName":"t268ede48e84a4eadb2adf667a9ef1c63"},{"TableName":"t2768a2c7f0184acf92481a8d2ae2ea5c"},{"TableName":"t279cddab984a40f7afc1e06bd42aae2a"},{"TableName":"t284869193e3c49c5921444ddbbc520f2"},{"TableName":"t289074fe5d88471f93b67498416d77e7"},{"TableName":"t2a808a43b1df42538f7d0e6528deb981"},{"TableName":"T2c064f7225e646ccb03d0aa773d4118e"},{"TableName":"T2c17828b990247e5843613f40b8f83fd"},{"TableName":"t2cd13915b2a34f27bdc41a62928af15b"},{"TableName":"t2d600d68aed5423eb1f45cc0b81451d8"},{"TableName":"t2dfe60179b2b45a6a1d9a787ef43a00c"},{"TableName":"t30146d92cf8843699a583e457a6371dd"},{"TableName":"T30385924e36641499738e07546aea50e"},{"TableName":"T3054f4f748834cab95768cee54fe0e9c"},{"TableName":"t311273edb2024ca6a84e97d3435f9f5b"},{"TableName":"t31a694ed5a3643e3a1043f022a1c8c36"},{"TableName":"t3210579cd44241e29d2113091739781a"},{"TableName":"t321ad756750340bfa89a52aa59483525"},{"TableName":"t353d025c335c4afb813fb5865ee15c94"},{"TableName":"t356b63d49c4a48c4b0920cc5e71b1c1e"},{"TableName":"T35a29d9c14ab4e1b88da732a81aaee90"},{"TableName":"t35e3e2a74268499abe912ee7040b061e"},{"TableName":"t3605f3775d72472bbe5f2c555a3337fd"},{"TableName":"t369261b3de074f178984f2c1f3f119ef"},{"TableName":"T373e0f31c2b941c6ab936b346b685442"},{"TableName":"t37d2bb67cd4347f8a4779f4ee7e80cf5"},{"TableName":"t382cd0a38b554a648166c036b9f9ca20"},{"TableName":"t396caf1032304f6a95f5ce410bc8a52f"},{"TableName":"T39d7379f916a4cc2890beee365c70a1f"},{"TableName":"t3abe5dcb8022415d9be471cdb03f049f"},{"TableName":"T3dddd798c85e455aa703caa086e68e14"},{"TableName":"t3f3e3e8ab1824c7488a399390467e0a9"},{"TableName":"t3facb27d75e94310b9a48ab2fc77666b"},{"TableName":"T431b4306bebe49949c20b23d670970b8"},{"TableName":"T4462b5289b13422ab679dbc462420699"},{"TableName":"t44b8d6ca247b4bbdbb14c745e993a59a"},{"TableName":"t45079372c0ec40a7b902b9529aac1697"},{"TableName":"t453fd7a0784046a48c8ed928c09b6f8d"},{"TableName":"t45b21c561b4040dcb2beabd809cd91b3"},{"TableName":"t47a49bafb9f640f4943cb3ba93eb409c"},{"TableName":"T493949ca50664a4db5468fa0e2390eb2"},{"TableName":"t4a9c71986f7c429b84a79b8fbdbd0df3"},{"TableName":"t4aba1d73f80e4c96b3c8b25cf7703d06"},{"TableName":"t4be1e227925a4c0ab74c17dd906b2feb"},{"TableName":"t511fa36357c54e55b09d26acfd95ac9d"},{"TableName":"t51310554d1e74db7bf00532c18e2295a"},{"TableName":"t53b7ef24d31f4e919150806b799df59b"},{"TableName":"t542d01077d6d47e498b1585a67e45c13"},{"TableName":"t548f026bbff8481d94d8aa221ed5f23f"},{"TableName":"t555d34b0ced641f4a227ece8a08c84b5"},{"TableName":"t55e8ca02f1524fbdb99ca2692f4e5e12"},{"TableName":"t56c67828e7d049168adbbcb26ead2c14"},{"TableName":"t57235838b0194a05b809271d11444c34"},{"TableName":"t577cb81f82414d1f8352a85afb1ff1ba"},{"TableName":"T590a53ba8aff41d7affeac5e4efc5593"},{"TableName":"t5a46703596f84649ab8c312a2eed92b1"},{"TableName":"t5e1ad56606a64d96b2718456750b2513"},{"TableName":"t5e3665cbb8e1401c968eab1465d57c00"},{"TableName":"T5e7c50920d164e52ad5bc44821e00f2b"},{"TableName":"T5eb0bb280d7340a2b3dc0267d752d3a9"},{"TableName":"T5ed3e70ac822466a8c141aa743e8dc65"},{"TableName":"t61b845ed4f8e4cff9badfcbcd3082a7e"},{"TableName":"t61e86f73b6c2455b81cb999b909f7f61"},{"TableName":"t6329124794cf4df09c8677cd32f9d067"},{"TableName":"t63d6f3c5f0b842bb978ad40b91047825"},{"TableName":"t675d26e2830a49cb8ecf614e9c4fdde1"},{"TableName":"t68b67dda5bc744bfbb35354087beb505"},{"TableName":"t6ae53578e96e4bd48c40b31a56dae2d6"},{"TableName":"t6b863737a073438cbc3c6798f6ecc854"},{"TableName":"t6ce27c3d3aa74568aeba3a95d9acb8e0"},{"TableName":"t6dd7b90432da494ebb0558a063f7816e"},{"TableName":"t6f268262f04843e6a55eeb8167218ebc"},{"TableName":"t6fe7d571364b4226ad68cf1f29a97146"},{"TableName":"t6ff0f70deded43229966de9b5ca786e0"},{"TableName":"T6ffecac0d10b40c4a4bc053d6ea3a5ca"},{"TableName":"t706ec073d02646d0b6c57e840fbbfa14"},{"TableName":"t72d7fed3dd234889bd1948913e3e7656"},{"TableName":"t734c858a2b9640109e3e140b9350438a"},{"TableName":"t74fd2e8d8c354acfac7f7a6501e3c5a9"},{"TableName":"t765f557c87454c15b26ff64ab0bc76dc"},{"TableName":"t77205a1d70c648ee86b8b1f05192acf3"},{"TableName":"t79963f4d52a64e559f71573826da3a7c"},{"TableName":"T7b2779d3af704a44a96783537577f746"},{"TableName":"t7d8b361486d44becaf62f8469dd188f8"},{"TableName":"t7e300b947a194e7794e05d103c54c78a"},{"TableName":"t7eb357cbe7b84ecc891b8a8f6aeb087d"},{"TableName":"t7f50cce2a10a49db879cccf58aaa581c"},{"TableName":"t7fd512ff4cfe47929c2fe50b7e7031ed"},{"TableName":"T7ff2cfac881c47f3a07cf75d347dce8a"},{"TableName":"t81f68ae476354d91a1789ea46d45aab5"},{"TableName":"t82d43e3d401142c894bc0198adf6caa6"},{"TableName":"t85152cd675784189bd53a6c71092f408"},{"TableName":"t8599ac762b1c4f1ab59b8d196e69b43c"},{"TableName":"T85db1fa2441644faabddc956b280a7f2"},{"TableName":"T85eac84d5b4e49b09082209fff382de7"},{"TableName":"t86436862f7644dcd907fe4137b195199"},{"TableName":"t87b60d612fdf43e19a1a9bc071aad2e0"},{"TableName":"t88f02fa7c8964c288cd1504553d13c8a"},{"TableName":"t890ffe96bd024382a1a42248e5849f57"},{"TableName":"t899d65a253a94846a3e6ce294a2afa58"},{"TableName":"t89a29b851d934a0e8451480573c514bd"},{"TableName":"T8a87309408874ebdb0bf79c047513321"},{"TableName":"T8af1ee954b58477f91b0397bdc397067"},{"TableName":"t8bb2e8c5498e4f8b9c11c3ea9a588ca1"},{"TableName":"t8d66fe617fc246dfb91773f3f66dc3c5"},{"TableName":"t8da2a859a73a457c8ee6464472110d95"},{"TableName":"t8dcdfba99dd6482380271aedf98af15e"},{"TableName":"t8f0da058f9944a3f891491e58ebbae5b"},{"TableName":"T8f890bca9f7c4e28b32e5dbc9bb556d0"},{"TableName":"t905ab23943424b79b21f9328bed4b7b4"},{"TableName":"t91f9034c55624947a819d2f22015c47f"},{"TableName":"t93a43796e9a34d2482f30ee0b3029499"},{"TableName":"t93d204249d744b1cad157eb4c16c2204"},{"TableName":"T954210538a4c48d6b9d445ee0e7a78ae"},{"TableName":"t957b2df1c8224a428a50831287be92e9"},{"TableName":"T962f4707d2a94b1c8a97cbe434910f2c"},{"TableName":"t967f39d0ae3442f7a8c3a46ae4fc5144"},{"TableName":"t9c7df29f73364e34be2d5e305a3755b1"},{"TableName":"t9c9556a6c9b040269d6edd9eabea24b6"},{"TableName":"t9c99f896e3a042b38652c11651a40228"},{"TableName":"t9d8311208d96439d88bd6080162d9d8a"},{"TableName":"t9e009d9c1b2d4861b0739b1dae859f1d"},{"TableName":"t9efd20a9ee7c423fbb2304bd84edd06e"},{"TableName":"t9ff6174fab9e4734b4c041f95c30a34f"},{"TableName":"Ta009ccc8e6014f1e98257cc9cac7f1ba"},{"TableName":"ta0c1ef135d6b4878b49e149a5c5fbe0e"},{"TableName":"Ta0e9e7db38d246238553573379cb977b"},{"TableName":"ta364010aa3ef49dbaa7d886a7a6120f8"},{"TableName":"Ta38a095e4a9346a0b72f5709638dde4e"},{"TableName":"ta3ff0eec988c47979568e82b9427b0bb"},{"TableName":"ta42aa2e01a4c426ab36c61ef208b9eba"},{"TableName":"ta511e453d9ed49e3898cda8a72b5a6d9"},{"TableName":"ta62e883698624762abab293af6c0a30c"},{"TableName":"ta7ab83d1cb6340bfaa3f7ab6a06550b9"},{"TableName":"ta7cf5249eac547a0a4bbf21bf3e98af6"},{"TableName":"Ta7db20ed615b4e919a1e22bbbde731f1"},{"TableName":"ta85b7b50521c4ce28d087d30aa9d2edc"},{"TableName":"ta8f22e668434424883761b07c8010721"},{"TableName":"taa6ad663d5c14dd38ef18065b15115b5"},{"TableName":"table21630f2d9b85c404aaf89e4164727addd"},{"TableName":"table22d62d92d0a4943109b3db56da5c64494"},{"TableName":"table4a2776ff8a6745649ef187562e43be05"},{"TableName":"tableb373389daa4b4d95809ee0b49f319461"},{"TableName":"tac0a7d4872884a81b683b8a8c0fab558"},{"TableName":"Tac2405d7922f4e028a2d5d141c1010da"},{"TableName":"tacef1340a5c74e52b9db4ffa187c47d2"},{"TableName":"tad8ca46eadd54c91b426d3430b501e79"},{"TableName":"taede7221b0c4450d821c9dd189aee51b"},{"TableName":"Taf6bc9e5872b4452bfdc5f0498963bf1"},{"TableName":"Taf9ec0abc3774d8184b57738cfb115ea"},{"TableName":"Tafc1105243e14b4e8a99357bb36faddb"},{"TableName":"tafeebf5ebb26414ea441d8c72b5d36bd"},{"TableName":"tb06ca3bc70f747ecafcaad0b03ba3306"},{"TableName":"tb072979191a944f5b038e2388307c721"},{"TableName":"tb0b2b6c1895949e688a9fd7c8509099d"},{"TableName":"tb2b2c8e9830c4ca7aa23ffdec8ceaa3a"},{"TableName":"tb31a2b4bc50f46148462bcbeb318f248"},{"TableName":"tb36cc2f734634127af837a6732af8cb8"},{"TableName":"tb40c81c918454b26a154ec32a7a039fa"},{"TableName":"tb4a84a7d225d44e09ea84d8aedadefdb"},{"TableName":"tb6135780875849a6b0559471d4fce527"},{"TableName":"tb8280eaa240b45d3a73d8d89a1a23abf"},{"TableName":"tb8bad8692d484baa8e9dce2a3160b409"},{"TableName":"Tb8d01a6fb7ff49729e31749b3b68feb8"},{"TableName":"tb90ab7b977094ee3b879c365fd1212d4"},{"TableName":"tbb3940ead90142f1bd1924b6ee766e83"},{"TableName":"tbce81459f8754c72b8b54e18f7b8917e"},{"TableName":"Tbd248e86f6be4014b0f979b521c9d2d8"},{"TableName":"tbdbe5b3de42243179dd89c32f4c1fcf1"},{"TableName":"tbec1c4c37d6140c294e1ddd2524d8a95"},{"TableName":"tbed01ddee57444a998104655e3d688f2"},{"TableName":"tbl000686f5e73b455081f27370ef8fa5f2"},{"TableName":"tbl0062d9ad6e3b4d55a46d868fbb656405"},{"TableName":"tbl00b2d2fffeca4828b0fac60517fb6aad"},{"TableName":"tbl00b31f1d3cb84e88a3b6ed6a4b3cdf41"},{"TableName":"tbl00e816e8850b4d6c931b55810fbf13c9"},{"TableName":"tbl00f63435a78b49ac82ffc05c4688cb11"},{"TableName":"tbl017a1c1d754447d294e8f267f96b5794"},{"TableName":"tbl01a0c6c00f5d44c7ae88c0bb1e8a2259"},{"TableName":"tbl01fe668f98014ffebc4af382f491ffa8"},{"TableName":"tbl02253db68e3e4197a560b7b0c122e38e"},{"TableName":"tbl025cc69fd70d4e458fe3dc50b24f4485"},{"TableName":"tbl02a1e807822a43a593091f422cd3e0b5"},{"TableName":"tbl0336ce478d4e42cdb3977f83c9c6bb2d"},{"TableName":"tbl0347101f08ca4a12942fb9acab029f9d"},{"TableName":"tbl03ee1a98ea57469ab582d0e254a6646b"},{"TableName":"tbl04abaa521c874037a3d33b588b6b62a6"},{"TableName":"tbl05ca8399c8274af5a6a7d51fe3a5e317"},{"TableName":"tbl0602a32f162a4380bbccfaa5b8fde60d"},{"TableName":"tbl062917b122de4ad2a3aa1097901755ad"},{"TableName":"tbl063ad89c7f284be5990471536f02fd82"},{"TableName":"tbl070e0a69af85489fb733043f3510fd79"},{"TableName":"tbl0761b43d82f94d5fa898a7a818e75558"},{"TableName":"tbl0866f37eaaca47b49261d7b67642720b"},{"TableName":"tbl0867b76ab27a4b12ad8350a1362130af"},{"TableName":"tbl086e9d54d5554641aef4ae7ba708b844"},{"TableName":"tbl088b12d9a2b54ad885c977f69c1bdd0e"},{"TableName":"tbl09247a02e70f482294897de91deb60b6"},{"TableName":"tbl0987f3c091124031905b1c0216ea5772"},{"TableName":"tbl099350c8341e4756a92b56a915b55820"},{"TableName":"tbl0a1b57a26c2243789f55350b005c2a95"},{"TableName":"tbl0aa378c8cbac4e84acaa6a956beee72d"},{"TableName":"tbl0b03168b578942fb8e456e431a68e401"},{"TableName":"tbl0b17bc70fb2c4a8f971ddb7a29c616e5"},{"TableName":"tbl0c840a50343245af8a5f9213dbaa33c3"},{"TableName":"tbl0c9f63b85b654089b27b397e379bd332"},{"TableName":"tbl0e5b1f4b46c842cda6bcbdc273c9d959"},{"TableName":"tbl0f6674e13e1a42ecbef25817ce5ac7db"},{"TableName":"tbl1129e83a15dd40afa6adcd78530a93a2"},{"TableName":"tbl11cf25acd7f045419e7a4254a8706bbb"},{"TableName":"tbl11f519a7b2dd42beab59d87ce79778f8"},{"TableName":"tbl129fece2b1e14eac8f5426afceec2fef"},{"TableName":"tbl12c089ca9bba45d988d48cdcbfcd7714"},{"TableName":"tbl1396fcecec3244a1971f1bfca86f4c3f"},{"TableName":"tbl13ebfd76f5a7457da09773af892026f4"},{"TableName":"tbl1464e550a2a740aeb921328c3b627a64"},{"TableName":"tbl149d25d5bac44a508ea877412162c1fb"},{"TableName":"tbl153ccbf1cd7a4d6a97b37ceae95198a8"},{"TableName":"tbl1543c4dc8a194b3795b3b5994414db0d"},{"TableName":"tbl15bcd127f4304589806064738ddfa48f"},{"TableName":"tbl15d1f2b96b584cdf9d82f0571918147f"},{"TableName":"tbl160e579c0ca44ca0837545bcc3d8baf2"},{"TableName":"tbl177fd5671a244bc0ac4f054b70e9929a"},{"TableName":"tbl17a2e79c12164ffca5b897d9e3566445"},{"TableName":"tbl17a7c97c0631462db8ad520371c60e9d"},{"TableName":"tbl17b699c464404eb584fb7d678c6458a8"},{"TableName":"tbl184df5fe1985430f8548fbb72cf77a02"},{"TableName":"tbl18c942f65d7f46058b70d1b3102f092b"},{"TableName":"tbl193fa418b54d473fb4d91002bc25b8b9"},{"TableName":"tbl194685be8fab4f5c84df5e4c2d1ce75b"},{"TableName":"tbl196b4ada11be490b9e49ef08393939c5"},{"TableName":"tbl19db8a26582f4002a6441800daf016b5"},{"TableName":"tbl19de788233084bc19064b130e8357643"},{"TableName":"tbl1a083f15a6cc4168bc4e812fdcc2d6c8"},{"TableName":"tbl1ab0b29ad1e445fb9fde751ef7258313"},{"TableName":"tbl1b3253d18ae946e9b58f30977e23a4aa"},{"TableName":"tbl1bb2bf6a3bef4949a858ec877aa3ceef"},{"TableName":"tbl1c19da3958714f25b9e96ea4c73fa6cb"},{"TableName":"tbl1c2a284431334e839fc9b819a664ed7c"},{"TableName":"tbl1d6bb4641a4740adb2a0670653254cd7"},{"TableName":"tbl1ea7e212f7b44ad0a5117caf9878309c"},{"TableName":"tbl1eaab3df395c42b888afcd97491e7c31"},{"TableName":"tbl1fa8959e558b4f88a0416355c66c192b"},{"TableName":"tbl2058344813354d5192d9d5141317b051"},{"TableName":"tbl21353ca572e84646a7d7eab5b98920b1"},{"TableName":"tbl21be34b2ab6b4069a7b9286d6aac5fd8"},{"TableName":"tbl2287cabe49554200b504cd71e4b70b24"},{"TableName":"tbl22b5163cd53646a6abf9bfc4f1e01529"},{"TableName":"tbl232753d1e1b14202bb23a1a987d68aef"},{"TableName":"tbl235b55030614434ea6eae4fbf1f30c5a"},{"TableName":"tbl235ce5ff71c240dfbaecd80bfebf9d73"},{"TableName":"tbl238f9d3cb88a4733a2a71681515e878b"},{"TableName":"tbl23ea4e8bd7ba496f9d0d394b3551cb17"},{"TableName":"tbl242064546b024e0db5b4ddf4b178b599"},{"TableName":"tbl24a874d7844b4d28bfb77b39df57abe5"},{"TableName":"tbl250dabf7345a482a904c9a2d742b37b4"},{"TableName":"tbl2522dfaf74ab499fae7ed23de2047800"},{"TableName":"tbl252b7288d41f4602875738c5b46902cd"},{"TableName":"tbl25943060f45c4fe2988fbe38dc0dc430"},{"TableName":"tbl25d68bbb565b49068252c4c3895fca10"},{"TableName":"tbl26738bdcde044248acb7bf2812cda71c"},{"TableName":"tbl2687b6a44ac04050bd69de37c7377cca"},{"TableName":"tbl269349b9757b4d51bf89321fef98e9c6"},{"TableName":"tbl26a13f11fa134160a0e5df0a4c233b61"},{"TableName":"tbl283353011e664b3c9f867cabfa9aa897"},{"TableName":"tbl28623fa19d1147d899b2bdc30e51f706"},{"TableName":"tbl28a3d0a7584a4cceb682121e36ef4dad"},{"TableName":"tbl29e957d938ae40fea956741c5a2a085d"},{"TableName":"tbl29ee00badd95413b8de52b2e0641a278"},{"TableName":"tbl2a05aa88fcec4b60a9bf64e775cc4eef"},{"TableName":"tbl2c0dbd376b0c4704b9c91b256914ed09"},{"TableName":"tbl2ca29a822fff400da658f9173ed09c22"},{"TableName":"tbl2cc94ee6cea14ec0b7edd99d80769134"},{"TableName":"tbl2d569aafca99458c911ec0f77f3824d0"},{"TableName":"tbl2dfea7cf7f904b98ac3192bc70b97fb4"},{"TableName":"tbl2eb4a0ee48224f278eef1881cabd9b3e"},{"TableName":"tbl2f0b14b34e4349f18dbd6788594e03d8"},{"TableName":"tbl2f47f1af37eb4d0dada1b2411421ef69"},{"TableName":"tbl30415045a54b45e1b5234f0f2e0a7ea3"},{"TableName":"tbl30caacdaaafb4771a4a0d712bfb4db52"},{"TableName":"tbl30ef45fa80804f03a8ca21965713b7f2"},{"TableName":"tbl3109b53f9b634cc6a58d5e5dca87d86c"},{"TableName":"tbl311251759a9146ed839b0b97a3f79b40"},{"TableName":"tbl315e4502eaf8454d91c22de8d676dee3"},{"TableName":"tbl31bb6c083b06469796e2bb20e9a03d60"},{"TableName":"tbl31c7b1bf86144f498790c028d15e44aa"},{"TableName":"tbl3216977b1ab94e17b25b46120cd5e7a6"},{"TableName":"tbl32704a8c4c3847c19beabeb76ffdaf68"},{"TableName":"tbl33e60d15005541cfbd0d79ee571e504d"},{"TableName":"tbl3432d8ab403a4a72ab6c13afe74a9a79"},{"TableName":"tbl358e51c89bf34825b54024d6ad64424f"},{"TableName":"tbl35e53983f2ab4048a9bf6aab3094c277"},{"TableName":"tbl364ee7c62c18418683ecc3347871363d"},{"TableName":"tbl365adf56b556439ba1edabc7a3b151f9"},{"TableName":"tbl36c56d15551f4a899363fa598ca5270c"},{"TableName":"tbl3800688668f2484692b1ef88f9b7dbeb"},{"TableName":"tbl38aac9ba65a44841b46592f078ab6880"},{"TableName":"tbl38d00566ab644059b4f2e96f69d8fb5a"},{"TableName":"tbl397a3361ee8340869a84d274d04273da"},{"TableName":"tbl399171ae046d47fe8c908bd595464a51"},{"TableName":"tbl39a8d39ceb7a4940a11ff41e31dd9d26"},{"TableName":"tbl3a03de6e9d524a08a0eab6aec3752f56"},{"TableName":"tbl3a557984770d4a889af089c0ed662459"},{"TableName":"tbl3a798a2f17e9422f88335d8d14c8b06c"},{"TableName":"tbl3b24670192f24545950a373933e4fddd"},{"TableName":"tbl3bc7998a086c4c7484a140b0f7f192ee"},{"TableName":"tbl3bdd7628294c48299424aad871e44b28"},{"TableName":"tbl3be128b8bb5f4015a2fd867e629f85be"},{"TableName":"tbl3c410b1728144e8487c8b56ba1b9af83"},{"TableName":"tbl3d537ef691fc410aa7dda3646527e4e7"},{"TableName":"tbl3d64fe22decc424684d588554f6f75e5"},{"TableName":"tbl3d8d62a03bec4151aac85f4fbe9daa01"},{"TableName":"tbl3e885cc18775486f83bd1720b718a0fa"},{"TableName":"tbl3ee036273ec4419b9563208ca264203f"},{"TableName":"tbl3f6126816d5f442a9d46b516ce13c63f"},{"TableName":"tbl4006523f6459474f947d799749e347f0"},{"TableName":"tbl409e9679175b45f187717c1c085d7eb2"},{"TableName":"tbl40de65d1b3194b83b4c6b61e8a5c3836"},{"TableName":"tbl4180a4acb1d642c1baec348aac29f400"},{"TableName":"tbl41b3ccbf37ba4862b9446e3795a41f39"},{"TableName":"tbl41cc33b5514d4e368071d9e64c249864"},{"TableName":"tbl428d1377ace146d9b49b95b97718d16e"},{"TableName":"tbl433330a1eca94f6bbdd3aa86950200a8"},{"TableName":"tbl43bb74e873f44575997a7eb0ee78db77"},{"TableName":"tbl43d297ac83974678a99a005c621720ea"},{"TableName":"tbl43eb901812744abe9d1d18dfc1a7bac2"},{"TableName":"tbl440a6bcee011436b8e2de7f58c91b2d6"},{"TableName":"tbl44dbdcb273ad451685707ca3a0bda916"},{"TableName":"tbl44ed2f4580434261bcc7f2c69773ff3f"},{"TableName":"tbl45076da26a6d45f0bc5c50d66d562070"},{"TableName":"tbl45d5f8490eb746809d9692a222175ca9"},{"TableName":"tbl45ee6a55944045b2a226d0526b00f7d9"},{"TableName":"tbl46283514121447a6b4ab7e0ac3f8f334"},{"TableName":"tbl4636d4fca457423db2522b06056960a9"},{"TableName":"tbl46a86137604b4fc8acbb4317b6552386"},{"TableName":"tbl46ec40452ac24751a0d701ee2206d729"},{"TableName":"tbl472ee50446844245a1233928f09ca4f3"},{"TableName":"tbl4732966c1b814ae8ae9f2d254629c9d7"},{"TableName":"tbl47654d9e2c004e3ea2ae81f2d681b398"},{"TableName":"tbl47961e7eb59b461abb09cfa98e0cc12e"},{"TableName":"tbl49102c5b10924f06861ca884fccc3ca6"},{"TableName":"tbl4957b4fca29e4d3bba50854cf7a650ce"},{"TableName":"tbl495c13711c8645b3a8ccb9c7a7bb0982"},{"TableName":"tbl4970173963ca4772b875caa1d942eadb"},{"TableName":"tbl4972366b795345d39cf06a72225e4262"},{"TableName":"tbl49ab5be36b1f499092b8db18ccb782b6"},{"TableName":"tbl4a11f313d4984614b4e7e6828b20e645"},{"TableName":"tbl4a50ad77180941b5a8d11a7c031d21ad"},{"TableName":"tbl4a666cd4e3464d7aa31323831f6f8ceb"},{"TableName":"tbl4ab8422d2aa14695b92229c2341bc80d"},{"TableName":"tbl4b1fbe3f7d1643abaed5ac9a041510cf"},{"TableName":"tbl4b95a88b912f44be90904698aec94771"},{"TableName":"tbl4c08f733bcae4737b0f1165cc8be7ada"},{"TableName":"tbl4c291024a22e4e4fa256a7dfd700e584"},{"TableName":"tbl4c5aa3cece36476fa0963ebeba9b3097"},{"TableName":"tbl4cbee75578ab40a4afbab3ec3a5de2ca"},{"TableName":"tbl4d60d971d54540e58a753ac6004bcc24"},{"TableName":"tbl4dc8de20fc47456a9194920c1e0c8934"},{"TableName":"tbl4de3a029c8d1477e84aca3e1195198c0"},{"TableName":"tbl4e53247bf9934abda381e0d641f334b5"},{"TableName":"tbl4e6176b107f2443fbbec930384d117c1"},{"TableName":"tbl4f0e7268e4c2436f8475e52b03e4d35e"},{"TableName":"tbl4f2ce8d76d6e4ff3bab5ac8bbda73592"},{"TableName":"tbl4f9b05f1cfe0489bb6af4d83ad67bcc2"},{"TableName":"tbl4fb78cdbfe0e4d519c67b53b0c900d22"},{"TableName":"tbl50de9ba6afc8445f8ffd1a4eaf92fb2d"},{"TableName":"tbl50e8dcc9a01449af9736f93c4f419be9"},{"TableName":"tbl51a8eea6cc324c579422ca0b8b168c0c"},{"TableName":"tbl51f5a3fbaabe42f4aead734a88d8262e"},{"TableName":"tbl520a16ddb53c4717a9254300ddb28cb3"},{"TableName":"tbl5210ccde7f7647928f6e78f6eac8afe1"},{"TableName":"tbl52d730e6910f4186a7b5ce1333f1a981"},{"TableName":"tbl532224413f0e4224bcbb318d7d5030f1"},{"TableName":"tbl545fec4dff134c5089fc4da535143c10"},{"TableName":"tbl55b42258b4a14d34bf74832a5832f764"},{"TableName":"tbl5799738a394343c0a9c90dcf649cba5e"},{"TableName":"tbl58314157c3c542ea930faf4de154ad70"},{"TableName":"tbl58599d817c224b75ba33c6268458b099"},{"TableName":"tbl586b85dba22e4dfeaff1ea29f186c27a"},{"TableName":"tbl587723096c544735bfb0d0da21ee22ac"},{"TableName":"tbl5884d57712b648e08288f86253db892c"},{"TableName":"tbl588b7c84383041c2a6b5e0a2d50e3b9b"},{"TableName":"tbl5984166ffc844196ae2b077e20365196"},{"TableName":"tbl59a098c3922e40409b0254a3858a45bf"},{"TableName":"tbl5b057a22cf694c2fbe887c44127a0368"},{"TableName":"tbl5b459448994f4e73af123d102ae7fb5f"},{"TableName":"tbl5b5dbcfe2df54964acc46c1d911687a9"},{"TableName":"tbl5b773e664a9c453a9aa70cd33e9948a4"},{"TableName":"tbl5b95331c604c4365ac859b765f389537"},{"TableName":"tbl5bdb8b2aa56246d69ff24cdc94c397ba"},{"TableName":"tbl5c82747f89114cc29d5caf423d8cd62d"},{"TableName":"tbl5cc3b6835ec04995805b6de6a2e536bc"},{"TableName":"tbl5cc40aa24cc7408a9d0d3db5e51bca7e"},{"TableName":"tbl5d8a046b856a4aeba7c07db2b8361c26"},{"TableName":"tbl5d9fcee1d0d043d0b1339024bd445434"},{"TableName":"tbl5e63aa37bac245729ee3184e286de23d"},{"TableName":"tbl5e74225d83084f61b6a06aa86c334a48"},{"TableName":"tbl5ec485defde24b1f99a3ddcfe40e3e23"},{"TableName":"tbl6026d803fd7a4d3d82852528cb74b494"},{"TableName":"tbl603ceb9e79cc4d4992b84c4183b7aaee"},{"TableName":"tbl6058b6f5f30e432e94881befae4bf154"},{"TableName":"tbl60e7eb2a48274b57bc5ff5eea61a385c"},{"TableName":"tbl60edc9ee02ca49689af7d58d69db816f"},{"TableName":"tbl60f4afb4228c4348b4c0065cddc95c74"},{"TableName":"tbl612314d7ffd545cf9b10bfb2a73b186b"},{"TableName":"tbl612961478ccf4289be7ef49816f68e7a"},{"TableName":"tbl615633100b1c4970896a703af027199e"},{"TableName":"tbl61a55ffa7c9a4afab711668c8005860b"},{"TableName":"tbl62ac44b6c62e48f1b6764eaa3aa436a2"},{"TableName":"tbl62e40b6b9d4a42f6a6e8ea4150365209"},{"TableName":"tbl6326f0a71c5e4c7b9e76d1884ddeac2c"},{"TableName":"tbl6356911923f144718ad862e8d3db283d"},{"TableName":"tbl63664f190d7e4cc88191487feddf007e"},{"TableName":"tbl63b71d4d4cfe4acdb6dfb8e7e9ccc2bf"},{"TableName":"tbl63c6c1534b6346b59e5acf95bf7623f5"},{"TableName":"tbl63cd6482f9c54c6bb52189dcddc9724b"},{"TableName":"tbl63dc7ae20cf44113ae9c59ddf889e61a"},{"TableName":"tbl6485837c60544280a1f04c3b832fad33"},{"TableName":"tbl64d70af300354851805f612594c3e311"},{"TableName":"tbl653b3cbc070e40bfb9ea9747baefe6fb"},{"TableName":"tbl65ba33068ef64b9f95c1038e22b720d9"},{"TableName":"tbl661839bb54174e2d92c5e20d3d6b6d5f"},{"TableName":"tbl665a3a7f18584abe8d13967a6db39434"},{"TableName":"tbl668ea4354635458c98a402950bd8d949"},{"TableName":"tbl66d93ebd92604bbca059de6e1d477674"},{"TableName":"tbl67ae3f7e8df4419a9a8c193aa217d479"},{"TableName":"tbl67b6a9410d1943b5b035adb9473a62d6"},{"TableName":"tbl67d852962d9243a5aed0628e640b152d"},{"TableName":"tbl68981bba1a8b4d46a9e1c3b18ebc46e2"},{"TableName":"tbl692477f37f1447748ddf7dde9ec5709a"},{"TableName":"tbl695a3961c0eb414384c6336b4aaf804b"},{"TableName":"tbl695ac752444e4f3481d9a9ffba8b5638"},{"TableName":"tbl697420bd1bb8431f8e45b32ddf305e19"},{"TableName":"tbl6a3a88221adc4025b19b61159bc61f05"},{"TableName":"tbl6a6e1bd351e648c799f1ea0acbd387c3"},{"TableName":"tbl6af8f29120434f82b5f850c3b6c38412"},{"TableName":"tbl6b20729646464684b7c34e4e8e897ce9"},{"TableName":"tbl6dbb137a974d425f8dc8b1aca1652c0a"},{"TableName":"tbl6dd05d032c464667bdf2490ac45061f4"},{"TableName":"tbl6e8d8497d0e843b7b17c2341c3311167"},{"TableName":"tbl6ebc55c855f5461d8dc3eb391e4a83e2"},{"TableName":"tbl70a4ad03faba477b9f9e850d56cde4a2"},{"TableName":"tbl70c34fbd74ee407ea8b38035f5f4dd2e"},{"TableName":"tbl71ebff1580bd4f0fa88e7da2a7f4777d"},{"TableName":"tbl71ed15e557e44cff85ea96a8d9c8367a"},{"TableName":"tbl7287b263a07844c29cc39d4d5695dbc0"},{"TableName":"tbl7383c9debc234f12a30d79da3a3be57b"},{"TableName":"tbl73b4e67479e64a0789137d24085d8f72"},{"TableName":"tbl73d7c83e67a14db9bd4717126d99e0b1"},{"TableName":"tbl748205f7e9404748ba8afdbb225be01f"},{"TableName":"tbl748adc61d2f04856a07fecb44d493791"},{"TableName":"tbl74db9c051c1441609388b4137b0f809e"},{"TableName":"tbl75f2fd99c12e492fa37ddb3704387033"},{"TableName":"tbl75fec2302b914989bc14e2c34afe9389"},{"TableName":"tbl7626ed6fb2e74eb6a424003e5779ba50"},{"TableName":"tbl7793ec943a1f43268de1cca77f120f18"},{"TableName":"tbl779bfdc1d99f44aebc9cdeaf4cf64360"},{"TableName":"tbl77fa62f38fe14dce843e1271ab6d51f1"},{"TableName":"tbl78e320b08e0a4cc58a50e86f08c76871"},{"TableName":"tbl78ff6308d71f4835bc8dc3e921c8f25c"},{"TableName":"tbl797eceba1fb2437f83c3fb1cd2365639"},{"TableName":"tbl79c5f0ad27214c02b75da570942baef9"},{"TableName":"tbl7a229e3e15db4993b0475ed42afde8b6"},{"TableName":"tbl7b2b085727554320aa110653d531dbc2"},{"TableName":"tbl7b47a2ea35764287992045e737f6ede4"},{"TableName":"tbl7ba70546599444dc8557bd13e8e5c345"},{"TableName":"tbl7c81165257824096944b82f5978faa3f"},{"TableName":"tbl7ce670ab029b420c94b16a7dbaa9571f"},{"TableName":"tbl7deeb7a3934e43d5a7d92f3bfbdeeaa3"},{"TableName":"tbl7e22c37f3152474282606de7e65d1680"},{"TableName":"tbl7eefbbe8cbe549d79e9fd3cf362e086a"},{"TableName":"tbl7f1336488e534479a093239887ac714d"},{"TableName":"tbl7f55ffde39a84cf3be454c3286b4f96e"},{"TableName":"tbl8044e77c75024812b9f328d1beaff52f"},{"TableName":"tbl80f5cc8302b0470ba5c2a050d4e8e9d2"},{"TableName":"tbl811383723ea34ef7aec2c8a697f2776a"},{"TableName":"tbl819b89cdd71a488e8a935cf7be17160d"},{"TableName":"tbl81ceca3e6fa24f46842b9e4306056a55"},{"TableName":"tbl832f0ab2d9f24bac939863d7c5523232"},{"TableName":"tbl8351e529ceb54a6c84d9efa3ed99f701"},{"TableName":"tbl849f86644fa3421e9f79fbe4a02d7107"},{"TableName":"tbl85ad7eebe7c644469f6a3189c24026af"},{"TableName":"tbl85e2f8f8756143188298050a3b4ec997"},{"TableName":"tbl8628341ef7824e84916048e7ae8093f3"},{"TableName":"tbl8645329745a34ba4878764749db9ae26"},{"TableName":"tbl87a9e0e8c30c40508e9e734f6649cf85"},{"TableName":"tbl87d855d1d4394f109368199cd63e0c66"},{"TableName":"tbl88283307f9e643fba5c45309bbda262e"},{"TableName":"tbl88f447f6d3d240f8876c365c5174c83b"},{"TableName":"tbl8918127646d8478e83e2b15314847347"},{"TableName":"tbl895cc8252e9344c18db16b88454c4da9"},{"TableName":"tbl89ed661e89394f27a139742a3e85bb4c"},{"TableName":"tbl89fe90a023ad4bfdb12699747e3d68fe"},{"TableName":"tbl8a3051b4251c43b6b43dc02a730f63ee"},{"TableName":"tbl8c24cc0b9808455cb7091f1f9f60c28c"},{"TableName":"tbl8c32dae36609489d9e2809e20d183c73"},{"TableName":"tbl8d0e302d942d44328d026987a4af9c90"},{"TableName":"tbl8d2524071d704f51965b60bd72eca8c8"},{"TableName":"tbl8d39da6b2385424c99bddffb3c2f72e8"},{"TableName":"tbl8d43d663113d4094b5e846ac924dd3ec"},{"TableName":"tbl8d45fc6295134b9b97d5d46c3b537d6b"},{"TableName":"tbl8dc4cbba93484e14898727fc2150ee9b"},{"TableName":"tbl8ecb8980a98449d5845554df5807f464"},{"TableName":"tbl9013a8b8c4c54c7587fd88661bad25ad"},{"TableName":"tbl907c66fb68d24c5ba5bde349bc88bd49"},{"TableName":"tbl90e29e13dc6845bf9fad72c069b586a1"},{"TableName":"tbl90e9b2a1307348e0b4f55da0607b7706"},{"TableName":"tbl91db25754a1f45d89d96c5ef25d7f223"},{"TableName":"tbl922f77f33adb43c38e549f26272beb19"},{"TableName":"tbl9246be10378743f0aa13be1a5cd35756"},{"TableName":"tbl93232305a9dc49f78f05c9f92528b817"},{"TableName":"tbl939f8900c5ae4936b7503dae6dd1cef9"},{"TableName":"tbl940c529980c54a54ad2a9a1f11632e84"},{"TableName":"tbl943dba6e3e944dfd8f1bab67e17ef004"},{"TableName":"tbl94e79d35c8214bca8dfb78d6907cd85b"},{"TableName":"tbl950df5d086b64bd5876fe7a03b1f9e24"},{"TableName":"tbl95926d3fa6f242b9bb43bcec516ae6c7"},{"TableName":"tbl95f57655a58043efb1faf177a53337e7"},{"TableName":"tbl96f3b984012f4fd9a7d1d98873b48452"},{"TableName":"tbl97c7aa5e6f6843b4bad8d16e97cc983a"},{"TableName":"tbl9816b487e74b4306bc829906ea523755"},{"TableName":"tbl981a8316cd154cb4a61fb1e23262cd1e"},{"TableName":"tbl9822ee4a74bb4df4ac969b76b7d0bc83"},{"TableName":"tbl9916631c7207455690d156d0d98c50fd"},{"TableName":"tbl99caef9bd210437cb754fbe2ccc4d51d"},{"TableName":"tbl9b75dc68d573487b97edfbd8c5a50837"},{"TableName":"tbl9d01714014d44c9c825a50ec5fd9c421"},{"TableName":"tbl9d0b8f5537a940b99809609ed3e276a1"},{"TableName":"tbl9d8ed3ae1f9b4aa7a7ed7bb6d1c845a7"},{"TableName":"tbl9da103ebdbed4b109ac4e373b9c779b6"},{"TableName":"tbl9dad282fe3354275964f84a79c590782"},{"TableName":"tbl9db8bec0c84e4b899d40b4597ebbd27e"},{"TableName":"tbl9dbcfe05a0e84a549cd7b85901613d34"},{"TableName":"tbl9e301801c6654f18aeea41b92e0f1c84"},{"TableName":"tbl9edd36a91f4b4c4aa85e4749f43d5be9"},{"TableName":"tbl9f2118b2c08e4fb18a211619220aeb56"},{"TableName":"tbl9fb368e02bf743488aa4746bae31b437"},{"TableName":"tbl9ff44348007441c7938965aa91389c71"},{"TableName":"tbla00cccaad49d44b39499378f8942a5d1"},{"TableName":"tbla0bd41d53d7a4793a699e8559ccacdbd"},{"TableName":"tbla1e00da0fe454b28b240f14ddbd90510"},{"TableName":"tbla1e6362f56f64a51babe0933cf98d8c5"},{"TableName":"tbla22312a85ccc4df5b1259ffab9ce7b18"},{"TableName":"tbla24a36b3c60c4e86adac7f1639edb456"},{"TableName":"tbla2adc64faea0494480f0a2b02cc93c75"},{"TableName":"tbla2b3655c27bd4bd684f2a450602a0a6b"},{"TableName":"tbla327fa460a8a4366a3d69064c68e680d"},{"TableName":"tbla3a4ef84e2b14a8e8f3e44383c50ce00"},{"TableName":"tbla3b780dc60ce42da801c87882299775a"},{"TableName":"tbla4053977a7024857be5a8467339ece02"},{"TableName":"tbla4304ef551d341928c99729d176d6126"},{"TableName":"tbla4be01548a074240bb0fe3cb61c1e2c5"},{"TableName":"tbla529550480554158a0c126e1923d4510"},{"TableName":"tbla52c050d27b44a6dab5b6e8154d8e4a6"},{"TableName":"tbla548bb240ba54036a6ecfca53e03e88e"},{"TableName":"tbla588edd2230c4d9aa960a198a6d610a2"},{"TableName":"tbla66beb7f5f354b01963c1affa3f4c9c2"},{"TableName":"tbla673d82ae8754222961b576cbdd873cb"},{"TableName":"tbla6ad17e79b3d4020ad369623f4d22d2f"},{"TableName":"tbla6cda3ffdab64e8b8f59e5523c78efdb"},{"TableName":"tbla7a886b95a3e4184aaba0a0c765eadd0"},{"TableName":"tbla8307fe6a848468799109501730afef4"},{"TableName":"tbla8b00d5dc9a04ac5ba15fc92d71110bc"},{"TableName":"tbla8c0118e0f3943509ba9ca1dae4da3e9"},{"TableName":"tbla928edff8f784005b33e75e0f13d244a"},{"TableName":"tbla93c46d213ce40aa9faddf7fc2da8bbd"},{"TableName":"tbla97662c8d3ff4d73abc4720f284a7603"},{"TableName":"tbla9b00156c43c49aa9edc2065f2faa359"},{"TableName":"tbla9f42aad3d4045f1a9dc1a1645b27522"},{"TableName":"tblaa79ed457ca4489388ea7fbffd6a523e"},{"TableName":"tblab8d2cf34b984848896f4cc805d7db11"},{"TableName":"tblabf72d56d6c94d218b7140ada1e2ad4e"},{"TableName":"tblac04d4f7cfe645e7a74e7bdc435160a5"},{"TableName":"tblac44753d77b545f7853b62b6bdb810ea"},{"TableName":"tblac80c9e6fb8346b2b7f3828245bbde41"},{"TableName":"tblad74689d72974cc5b7de30816fa367ca"},{"TableName":"tblad85067aaa0749d69f6cb54ffd1b85ca"},{"TableName":"tblae0e731fb98746b48f4974a9abff0161"},{"TableName":"tblae408fed8afe46268d009057cd49ec60"},{"TableName":"tblae61d3ce6d4441239a62982fed3ec771"},{"TableName":"tblaed2ee48e8b24a3caefa680d4bdc88fb"},{"TableName":"tblaed4f8338c9c40b5a064a2a8e4de769b"},{"TableName":"tblaf0835297f364a259e60a7a976afb533"},{"TableName":"tblaf154a7844304949a4c10ae9ce6ae26a"},{"TableName":"tblaf2cd676583f4e7ba16f8f98b469b8c4"},{"TableName":"tblaf668b7b47d448ccbc449cd0193cd9e7"},{"TableName":"tblaf7d5c4f327e4e4f87863ec4f43610eb"},{"TableName":"tblaf992a780d55488fa478a3b9a3689ff1"},{"TableName":"tblb06e2cd2f2ca44c78649e85c579ec145"},{"TableName":"tblb0ca34e062044b478d532ba2918cc553"},{"TableName":"tblb0d464adfabf4bdb952ea17df9b59f15"},{"TableName":"tblb0d710065aae49a58e2710fbc12ab05f"},{"TableName":"tblb0facbe36bb74ef4a53a8e305e932449"},{"TableName":"tblb0fbe53650294bfc8c780b76edd0cd7d"},{"TableName":"tblb1d464cecf5345ec84923caa55cfdc94"},{"TableName":"tblb1e3c24c16fa465098541a4ab68901ca"},{"TableName":"tblb28526c80886411c912988d332c85fd6"},{"TableName":"tblb3086ecd0b1d40e08d2f3ddf919ef334"},{"TableName":"tblb3110ed97cf7489689a83fccd0ab1b2e"},{"TableName":"tblb35477c4d91047a0b4800716b90f3822"},{"TableName":"tblb3badfdc4a2a49aa8886a3d07b8f6bc3"},{"TableName":"tblb3c022544cdc4cd8bbed0e494f8b4343"},{"TableName":"tblb4a3595bbbff48419e59310483ceb13b"},{"TableName":"tblb4c11d1a365046f78d24233799cd055f"},{"TableName":"tblb524096f774347599f572cde624fe83e"},{"TableName":"tblb677d5fd14ea46d58d872fe218fb934a"},{"TableName":"tblb6fb13a4e64c45d2823e76d0f71cc406"},{"TableName":"tblb783bfcb178a4f86a301718f82eea5a8"},{"TableName":"tblb7af1e3dbba0459eacb30f26c887952f"},{"TableName":"tblb87d96bdac2f41fe8db4b34a76194338"},{"TableName":"tblb883bdfe250840f8bbed580d009919ec"},{"TableName":"tblb8f3166dd6cf4aca8db3a9faff96f4f0"},{"TableName":"tblb973716f82c4477e8d4d144bc8136af6"},{"TableName":"tblb9dbea5933254daab4a069d3e14b436c"},{"TableName":"tblba003f099d0f45408422254a4492ff1d"},{"TableName":"tblba680f8669c04d9c81e55ca561d5139b"},{"TableName":"tblbabd06408f2f40edbb48160a1822c347"},{"TableName":"tblbb25f58edc1e489f82f2836472b046fd"},{"TableName":"tblbbb3dcc6411a4597a4a7ee879bf9adb7"},{"TableName":"tblbbdc3a8870954ab88d5a0e953e0e0519"},{"TableName":"tblbca9a9b915f84734b1f6cf444d4210a6"},{"TableName":"tblbcda6e16b80a4cc09337665b6fb54afa"},{"TableName":"tblbd5ea3cc250442bea868a633fba6ec9b"},{"TableName":"tblbd7185081777410b81ab9b8a00887ec4"},{"TableName":"tblbdfb77f749254674936c1345f5cf89c0"},{"TableName":"tblbef7715fea5d4364a50a1eecc6c3d908"},{"TableName":"tblbf7b57faa00a43209d7e290b89d64701"},{"TableName":"tblc0359086919e4f3ba75a3e3be4dc93ef"},{"TableName":"tblc0e0ed7f342a4bd1b4c35a54dba6269a"},{"TableName":"tblc105950447774436b0f1857575064398"},{"TableName":"tblc1ba5103237645f78ecc765d44a12a20"},{"TableName":"tblc22325111e3f4f12b702f70f2118fdcf"},{"TableName":"tblc243782315ce4dc9a113d608dd06286f"},{"TableName":"tblc27dca19c5854a0b92c838b3d502b339"},{"TableName":"tblc29e5fb075f144348726527b00526b2d"},{"TableName":"tblc30a541803504b5db75ac8e51b3c7bed"},{"TableName":"tblc4417b8e3afb4f1f83aa6f786ce6429f"},{"TableName":"tblc44cb09bdbe949e080c2a2b11aa332af"},{"TableName":"tblc458d4ac05be48d297efabc36586ae21"},{"TableName":"tblc4d5a3c552cf407aa2095b3654115ddc"},{"TableName":"tblc4e7a83dfddd459fa5e35ee9c046c3db"},{"TableName":"tblc5686dabfcc64ded887342c39904b7d7"},{"TableName":"tblc572fa1756de4189aebd2b6a816c33d5"},{"TableName":"tblc5d2bb46092a4fb3a87ee054e2922a28"},{"TableName":"tblc6261f052dc442fda333b32c69ede321"},{"TableName":"tblc69b0a2263664056b05cad9896074a08"},{"TableName":"tblc6bdf19a534e4b328a4f26e99f146f41"},{"TableName":"tblc723348989234f0e8163782784b47e70"},{"TableName":"tblc742d56cf8fc45b5913a0920f71e8125"},{"TableName":"tblc76acadb11e443fb88a1641af81a94d7"},{"TableName":"tblc786674298f5461dacc6be5bcea6167f"},{"TableName":"tblc79dac2d437f4d9ea63f3dfcfe870902"},{"TableName":"tblc855944446b94d698202bf8d85f4a7a4"},{"TableName":"tblc89eb1164f19487a9b9e900c6bfab786"},{"TableName":"tblc8ace17b9fd04759a17529a06f7046c8"},{"TableName":"tblc8d253d06f7a4bbeb344dde90a374c43"},{"TableName":"tblc8e963245555476fbdc2865a481240ba"},{"TableName":"tblca02458fed974f07a67876ff6d659ce4"},{"TableName":"tblca1ef18a6fde4d57a8b005c9a1e17317"},{"TableName":"tblca5b6fb234f643a19f045147eb183e89"},{"TableName":"tblcafcbc41541f4f73b9a66b282d66c3ff"},{"TableName":"tblcb4cd1fccbbb4da0a254427082318cab"},{"TableName":"tblcb606f18ac74403ab462e454af9ad650"},{"TableName":"tblcb74b83143af4cbf95d86325c9de385d"},{"TableName":"tblcbfc1839624d4241b93005298e3eab4f"},{"TableName":"tblcce73519d3ce4c8f8ef679580509c5e2"},{"TableName":"tblccfc5e750d154c6a9015a8bd7fbb074a"},{"TableName":"tblcd6b9c3945d34d79a410e812113fe9ce"},{"TableName":"tblcda480b1ab854665b9dd0257bc4eb3ef"},{"TableName":"tblce3df078203446dd91911af850c59629"},{"TableName":"tblce7b654b12d24133aa80861590f6ba65"},{"TableName":"tblced6f78aa4b14f7b985a548bd3b0ec9e"},{"TableName":"tblcf0b0bf49f014dbeb5444591d334ebaf"},{"TableName":"tblcf45b54aa2d7471696a5a90d0c542f50"},{"TableName":"tblcf740cecb7d7409ca8e84fee48c9f57f"},{"TableName":"tbld06ed131de3743a19611f60c5790e272"},{"TableName":"tbld0a2e201bd6b432597bdf0b548734080"}]}'} + body: {string: '{"value":[{"TableName":"CAPStable95217c74610847f795a116878ecde584"},{"TableName":"demotable"},{"TableName":"demotable5"},{"TableName":"newtable"},{"TableName":"pemari020817a"},{"TableName":"people"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e90"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e91"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e910"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e911"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e912"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e913"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e914"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e915"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e916"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e917"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e918"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e919"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e92"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e93"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e94"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e95"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e96"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e97"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e98"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e99"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab170"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab171"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1710"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1711"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1712"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1713"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1714"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1715"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1716"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1717"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1718"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1719"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab172"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab173"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab174"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab175"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab176"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab177"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab178"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab179"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f0"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f1"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f10"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f11"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f12"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f13"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f14"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f15"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f16"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f17"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f18"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f19"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f2"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f3"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f4"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f5"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f6"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f7"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f8"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f9"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e60"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e61"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e610"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e611"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e612"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e613"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e614"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e615"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e616"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e617"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e618"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e619"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e62"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e63"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e64"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e65"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e66"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e67"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e68"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e69"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f70"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f71"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f710"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f711"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f712"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f713"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f714"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f715"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f716"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f717"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f718"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f719"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f72"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f73"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f74"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f75"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f76"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f77"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f78"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f79"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f21"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f210"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f211"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f212"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f213"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f214"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f215"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f216"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f217"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f218"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f219"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f22"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f23"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f24"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f25"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f26"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f27"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f28"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f29"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a920"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a921"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9210"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9211"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9212"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9213"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9214"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9215"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9216"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9217"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9218"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9219"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a922"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a923"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a924"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a925"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a926"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a927"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a928"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a929"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e220"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e221"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2210"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2211"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2212"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2213"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2214"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2215"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2216"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2217"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2218"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2219"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e222"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e223"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e224"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e225"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e226"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e227"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e228"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e229"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c70"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c71"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c710"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c711"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c712"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c713"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c714"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c715"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c716"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c717"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c718"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c719"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c72"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c73"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c74"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c75"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c76"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c77"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c78"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c79"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b0"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b1"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b10"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b11"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b12"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b13"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b14"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b15"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b16"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b17"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b18"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b19"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b2"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b3"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b4"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b5"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b6"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b7"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b8"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b9"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c10"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c11"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c110"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c111"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c112"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c113"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c114"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c115"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c116"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c117"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c118"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c119"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c12"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c13"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c14"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c15"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c16"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c17"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c18"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c19"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b0"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b1"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b10"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b11"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b12"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b13"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b14"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b15"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b16"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b17"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b18"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b19"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b2"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b3"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b4"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b5"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b6"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b7"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b8"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b9"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a200"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a201"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2010"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2011"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2012"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2013"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2014"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2015"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2016"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2017"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2018"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2019"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a202"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a203"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a204"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a205"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a206"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a207"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a208"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a209"},{"TableName":"T001a0d2027f54dc0b9f93dd5f349785b"},{"TableName":"t00b14916910d42a796d35364e302075e"},{"TableName":"T00c393541b8f47469538e3632616c763"},{"TableName":"t01efb689725a4ae3b47fdc2575a19fa1"},{"TableName":"T02118a1eb5f248bea693e0e71fd097ee"},{"TableName":"t02817ec72156410ea2ddb5081f30bf57"},{"TableName":"t03aac74f336e4eb2923c221833a5bd4b"},{"TableName":"T03c5fea258d345e9944cfd9b9a8386f8"},{"TableName":"t048f72a916604721ab12298e7c3aaa53"},{"TableName":"t0563f3c5ed4c44e08f14d9ee19cb62c5"},{"TableName":"t0579e1d5c78a4c0598d8a5243cf43e65"},{"TableName":"t058f55460f50431d9a1109489fa76d14"},{"TableName":"t06249c0d5f6e431db554d338e64058f2"},{"TableName":"t066fd88625494f779d532ce67910a27c"},{"TableName":"t08698e98708d450e9e14297d9fb922b7"},{"TableName":"t09425794c2a149babf57b94c9230916a"},{"TableName":"t0a2646b3c45b4de3a512c5ca917f078e"},{"TableName":"t0a8dc1d7f26445e79d61495be7b0c7c0"},{"TableName":"t0ab3375e9251427abe9057111e156759"},{"TableName":"t0af90339dd2446af9a3147b69fcfa594"},{"TableName":"t0c41c70c0af84bd88518e3fcf73aa479"},{"TableName":"t0cb6bad4131f44b7964d9c8f737acc4c"},{"TableName":"t0e7da6e28794415883dab9336c90cb90"},{"TableName":"t0eda652c09164dc1a9d8c53a732ea9dd"},{"TableName":"t105c4852580c4a41a534dfbe3c9469be"},{"TableName":"T10ffcc88fab14fb2ba3d7a1394eeb564"},{"TableName":"t128e736ea01249eabcbdb2cbf17a2de8"},{"TableName":"t13818bd160004e328f5bd59ea78e05b8"},{"TableName":"t13b954f8935243149d27331fd2d6d649"},{"TableName":"t140b55e16ebd49b09befd9666d62d1e0"},{"TableName":"t1484c4f4519d4480a52534e9aefcde4b"},{"TableName":"t158b25ce8be14b5280432b79a1307750"},{"TableName":"t18f1e389c0904a78965d9976e401f78b"},{"TableName":"t19f50a9ce2864924ba2b2354cafc1830"},{"TableName":"t1b88bfa490d14c91bb849c5ef94303e3"},{"TableName":"t1b8bebfd31fc487b8a5f7922559aac11"},{"TableName":"t1bc1f75399fc437b8df9db1d3205cc1b"},{"TableName":"t1cb58996b8234759b9ddc8d4bf7288e7"},{"TableName":"t1d79196c24e143aa94371dfee49d87af"},{"TableName":"T1e058ffab15b4a6386c7bd4ebede17ab"},{"TableName":"t1eda7153fa8d4eab95f97575842cce54"},{"TableName":"t1eeb273ecfcd41b0be3c2db5275edc36"},{"TableName":"t1f13b22051c34ecfa86cfa2c54a460dd"},{"TableName":"T202b90f3d1b646a2abdbf2762dd158d3"},{"TableName":"t210bba068de14c83adfc9d8accdc54e9"},{"TableName":"t226f3597cb4840f5a163608200165f7e"},{"TableName":"t22ff30a42e304fc5aa04f2f8f4ca5720"},{"TableName":"t2322401054214fc3a418f475764acf67"},{"TableName":"t239c475ba4104834a67ead593ebabb11"},{"TableName":"t239fdf5026804cbcb7c14b09ac2fdbc0"},{"TableName":"t23c597ced1f3412c92513754a9aa1e6a"},{"TableName":"T2483038bc7694206ae1a99f644b13dfa"},{"TableName":"t24a991a33d6b4c5fa24c680f57622167"},{"TableName":"T24bf8de6a2be48d8acd01c327e3f77a7"},{"TableName":"t24e4a1806ecb4495ae8238c680218069"},{"TableName":"t2520c291fb53413985d3624a3fbb89cb"},{"TableName":"t25ac64dc7c4e4d89aaa44c98d93ad3d9"},{"TableName":"t2649d805c9bd418695e06819306aeb74"},{"TableName":"t268ede48e84a4eadb2adf667a9ef1c63"},{"TableName":"t2768a2c7f0184acf92481a8d2ae2ea5c"},{"TableName":"t279cddab984a40f7afc1e06bd42aae2a"},{"TableName":"t284869193e3c49c5921444ddbbc520f2"},{"TableName":"t289074fe5d88471f93b67498416d77e7"},{"TableName":"t2a808a43b1df42538f7d0e6528deb981"},{"TableName":"T2c064f7225e646ccb03d0aa773d4118e"},{"TableName":"T2c17828b990247e5843613f40b8f83fd"},{"TableName":"t2cd13915b2a34f27bdc41a62928af15b"},{"TableName":"t2d600d68aed5423eb1f45cc0b81451d8"},{"TableName":"t2dfe60179b2b45a6a1d9a787ef43a00c"},{"TableName":"t30146d92cf8843699a583e457a6371dd"},{"TableName":"T30385924e36641499738e07546aea50e"},{"TableName":"T3054f4f748834cab95768cee54fe0e9c"},{"TableName":"t311273edb2024ca6a84e97d3435f9f5b"},{"TableName":"t31a694ed5a3643e3a1043f022a1c8c36"},{"TableName":"t3210579cd44241e29d2113091739781a"},{"TableName":"t321ad756750340bfa89a52aa59483525"},{"TableName":"t353d025c335c4afb813fb5865ee15c94"},{"TableName":"t356b63d49c4a48c4b0920cc5e71b1c1e"},{"TableName":"T35a29d9c14ab4e1b88da732a81aaee90"},{"TableName":"t35e3e2a74268499abe912ee7040b061e"},{"TableName":"t3605f3775d72472bbe5f2c555a3337fd"},{"TableName":"t369261b3de074f178984f2c1f3f119ef"},{"TableName":"T373e0f31c2b941c6ab936b346b685442"},{"TableName":"t37d2bb67cd4347f8a4779f4ee7e80cf5"},{"TableName":"t382cd0a38b554a648166c036b9f9ca20"},{"TableName":"t396caf1032304f6a95f5ce410bc8a52f"},{"TableName":"T39d7379f916a4cc2890beee365c70a1f"},{"TableName":"t3abe5dcb8022415d9be471cdb03f049f"},{"TableName":"T3dddd798c85e455aa703caa086e68e14"},{"TableName":"t3f3e3e8ab1824c7488a399390467e0a9"},{"TableName":"t3facb27d75e94310b9a48ab2fc77666b"},{"TableName":"T431b4306bebe49949c20b23d670970b8"},{"TableName":"T4462b5289b13422ab679dbc462420699"},{"TableName":"t44b8d6ca247b4bbdbb14c745e993a59a"},{"TableName":"t45079372c0ec40a7b902b9529aac1697"},{"TableName":"t453fd7a0784046a48c8ed928c09b6f8d"},{"TableName":"t45b21c561b4040dcb2beabd809cd91b3"},{"TableName":"t47a49bafb9f640f4943cb3ba93eb409c"},{"TableName":"T493949ca50664a4db5468fa0e2390eb2"},{"TableName":"t4a9c71986f7c429b84a79b8fbdbd0df3"},{"TableName":"t4aba1d73f80e4c96b3c8b25cf7703d06"},{"TableName":"t4be1e227925a4c0ab74c17dd906b2feb"},{"TableName":"t511fa36357c54e55b09d26acfd95ac9d"},{"TableName":"t51310554d1e74db7bf00532c18e2295a"},{"TableName":"t53b7ef24d31f4e919150806b799df59b"},{"TableName":"t542d01077d6d47e498b1585a67e45c13"},{"TableName":"t548f026bbff8481d94d8aa221ed5f23f"},{"TableName":"t555d34b0ced641f4a227ece8a08c84b5"},{"TableName":"t55e8ca02f1524fbdb99ca2692f4e5e12"},{"TableName":"t56c67828e7d049168adbbcb26ead2c14"},{"TableName":"t57235838b0194a05b809271d11444c34"},{"TableName":"t577cb81f82414d1f8352a85afb1ff1ba"},{"TableName":"T590a53ba8aff41d7affeac5e4efc5593"},{"TableName":"t5a46703596f84649ab8c312a2eed92b1"},{"TableName":"t5e1ad56606a64d96b2718456750b2513"},{"TableName":"t5e3665cbb8e1401c968eab1465d57c00"},{"TableName":"T5e7c50920d164e52ad5bc44821e00f2b"},{"TableName":"T5eb0bb280d7340a2b3dc0267d752d3a9"},{"TableName":"T5ed3e70ac822466a8c141aa743e8dc65"},{"TableName":"t61b845ed4f8e4cff9badfcbcd3082a7e"},{"TableName":"t61e86f73b6c2455b81cb999b909f7f61"},{"TableName":"t6329124794cf4df09c8677cd32f9d067"},{"TableName":"t63d6f3c5f0b842bb978ad40b91047825"},{"TableName":"t675d26e2830a49cb8ecf614e9c4fdde1"},{"TableName":"t68b67dda5bc744bfbb35354087beb505"},{"TableName":"t6ae53578e96e4bd48c40b31a56dae2d6"},{"TableName":"t6b863737a073438cbc3c6798f6ecc854"},{"TableName":"t6ce27c3d3aa74568aeba3a95d9acb8e0"},{"TableName":"t6dd7b90432da494ebb0558a063f7816e"},{"TableName":"t6f268262f04843e6a55eeb8167218ebc"},{"TableName":"t6fe7d571364b4226ad68cf1f29a97146"},{"TableName":"t6ff0f70deded43229966de9b5ca786e0"},{"TableName":"T6ffecac0d10b40c4a4bc053d6ea3a5ca"},{"TableName":"t706ec073d02646d0b6c57e840fbbfa14"},{"TableName":"t72d7fed3dd234889bd1948913e3e7656"},{"TableName":"t734c858a2b9640109e3e140b9350438a"},{"TableName":"t74fd2e8d8c354acfac7f7a6501e3c5a9"},{"TableName":"t765f557c87454c15b26ff64ab0bc76dc"},{"TableName":"t77205a1d70c648ee86b8b1f05192acf3"},{"TableName":"t79963f4d52a64e559f71573826da3a7c"},{"TableName":"T7b2779d3af704a44a96783537577f746"},{"TableName":"t7d8b361486d44becaf62f8469dd188f8"},{"TableName":"t7e300b947a194e7794e05d103c54c78a"},{"TableName":"t7eb357cbe7b84ecc891b8a8f6aeb087d"},{"TableName":"t7f50cce2a10a49db879cccf58aaa581c"},{"TableName":"t7fd512ff4cfe47929c2fe50b7e7031ed"},{"TableName":"T7ff2cfac881c47f3a07cf75d347dce8a"},{"TableName":"t81f68ae476354d91a1789ea46d45aab5"},{"TableName":"t82d43e3d401142c894bc0198adf6caa6"},{"TableName":"t85152cd675784189bd53a6c71092f408"},{"TableName":"t8599ac762b1c4f1ab59b8d196e69b43c"},{"TableName":"T85db1fa2441644faabddc956b280a7f2"},{"TableName":"T85eac84d5b4e49b09082209fff382de7"},{"TableName":"t86436862f7644dcd907fe4137b195199"},{"TableName":"t87b60d612fdf43e19a1a9bc071aad2e0"},{"TableName":"t88f02fa7c8964c288cd1504553d13c8a"},{"TableName":"t890ffe96bd024382a1a42248e5849f57"},{"TableName":"t899d65a253a94846a3e6ce294a2afa58"},{"TableName":"t89a29b851d934a0e8451480573c514bd"},{"TableName":"T8a87309408874ebdb0bf79c047513321"},{"TableName":"T8af1ee954b58477f91b0397bdc397067"},{"TableName":"t8bb2e8c5498e4f8b9c11c3ea9a588ca1"},{"TableName":"t8d66fe617fc246dfb91773f3f66dc3c5"},{"TableName":"t8da2a859a73a457c8ee6464472110d95"},{"TableName":"t8dcdfba99dd6482380271aedf98af15e"},{"TableName":"t8f0da058f9944a3f891491e58ebbae5b"},{"TableName":"T8f890bca9f7c4e28b32e5dbc9bb556d0"},{"TableName":"t905ab23943424b79b21f9328bed4b7b4"},{"TableName":"t91f9034c55624947a819d2f22015c47f"},{"TableName":"t93a43796e9a34d2482f30ee0b3029499"},{"TableName":"t93d204249d744b1cad157eb4c16c2204"},{"TableName":"T954210538a4c48d6b9d445ee0e7a78ae"},{"TableName":"t957b2df1c8224a428a50831287be92e9"},{"TableName":"T962f4707d2a94b1c8a97cbe434910f2c"},{"TableName":"t967f39d0ae3442f7a8c3a46ae4fc5144"},{"TableName":"t9c7df29f73364e34be2d5e305a3755b1"},{"TableName":"t9c9556a6c9b040269d6edd9eabea24b6"},{"TableName":"t9c99f896e3a042b38652c11651a40228"},{"TableName":"t9d8311208d96439d88bd6080162d9d8a"},{"TableName":"t9e009d9c1b2d4861b0739b1dae859f1d"},{"TableName":"t9efd20a9ee7c423fbb2304bd84edd06e"},{"TableName":"t9ff6174fab9e4734b4c041f95c30a34f"},{"TableName":"Ta009ccc8e6014f1e98257cc9cac7f1ba"},{"TableName":"ta0c1ef135d6b4878b49e149a5c5fbe0e"},{"TableName":"Ta0e9e7db38d246238553573379cb977b"},{"TableName":"ta364010aa3ef49dbaa7d886a7a6120f8"},{"TableName":"Ta38a095e4a9346a0b72f5709638dde4e"},{"TableName":"ta3ff0eec988c47979568e82b9427b0bb"},{"TableName":"ta42aa2e01a4c426ab36c61ef208b9eba"},{"TableName":"ta511e453d9ed49e3898cda8a72b5a6d9"},{"TableName":"ta62e883698624762abab293af6c0a30c"},{"TableName":"ta7ab83d1cb6340bfaa3f7ab6a06550b9"},{"TableName":"ta7cf5249eac547a0a4bbf21bf3e98af6"},{"TableName":"Ta7db20ed615b4e919a1e22bbbde731f1"},{"TableName":"ta85b7b50521c4ce28d087d30aa9d2edc"},{"TableName":"ta8f22e668434424883761b07c8010721"},{"TableName":"taa6ad663d5c14dd38ef18065b15115b5"},{"TableName":"table21630f2d9b85c404aaf89e4164727addd"},{"TableName":"table22d62d92d0a4943109b3db56da5c64494"},{"TableName":"table4a2776ff8a6745649ef187562e43be05"},{"TableName":"tableb373389daa4b4d95809ee0b49f319461"},{"TableName":"tac0a7d4872884a81b683b8a8c0fab558"},{"TableName":"Tac2405d7922f4e028a2d5d141c1010da"},{"TableName":"tacef1340a5c74e52b9db4ffa187c47d2"},{"TableName":"tad8ca46eadd54c91b426d3430b501e79"},{"TableName":"taede7221b0c4450d821c9dd189aee51b"},{"TableName":"Taf6bc9e5872b4452bfdc5f0498963bf1"},{"TableName":"Taf9ec0abc3774d8184b57738cfb115ea"},{"TableName":"Tafc1105243e14b4e8a99357bb36faddb"},{"TableName":"tafeebf5ebb26414ea441d8c72b5d36bd"},{"TableName":"tb06ca3bc70f747ecafcaad0b03ba3306"},{"TableName":"tb072979191a944f5b038e2388307c721"},{"TableName":"tb0b2b6c1895949e688a9fd7c8509099d"},{"TableName":"tb2b2c8e9830c4ca7aa23ffdec8ceaa3a"},{"TableName":"tb31a2b4bc50f46148462bcbeb318f248"},{"TableName":"tb36cc2f734634127af837a6732af8cb8"},{"TableName":"tb40c81c918454b26a154ec32a7a039fa"},{"TableName":"tb4a84a7d225d44e09ea84d8aedadefdb"},{"TableName":"tb6135780875849a6b0559471d4fce527"},{"TableName":"tb8280eaa240b45d3a73d8d89a1a23abf"},{"TableName":"tb8bad8692d484baa8e9dce2a3160b409"},{"TableName":"Tb8d01a6fb7ff49729e31749b3b68feb8"},{"TableName":"tb90ab7b977094ee3b879c365fd1212d4"},{"TableName":"tbb3940ead90142f1bd1924b6ee766e83"},{"TableName":"tbce81459f8754c72b8b54e18f7b8917e"},{"TableName":"Tbd248e86f6be4014b0f979b521c9d2d8"},{"TableName":"tbdbe5b3de42243179dd89c32f4c1fcf1"},{"TableName":"tbec1c4c37d6140c294e1ddd2524d8a95"},{"TableName":"tbed01ddee57444a998104655e3d688f2"},{"TableName":"tbl000686f5e73b455081f27370ef8fa5f2"},{"TableName":"tbl0062d9ad6e3b4d55a46d868fbb656405"},{"TableName":"tbl00b2d2fffeca4828b0fac60517fb6aad"},{"TableName":"tbl00b31f1d3cb84e88a3b6ed6a4b3cdf41"},{"TableName":"tbl00e816e8850b4d6c931b55810fbf13c9"},{"TableName":"tbl00f63435a78b49ac82ffc05c4688cb11"},{"TableName":"tbl017a1c1d754447d294e8f267f96b5794"},{"TableName":"tbl01a0c6c00f5d44c7ae88c0bb1e8a2259"},{"TableName":"tbl01fe668f98014ffebc4af382f491ffa8"},{"TableName":"tbl02253db68e3e4197a560b7b0c122e38e"},{"TableName":"tbl025cc69fd70d4e458fe3dc50b24f4485"},{"TableName":"tbl02a1e807822a43a593091f422cd3e0b5"},{"TableName":"tbl0336ce478d4e42cdb3977f83c9c6bb2d"},{"TableName":"tbl0347101f08ca4a12942fb9acab029f9d"},{"TableName":"tbl03ee1a98ea57469ab582d0e254a6646b"},{"TableName":"tbl04abaa521c874037a3d33b588b6b62a6"},{"TableName":"tbl05ca8399c8274af5a6a7d51fe3a5e317"},{"TableName":"tbl0602a32f162a4380bbccfaa5b8fde60d"},{"TableName":"tbl062917b122de4ad2a3aa1097901755ad"},{"TableName":"tbl063ad89c7f284be5990471536f02fd82"},{"TableName":"tbl070e0a69af85489fb733043f3510fd79"},{"TableName":"tbl0761b43d82f94d5fa898a7a818e75558"},{"TableName":"tbl0866f37eaaca47b49261d7b67642720b"},{"TableName":"tbl0867b76ab27a4b12ad8350a1362130af"},{"TableName":"tbl086e9d54d5554641aef4ae7ba708b844"},{"TableName":"tbl088b12d9a2b54ad885c977f69c1bdd0e"},{"TableName":"tbl09247a02e70f482294897de91deb60b6"},{"TableName":"tbl0987f3c091124031905b1c0216ea5772"},{"TableName":"tbl099350c8341e4756a92b56a915b55820"},{"TableName":"tbl0a1b57a26c2243789f55350b005c2a95"},{"TableName":"tbl0aa378c8cbac4e84acaa6a956beee72d"},{"TableName":"tbl0b03168b578942fb8e456e431a68e401"},{"TableName":"tbl0b17bc70fb2c4a8f971ddb7a29c616e5"},{"TableName":"tbl0c840a50343245af8a5f9213dbaa33c3"},{"TableName":"tbl0c9f63b85b654089b27b397e379bd332"},{"TableName":"tbl0e5b1f4b46c842cda6bcbdc273c9d959"},{"TableName":"tbl0f6674e13e1a42ecbef25817ce5ac7db"},{"TableName":"tbl1129e83a15dd40afa6adcd78530a93a2"},{"TableName":"tbl11cf25acd7f045419e7a4254a8706bbb"},{"TableName":"tbl11f519a7b2dd42beab59d87ce79778f8"},{"TableName":"tbl129fece2b1e14eac8f5426afceec2fef"},{"TableName":"tbl12c089ca9bba45d988d48cdcbfcd7714"},{"TableName":"tbl1396fcecec3244a1971f1bfca86f4c3f"},{"TableName":"tbl13ebfd76f5a7457da09773af892026f4"},{"TableName":"tbl1464e550a2a740aeb921328c3b627a64"},{"TableName":"tbl149d25d5bac44a508ea877412162c1fb"},{"TableName":"tbl153ccbf1cd7a4d6a97b37ceae95198a8"},{"TableName":"tbl1543c4dc8a194b3795b3b5994414db0d"},{"TableName":"tbl15bcd127f4304589806064738ddfa48f"},{"TableName":"tbl15d1f2b96b584cdf9d82f0571918147f"},{"TableName":"tbl160e579c0ca44ca0837545bcc3d8baf2"},{"TableName":"tbl177fd5671a244bc0ac4f054b70e9929a"},{"TableName":"tbl17a2e79c12164ffca5b897d9e3566445"},{"TableName":"tbl17a7c97c0631462db8ad520371c60e9d"},{"TableName":"tbl17b699c464404eb584fb7d678c6458a8"},{"TableName":"tbl184df5fe1985430f8548fbb72cf77a02"},{"TableName":"tbl18c942f65d7f46058b70d1b3102f092b"},{"TableName":"tbl193fa418b54d473fb4d91002bc25b8b9"},{"TableName":"tbl194685be8fab4f5c84df5e4c2d1ce75b"},{"TableName":"tbl196b4ada11be490b9e49ef08393939c5"},{"TableName":"tbl19db8a26582f4002a6441800daf016b5"},{"TableName":"tbl19de788233084bc19064b130e8357643"},{"TableName":"tbl1a083f15a6cc4168bc4e812fdcc2d6c8"},{"TableName":"tbl1ab0b29ad1e445fb9fde751ef7258313"},{"TableName":"tbl1b3253d18ae946e9b58f30977e23a4aa"},{"TableName":"tbl1bb2bf6a3bef4949a858ec877aa3ceef"},{"TableName":"tbl1c19da3958714f25b9e96ea4c73fa6cb"},{"TableName":"tbl1c2a284431334e839fc9b819a664ed7c"},{"TableName":"tbl1d6bb4641a4740adb2a0670653254cd7"},{"TableName":"tbl1ea7e212f7b44ad0a5117caf9878309c"},{"TableName":"tbl1eaab3df395c42b888afcd97491e7c31"},{"TableName":"tbl1fa8959e558b4f88a0416355c66c192b"},{"TableName":"tbl2058344813354d5192d9d5141317b051"},{"TableName":"tbl21353ca572e84646a7d7eab5b98920b1"},{"TableName":"tbl21be34b2ab6b4069a7b9286d6aac5fd8"},{"TableName":"tbl2287cabe49554200b504cd71e4b70b24"},{"TableName":"tbl22b5163cd53646a6abf9bfc4f1e01529"},{"TableName":"tbl232753d1e1b14202bb23a1a987d68aef"},{"TableName":"tbl235b55030614434ea6eae4fbf1f30c5a"},{"TableName":"tbl235ce5ff71c240dfbaecd80bfebf9d73"},{"TableName":"tbl238f9d3cb88a4733a2a71681515e878b"},{"TableName":"tbl23ea4e8bd7ba496f9d0d394b3551cb17"},{"TableName":"tbl242064546b024e0db5b4ddf4b178b599"},{"TableName":"tbl24a874d7844b4d28bfb77b39df57abe5"},{"TableName":"tbl250dabf7345a482a904c9a2d742b37b4"},{"TableName":"tbl2522dfaf74ab499fae7ed23de2047800"},{"TableName":"tbl252b7288d41f4602875738c5b46902cd"},{"TableName":"tbl25943060f45c4fe2988fbe38dc0dc430"},{"TableName":"tbl25d68bbb565b49068252c4c3895fca10"},{"TableName":"tbl26738bdcde044248acb7bf2812cda71c"},{"TableName":"tbl2687b6a44ac04050bd69de37c7377cca"},{"TableName":"tbl269349b9757b4d51bf89321fef98e9c6"},{"TableName":"tbl26a13f11fa134160a0e5df0a4c233b61"},{"TableName":"tbl283353011e664b3c9f867cabfa9aa897"},{"TableName":"tbl28623fa19d1147d899b2bdc30e51f706"},{"TableName":"tbl28a3d0a7584a4cceb682121e36ef4dad"},{"TableName":"tbl28d33d42c95d4f2daad88154974bd5f3"},{"TableName":"tbl29e957d938ae40fea956741c5a2a085d"},{"TableName":"tbl29ee00badd95413b8de52b2e0641a278"},{"TableName":"tbl2a05aa88fcec4b60a9bf64e775cc4eef"},{"TableName":"tbl2c0dbd376b0c4704b9c91b256914ed09"},{"TableName":"tbl2ca29a822fff400da658f9173ed09c22"},{"TableName":"tbl2cc94ee6cea14ec0b7edd99d80769134"},{"TableName":"tbl2d569aafca99458c911ec0f77f3824d0"},{"TableName":"tbl2dfea7cf7f904b98ac3192bc70b97fb4"},{"TableName":"tbl2eb4a0ee48224f278eef1881cabd9b3e"},{"TableName":"tbl2f0b14b34e4349f18dbd6788594e03d8"},{"TableName":"tbl2f47f1af37eb4d0dada1b2411421ef69"},{"TableName":"tbl30415045a54b45e1b5234f0f2e0a7ea3"},{"TableName":"tbl30caacdaaafb4771a4a0d712bfb4db52"},{"TableName":"tbl30ef45fa80804f03a8ca21965713b7f2"},{"TableName":"tbl3109b53f9b634cc6a58d5e5dca87d86c"},{"TableName":"tbl311251759a9146ed839b0b97a3f79b40"},{"TableName":"tbl315e4502eaf8454d91c22de8d676dee3"},{"TableName":"tbl31bb6c083b06469796e2bb20e9a03d60"},{"TableName":"tbl31c7b1bf86144f498790c028d15e44aa"},{"TableName":"tbl3216977b1ab94e17b25b46120cd5e7a6"},{"TableName":"tbl32704a8c4c3847c19beabeb76ffdaf68"},{"TableName":"tbl33e60d15005541cfbd0d79ee571e504d"},{"TableName":"tbl3432d8ab403a4a72ab6c13afe74a9a79"},{"TableName":"tbl358e51c89bf34825b54024d6ad64424f"},{"TableName":"tbl35e53983f2ab4048a9bf6aab3094c277"},{"TableName":"tbl364ee7c62c18418683ecc3347871363d"},{"TableName":"tbl365adf56b556439ba1edabc7a3b151f9"},{"TableName":"tbl36c56d15551f4a899363fa598ca5270c"},{"TableName":"tbl3800688668f2484692b1ef88f9b7dbeb"},{"TableName":"tbl38aac9ba65a44841b46592f078ab6880"},{"TableName":"tbl38d00566ab644059b4f2e96f69d8fb5a"},{"TableName":"tbl397a3361ee8340869a84d274d04273da"},{"TableName":"tbl399171ae046d47fe8c908bd595464a51"},{"TableName":"tbl39a8d39ceb7a4940a11ff41e31dd9d26"},{"TableName":"tbl3a03de6e9d524a08a0eab6aec3752f56"},{"TableName":"tbl3a557984770d4a889af089c0ed662459"},{"TableName":"tbl3a798a2f17e9422f88335d8d14c8b06c"},{"TableName":"tbl3b24670192f24545950a373933e4fddd"},{"TableName":"tbl3bc7998a086c4c7484a140b0f7f192ee"},{"TableName":"tbl3bdd7628294c48299424aad871e44b28"},{"TableName":"tbl3be128b8bb5f4015a2fd867e629f85be"},{"TableName":"tbl3c410b1728144e8487c8b56ba1b9af83"},{"TableName":"tbl3d537ef691fc410aa7dda3646527e4e7"},{"TableName":"tbl3d64fe22decc424684d588554f6f75e5"},{"TableName":"tbl3d8d62a03bec4151aac85f4fbe9daa01"},{"TableName":"tbl3e885cc18775486f83bd1720b718a0fa"},{"TableName":"tbl3ee036273ec4419b9563208ca264203f"},{"TableName":"tbl3f6126816d5f442a9d46b516ce13c63f"},{"TableName":"tbl4006523f6459474f947d799749e347f0"},{"TableName":"tbl409e9679175b45f187717c1c085d7eb2"},{"TableName":"tbl40de65d1b3194b83b4c6b61e8a5c3836"},{"TableName":"tbl4180a4acb1d642c1baec348aac29f400"},{"TableName":"tbl41b3ccbf37ba4862b9446e3795a41f39"},{"TableName":"tbl41cc33b5514d4e368071d9e64c249864"},{"TableName":"tbl428d1377ace146d9b49b95b97718d16e"},{"TableName":"tbl433330a1eca94f6bbdd3aa86950200a8"},{"TableName":"tbl43bb74e873f44575997a7eb0ee78db77"},{"TableName":"tbl43d297ac83974678a99a005c621720ea"},{"TableName":"tbl43eb901812744abe9d1d18dfc1a7bac2"},{"TableName":"tbl440a6bcee011436b8e2de7f58c91b2d6"},{"TableName":"tbl44dbdcb273ad451685707ca3a0bda916"},{"TableName":"tbl44ed2f4580434261bcc7f2c69773ff3f"},{"TableName":"tbl45076da26a6d45f0bc5c50d66d562070"},{"TableName":"tbl45d5f8490eb746809d9692a222175ca9"},{"TableName":"tbl45ee6a55944045b2a226d0526b00f7d9"},{"TableName":"tbl46283514121447a6b4ab7e0ac3f8f334"},{"TableName":"tbl4636d4fca457423db2522b06056960a9"},{"TableName":"tbl46a86137604b4fc8acbb4317b6552386"},{"TableName":"tbl46ec40452ac24751a0d701ee2206d729"},{"TableName":"tbl472ee50446844245a1233928f09ca4f3"},{"TableName":"tbl4732966c1b814ae8ae9f2d254629c9d7"},{"TableName":"tbl47654d9e2c004e3ea2ae81f2d681b398"},{"TableName":"tbl47961e7eb59b461abb09cfa98e0cc12e"},{"TableName":"tbl49102c5b10924f06861ca884fccc3ca6"},{"TableName":"tbl4957b4fca29e4d3bba50854cf7a650ce"},{"TableName":"tbl495c13711c8645b3a8ccb9c7a7bb0982"},{"TableName":"tbl4970173963ca4772b875caa1d942eadb"},{"TableName":"tbl4972366b795345d39cf06a72225e4262"},{"TableName":"tbl49ab5be36b1f499092b8db18ccb782b6"},{"TableName":"tbl4a11f313d4984614b4e7e6828b20e645"},{"TableName":"tbl4a50ad77180941b5a8d11a7c031d21ad"},{"TableName":"tbl4a666cd4e3464d7aa31323831f6f8ceb"},{"TableName":"tbl4ab8422d2aa14695b92229c2341bc80d"},{"TableName":"tbl4b1fbe3f7d1643abaed5ac9a041510cf"},{"TableName":"tbl4b95a88b912f44be90904698aec94771"},{"TableName":"tbl4c08f733bcae4737b0f1165cc8be7ada"},{"TableName":"tbl4c291024a22e4e4fa256a7dfd700e584"},{"TableName":"tbl4c5aa3cece36476fa0963ebeba9b3097"},{"TableName":"tbl4cbee75578ab40a4afbab3ec3a5de2ca"},{"TableName":"tbl4d60d971d54540e58a753ac6004bcc24"},{"TableName":"tbl4dc8de20fc47456a9194920c1e0c8934"},{"TableName":"tbl4de3a029c8d1477e84aca3e1195198c0"},{"TableName":"tbl4e53247bf9934abda381e0d641f334b5"},{"TableName":"tbl4e6176b107f2443fbbec930384d117c1"},{"TableName":"tbl4f0e7268e4c2436f8475e52b03e4d35e"},{"TableName":"tbl4f2ce8d76d6e4ff3bab5ac8bbda73592"},{"TableName":"tbl4f9b05f1cfe0489bb6af4d83ad67bcc2"},{"TableName":"tbl4fb78cdbfe0e4d519c67b53b0c900d22"},{"TableName":"tbl50de9ba6afc8445f8ffd1a4eaf92fb2d"},{"TableName":"tbl50e8dcc9a01449af9736f93c4f419be9"},{"TableName":"tbl51a8eea6cc324c579422ca0b8b168c0c"},{"TableName":"tbl51f5a3fbaabe42f4aead734a88d8262e"},{"TableName":"tbl520a16ddb53c4717a9254300ddb28cb3"},{"TableName":"tbl5210ccde7f7647928f6e78f6eac8afe1"},{"TableName":"tbl52d730e6910f4186a7b5ce1333f1a981"},{"TableName":"tbl532224413f0e4224bcbb318d7d5030f1"},{"TableName":"tbl545fec4dff134c5089fc4da535143c10"},{"TableName":"tbl55b42258b4a14d34bf74832a5832f764"},{"TableName":"tbl5799738a394343c0a9c90dcf649cba5e"},{"TableName":"tbl58314157c3c542ea930faf4de154ad70"},{"TableName":"tbl58599d817c224b75ba33c6268458b099"},{"TableName":"tbl586b85dba22e4dfeaff1ea29f186c27a"},{"TableName":"tbl587723096c544735bfb0d0da21ee22ac"},{"TableName":"tbl5884d57712b648e08288f86253db892c"},{"TableName":"tbl588b7c84383041c2a6b5e0a2d50e3b9b"},{"TableName":"tbl5984166ffc844196ae2b077e20365196"},{"TableName":"tbl59a098c3922e40409b0254a3858a45bf"},{"TableName":"tbl5b057a22cf694c2fbe887c44127a0368"},{"TableName":"tbl5b459448994f4e73af123d102ae7fb5f"},{"TableName":"tbl5b5dbcfe2df54964acc46c1d911687a9"},{"TableName":"tbl5b773e664a9c453a9aa70cd33e9948a4"},{"TableName":"tbl5b95331c604c4365ac859b765f389537"},{"TableName":"tbl5bdb8b2aa56246d69ff24cdc94c397ba"},{"TableName":"tbl5c82747f89114cc29d5caf423d8cd62d"},{"TableName":"tbl5cc3b6835ec04995805b6de6a2e536bc"},{"TableName":"tbl5cc40aa24cc7408a9d0d3db5e51bca7e"},{"TableName":"tbl5d8a046b856a4aeba7c07db2b8361c26"},{"TableName":"tbl5d9fcee1d0d043d0b1339024bd445434"},{"TableName":"tbl5e63aa37bac245729ee3184e286de23d"},{"TableName":"tbl5e74225d83084f61b6a06aa86c334a48"},{"TableName":"tbl5ec485defde24b1f99a3ddcfe40e3e23"},{"TableName":"tbl6026d803fd7a4d3d82852528cb74b494"},{"TableName":"tbl603ceb9e79cc4d4992b84c4183b7aaee"},{"TableName":"tbl6058b6f5f30e432e94881befae4bf154"},{"TableName":"tbl60e7eb2a48274b57bc5ff5eea61a385c"},{"TableName":"tbl60edc9ee02ca49689af7d58d69db816f"},{"TableName":"tbl60f4afb4228c4348b4c0065cddc95c74"},{"TableName":"tbl612314d7ffd545cf9b10bfb2a73b186b"},{"TableName":"tbl612961478ccf4289be7ef49816f68e7a"},{"TableName":"tbl615633100b1c4970896a703af027199e"},{"TableName":"tbl61a55ffa7c9a4afab711668c8005860b"},{"TableName":"tbl62ac44b6c62e48f1b6764eaa3aa436a2"},{"TableName":"tbl62e40b6b9d4a42f6a6e8ea4150365209"},{"TableName":"tbl6326f0a71c5e4c7b9e76d1884ddeac2c"},{"TableName":"tbl6356911923f144718ad862e8d3db283d"},{"TableName":"tbl63664f190d7e4cc88191487feddf007e"},{"TableName":"tbl63b71d4d4cfe4acdb6dfb8e7e9ccc2bf"},{"TableName":"tbl63c6c1534b6346b59e5acf95bf7623f5"},{"TableName":"tbl63cd6482f9c54c6bb52189dcddc9724b"},{"TableName":"tbl63dc7ae20cf44113ae9c59ddf889e61a"},{"TableName":"tbl6485837c60544280a1f04c3b832fad33"},{"TableName":"tbl64d70af300354851805f612594c3e311"},{"TableName":"tbl653b3cbc070e40bfb9ea9747baefe6fb"},{"TableName":"tbl65ba33068ef64b9f95c1038e22b720d9"},{"TableName":"tbl661839bb54174e2d92c5e20d3d6b6d5f"},{"TableName":"tbl665a3a7f18584abe8d13967a6db39434"},{"TableName":"tbl668ea4354635458c98a402950bd8d949"},{"TableName":"tbl66d93ebd92604bbca059de6e1d477674"},{"TableName":"tbl67ae3f7e8df4419a9a8c193aa217d479"},{"TableName":"tbl67b6a9410d1943b5b035adb9473a62d6"},{"TableName":"tbl67d852962d9243a5aed0628e640b152d"},{"TableName":"tbl68981bba1a8b4d46a9e1c3b18ebc46e2"},{"TableName":"tbl692477f37f1447748ddf7dde9ec5709a"},{"TableName":"tbl695a3961c0eb414384c6336b4aaf804b"},{"TableName":"tbl695ac752444e4f3481d9a9ffba8b5638"},{"TableName":"tbl697420bd1bb8431f8e45b32ddf305e19"},{"TableName":"tbl6a3a88221adc4025b19b61159bc61f05"},{"TableName":"tbl6a6e1bd351e648c799f1ea0acbd387c3"},{"TableName":"tbl6af8f29120434f82b5f850c3b6c38412"},{"TableName":"tbl6b20729646464684b7c34e4e8e897ce9"},{"TableName":"tbl6dbb137a974d425f8dc8b1aca1652c0a"},{"TableName":"tbl6dd05d032c464667bdf2490ac45061f4"},{"TableName":"tbl6e8d8497d0e843b7b17c2341c3311167"},{"TableName":"tbl6ebc55c855f5461d8dc3eb391e4a83e2"},{"TableName":"tbl70a4ad03faba477b9f9e850d56cde4a2"},{"TableName":"tbl70c34fbd74ee407ea8b38035f5f4dd2e"},{"TableName":"tbl71ebff1580bd4f0fa88e7da2a7f4777d"},{"TableName":"tbl71ed15e557e44cff85ea96a8d9c8367a"},{"TableName":"tbl7287b263a07844c29cc39d4d5695dbc0"},{"TableName":"tbl7383c9debc234f12a30d79da3a3be57b"},{"TableName":"tbl73b4e67479e64a0789137d24085d8f72"},{"TableName":"tbl73d7c83e67a14db9bd4717126d99e0b1"},{"TableName":"tbl748205f7e9404748ba8afdbb225be01f"},{"TableName":"tbl748adc61d2f04856a07fecb44d493791"},{"TableName":"tbl74db9c051c1441609388b4137b0f809e"},{"TableName":"tbl75f2fd99c12e492fa37ddb3704387033"},{"TableName":"tbl75fec2302b914989bc14e2c34afe9389"},{"TableName":"tbl7626ed6fb2e74eb6a424003e5779ba50"},{"TableName":"tbl7793ec943a1f43268de1cca77f120f18"},{"TableName":"tbl779bfdc1d99f44aebc9cdeaf4cf64360"},{"TableName":"tbl77fa62f38fe14dce843e1271ab6d51f1"},{"TableName":"tbl78e320b08e0a4cc58a50e86f08c76871"},{"TableName":"tbl78ff6308d71f4835bc8dc3e921c8f25c"},{"TableName":"tbl797eceba1fb2437f83c3fb1cd2365639"},{"TableName":"tbl79c5f0ad27214c02b75da570942baef9"},{"TableName":"tbl7a229e3e15db4993b0475ed42afde8b6"},{"TableName":"tbl7b2b085727554320aa110653d531dbc2"},{"TableName":"tbl7b47a2ea35764287992045e737f6ede4"},{"TableName":"tbl7ba70546599444dc8557bd13e8e5c345"},{"TableName":"tbl7c81165257824096944b82f5978faa3f"},{"TableName":"tbl7ce670ab029b420c94b16a7dbaa9571f"},{"TableName":"tbl7deeb7a3934e43d5a7d92f3bfbdeeaa3"},{"TableName":"tbl7e22c37f3152474282606de7e65d1680"},{"TableName":"tbl7eefbbe8cbe549d79e9fd3cf362e086a"},{"TableName":"tbl7f1336488e534479a093239887ac714d"},{"TableName":"tbl7f55ffde39a84cf3be454c3286b4f96e"},{"TableName":"tbl8044e77c75024812b9f328d1beaff52f"},{"TableName":"tbl80f5cc8302b0470ba5c2a050d4e8e9d2"},{"TableName":"tbl811383723ea34ef7aec2c8a697f2776a"},{"TableName":"tbl819b89cdd71a488e8a935cf7be17160d"},{"TableName":"tbl81ceca3e6fa24f46842b9e4306056a55"},{"TableName":"tbl832f0ab2d9f24bac939863d7c5523232"},{"TableName":"tbl8351e529ceb54a6c84d9efa3ed99f701"},{"TableName":"tbl849f86644fa3421e9f79fbe4a02d7107"},{"TableName":"tbl85ad7eebe7c644469f6a3189c24026af"},{"TableName":"tbl85e2f8f8756143188298050a3b4ec997"},{"TableName":"tbl8628341ef7824e84916048e7ae8093f3"},{"TableName":"tbl8645329745a34ba4878764749db9ae26"},{"TableName":"tbl87a9e0e8c30c40508e9e734f6649cf85"},{"TableName":"tbl87d855d1d4394f109368199cd63e0c66"},{"TableName":"tbl88283307f9e643fba5c45309bbda262e"},{"TableName":"tbl88f447f6d3d240f8876c365c5174c83b"},{"TableName":"tbl8918127646d8478e83e2b15314847347"},{"TableName":"tbl895cc8252e9344c18db16b88454c4da9"},{"TableName":"tbl89ed661e89394f27a139742a3e85bb4c"},{"TableName":"tbl89fe90a023ad4bfdb12699747e3d68fe"},{"TableName":"tbl8a3051b4251c43b6b43dc02a730f63ee"},{"TableName":"tbl8c24cc0b9808455cb7091f1f9f60c28c"},{"TableName":"tbl8c32dae36609489d9e2809e20d183c73"},{"TableName":"tbl8d0e302d942d44328d026987a4af9c90"},{"TableName":"tbl8d2524071d704f51965b60bd72eca8c8"},{"TableName":"tbl8d39da6b2385424c99bddffb3c2f72e8"},{"TableName":"tbl8d43d663113d4094b5e846ac924dd3ec"},{"TableName":"tbl8d45fc6295134b9b97d5d46c3b537d6b"},{"TableName":"tbl8dc4cbba93484e14898727fc2150ee9b"},{"TableName":"tbl8ecb8980a98449d5845554df5807f464"},{"TableName":"tbl9013a8b8c4c54c7587fd88661bad25ad"},{"TableName":"tbl907c66fb68d24c5ba5bde349bc88bd49"},{"TableName":"tbl90e29e13dc6845bf9fad72c069b586a1"},{"TableName":"tbl90e9b2a1307348e0b4f55da0607b7706"},{"TableName":"tbl91db25754a1f45d89d96c5ef25d7f223"},{"TableName":"tbl922f77f33adb43c38e549f26272beb19"},{"TableName":"tbl9246be10378743f0aa13be1a5cd35756"},{"TableName":"tbl93232305a9dc49f78f05c9f92528b817"},{"TableName":"tbl939f8900c5ae4936b7503dae6dd1cef9"},{"TableName":"tbl940c529980c54a54ad2a9a1f11632e84"},{"TableName":"tbl943dba6e3e944dfd8f1bab67e17ef004"},{"TableName":"tbl94e79d35c8214bca8dfb78d6907cd85b"},{"TableName":"tbl950df5d086b64bd5876fe7a03b1f9e24"},{"TableName":"tbl95926d3fa6f242b9bb43bcec516ae6c7"},{"TableName":"tbl95f57655a58043efb1faf177a53337e7"},{"TableName":"tbl96f3b984012f4fd9a7d1d98873b48452"},{"TableName":"tbl97c7aa5e6f6843b4bad8d16e97cc983a"},{"TableName":"tbl9816b487e74b4306bc829906ea523755"},{"TableName":"tbl981a8316cd154cb4a61fb1e23262cd1e"},{"TableName":"tbl9822ee4a74bb4df4ac969b76b7d0bc83"},{"TableName":"tbl9916631c7207455690d156d0d98c50fd"},{"TableName":"tbl99caef9bd210437cb754fbe2ccc4d51d"},{"TableName":"tbl9b75dc68d573487b97edfbd8c5a50837"},{"TableName":"tbl9d01714014d44c9c825a50ec5fd9c421"},{"TableName":"tbl9d0b8f5537a940b99809609ed3e276a1"},{"TableName":"tbl9d8ed3ae1f9b4aa7a7ed7bb6d1c845a7"},{"TableName":"tbl9da103ebdbed4b109ac4e373b9c779b6"},{"TableName":"tbl9dad282fe3354275964f84a79c590782"},{"TableName":"tbl9db8bec0c84e4b899d40b4597ebbd27e"},{"TableName":"tbl9dbcfe05a0e84a549cd7b85901613d34"},{"TableName":"tbl9e301801c6654f18aeea41b92e0f1c84"},{"TableName":"tbl9edd36a91f4b4c4aa85e4749f43d5be9"},{"TableName":"tbl9f2118b2c08e4fb18a211619220aeb56"},{"TableName":"tbl9fb368e02bf743488aa4746bae31b437"},{"TableName":"tbl9ff44348007441c7938965aa91389c71"},{"TableName":"tbla00cccaad49d44b39499378f8942a5d1"},{"TableName":"tbla0152bb1715448509bd87571d091f827"},{"TableName":"tbla0bd41d53d7a4793a699e8559ccacdbd"},{"TableName":"tbla1e00da0fe454b28b240f14ddbd90510"},{"TableName":"tbla1e6362f56f64a51babe0933cf98d8c5"},{"TableName":"tbla22312a85ccc4df5b1259ffab9ce7b18"},{"TableName":"tbla24a36b3c60c4e86adac7f1639edb456"},{"TableName":"tbla2adc64faea0494480f0a2b02cc93c75"},{"TableName":"tbla2b3655c27bd4bd684f2a450602a0a6b"},{"TableName":"tbla327fa460a8a4366a3d69064c68e680d"},{"TableName":"tbla3a4ef84e2b14a8e8f3e44383c50ce00"},{"TableName":"tbla3b780dc60ce42da801c87882299775a"},{"TableName":"tbla4053977a7024857be5a8467339ece02"},{"TableName":"tbla4304ef551d341928c99729d176d6126"},{"TableName":"tbla4be01548a074240bb0fe3cb61c1e2c5"},{"TableName":"tbla529550480554158a0c126e1923d4510"},{"TableName":"tbla52c050d27b44a6dab5b6e8154d8e4a6"},{"TableName":"tbla548bb240ba54036a6ecfca53e03e88e"},{"TableName":"tbla588edd2230c4d9aa960a198a6d610a2"},{"TableName":"tbla66beb7f5f354b01963c1affa3f4c9c2"},{"TableName":"tbla673d82ae8754222961b576cbdd873cb"},{"TableName":"tbla6ad17e79b3d4020ad369623f4d22d2f"},{"TableName":"tbla6cda3ffdab64e8b8f59e5523c78efdb"},{"TableName":"tbla7a886b95a3e4184aaba0a0c765eadd0"},{"TableName":"tbla8307fe6a848468799109501730afef4"},{"TableName":"tbla8b00d5dc9a04ac5ba15fc92d71110bc"},{"TableName":"tbla8c0118e0f3943509ba9ca1dae4da3e9"},{"TableName":"tbla928edff8f784005b33e75e0f13d244a"},{"TableName":"tbla93c46d213ce40aa9faddf7fc2da8bbd"},{"TableName":"tbla97662c8d3ff4d73abc4720f284a7603"},{"TableName":"tbla9b00156c43c49aa9edc2065f2faa359"},{"TableName":"tbla9f42aad3d4045f1a9dc1a1645b27522"},{"TableName":"tblaa79ed457ca4489388ea7fbffd6a523e"},{"TableName":"tblab8d2cf34b984848896f4cc805d7db11"},{"TableName":"tblabf72d56d6c94d218b7140ada1e2ad4e"},{"TableName":"tblac04d4f7cfe645e7a74e7bdc435160a5"},{"TableName":"tblac44753d77b545f7853b62b6bdb810ea"},{"TableName":"tblac80c9e6fb8346b2b7f3828245bbde41"},{"TableName":"tblad74689d72974cc5b7de30816fa367ca"},{"TableName":"tblad85067aaa0749d69f6cb54ffd1b85ca"},{"TableName":"tblae0e731fb98746b48f4974a9abff0161"},{"TableName":"tblae408fed8afe46268d009057cd49ec60"},{"TableName":"tblae61d3ce6d4441239a62982fed3ec771"},{"TableName":"tblaed2ee48e8b24a3caefa680d4bdc88fb"},{"TableName":"tblaed4f8338c9c40b5a064a2a8e4de769b"},{"TableName":"tblaf0835297f364a259e60a7a976afb533"},{"TableName":"tblaf154a7844304949a4c10ae9ce6ae26a"},{"TableName":"tblaf2cd676583f4e7ba16f8f98b469b8c4"},{"TableName":"tblaf668b7b47d448ccbc449cd0193cd9e7"},{"TableName":"tblaf7d5c4f327e4e4f87863ec4f43610eb"},{"TableName":"tblaf992a780d55488fa478a3b9a3689ff1"},{"TableName":"tblb06e2cd2f2ca44c78649e85c579ec145"},{"TableName":"tblb0ca34e062044b478d532ba2918cc553"},{"TableName":"tblb0d464adfabf4bdb952ea17df9b59f15"},{"TableName":"tblb0d710065aae49a58e2710fbc12ab05f"},{"TableName":"tblb0facbe36bb74ef4a53a8e305e932449"},{"TableName":"tblb0fbe53650294bfc8c780b76edd0cd7d"},{"TableName":"tblb1d464cecf5345ec84923caa55cfdc94"},{"TableName":"tblb1e3c24c16fa465098541a4ab68901ca"},{"TableName":"tblb28526c80886411c912988d332c85fd6"},{"TableName":"tblb3086ecd0b1d40e08d2f3ddf919ef334"},{"TableName":"tblb3110ed97cf7489689a83fccd0ab1b2e"},{"TableName":"tblb35477c4d91047a0b4800716b90f3822"},{"TableName":"tblb3badfdc4a2a49aa8886a3d07b8f6bc3"},{"TableName":"tblb3c022544cdc4cd8bbed0e494f8b4343"},{"TableName":"tblb4a3595bbbff48419e59310483ceb13b"},{"TableName":"tblb4c11d1a365046f78d24233799cd055f"},{"TableName":"tblb524096f774347599f572cde624fe83e"},{"TableName":"tblb677d5fd14ea46d58d872fe218fb934a"},{"TableName":"tblb6fb13a4e64c45d2823e76d0f71cc406"},{"TableName":"tblb783bfcb178a4f86a301718f82eea5a8"},{"TableName":"tblb7af1e3dbba0459eacb30f26c887952f"},{"TableName":"tblb87d96bdac2f41fe8db4b34a76194338"},{"TableName":"tblb883bdfe250840f8bbed580d009919ec"},{"TableName":"tblb8f3166dd6cf4aca8db3a9faff96f4f0"},{"TableName":"tblb973716f82c4477e8d4d144bc8136af6"},{"TableName":"tblb9dbea5933254daab4a069d3e14b436c"},{"TableName":"tblba003f099d0f45408422254a4492ff1d"},{"TableName":"tblba680f8669c04d9c81e55ca561d5139b"},{"TableName":"tblbabd06408f2f40edbb48160a1822c347"},{"TableName":"tblbb25f58edc1e489f82f2836472b046fd"},{"TableName":"tblbbb3dcc6411a4597a4a7ee879bf9adb7"},{"TableName":"tblbbdc3a8870954ab88d5a0e953e0e0519"},{"TableName":"tblbca9a9b915f84734b1f6cf444d4210a6"},{"TableName":"tblbcda6e16b80a4cc09337665b6fb54afa"},{"TableName":"tblbd5ea3cc250442bea868a633fba6ec9b"},{"TableName":"tblbd7185081777410b81ab9b8a00887ec4"},{"TableName":"tblbdfb77f749254674936c1345f5cf89c0"},{"TableName":"tblbef7715fea5d4364a50a1eecc6c3d908"},{"TableName":"tblbf7b57faa00a43209d7e290b89d64701"},{"TableName":"tblc0359086919e4f3ba75a3e3be4dc93ef"},{"TableName":"tblc0e0ed7f342a4bd1b4c35a54dba6269a"},{"TableName":"tblc105950447774436b0f1857575064398"},{"TableName":"tblc1ba5103237645f78ecc765d44a12a20"},{"TableName":"tblc22325111e3f4f12b702f70f2118fdcf"},{"TableName":"tblc243782315ce4dc9a113d608dd06286f"},{"TableName":"tblc27dca19c5854a0b92c838b3d502b339"},{"TableName":"tblc29e5fb075f144348726527b00526b2d"},{"TableName":"tblc30a541803504b5db75ac8e51b3c7bed"},{"TableName":"tblc4417b8e3afb4f1f83aa6f786ce6429f"},{"TableName":"tblc44cb09bdbe949e080c2a2b11aa332af"},{"TableName":"tblc458d4ac05be48d297efabc36586ae21"},{"TableName":"tblc4d5a3c552cf407aa2095b3654115ddc"},{"TableName":"tblc4e7a83dfddd459fa5e35ee9c046c3db"},{"TableName":"tblc5686dabfcc64ded887342c39904b7d7"},{"TableName":"tblc572fa1756de4189aebd2b6a816c33d5"},{"TableName":"tblc5d2bb46092a4fb3a87ee054e2922a28"},{"TableName":"tblc6261f052dc442fda333b32c69ede321"},{"TableName":"tblc69b0a2263664056b05cad9896074a08"},{"TableName":"tblc6bdf19a534e4b328a4f26e99f146f41"},{"TableName":"tblc723348989234f0e8163782784b47e70"},{"TableName":"tblc742d56cf8fc45b5913a0920f71e8125"},{"TableName":"tblc76acadb11e443fb88a1641af81a94d7"},{"TableName":"tblc786674298f5461dacc6be5bcea6167f"},{"TableName":"tblc79dac2d437f4d9ea63f3dfcfe870902"},{"TableName":"tblc855944446b94d698202bf8d85f4a7a4"},{"TableName":"tblc89eb1164f19487a9b9e900c6bfab786"},{"TableName":"tblc8ace17b9fd04759a17529a06f7046c8"},{"TableName":"tblc8d253d06f7a4bbeb344dde90a374c43"},{"TableName":"tblc8e963245555476fbdc2865a481240ba"},{"TableName":"tblca02458fed974f07a67876ff6d659ce4"},{"TableName":"tblca1ef18a6fde4d57a8b005c9a1e17317"},{"TableName":"tblca5b6fb234f643a19f045147eb183e89"},{"TableName":"tblcafcbc41541f4f73b9a66b282d66c3ff"},{"TableName":"tblcb4cd1fccbbb4da0a254427082318cab"},{"TableName":"tblcb606f18ac74403ab462e454af9ad650"},{"TableName":"tblcb74b83143af4cbf95d86325c9de385d"},{"TableName":"tblcbfc1839624d4241b93005298e3eab4f"},{"TableName":"tblcce73519d3ce4c8f8ef679580509c5e2"},{"TableName":"tblccfc5e750d154c6a9015a8bd7fbb074a"},{"TableName":"tblcd6b9c3945d34d79a410e812113fe9ce"},{"TableName":"tblcda480b1ab854665b9dd0257bc4eb3ef"},{"TableName":"tblce3df078203446dd91911af850c59629"},{"TableName":"tblce7b654b12d24133aa80861590f6ba65"},{"TableName":"tblced6f78aa4b14f7b985a548bd3b0ec9e"},{"TableName":"tblcf0b0bf49f014dbeb5444591d334ebaf"},{"TableName":"tblcf45b54aa2d7471696a5a90d0c542f50"},{"TableName":"tblcf740cecb7d7409ca8e84fee48c9f57f"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:16 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:09 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-continuation-NextTableName: [1!72!dGJsZDBkOWY4YTI1NTI3NDU4Zjk5NTc4YzIzMjgzNTUzMjUBMDFkMjU1YTA2M2NhZTBlOA--] - x-ms-request-id: [150aabe5-0002-00e2-3a09-fcb0a6000000] + x-ms-continuation-NextTableName: [1!72!dGJsZDA2ZWQxMzFkZTM3NDNhMTk2MTFmNjBjNTc5MGUyNzIBMDFkMjU2NmQxYWE4MTU2NA--] + x-ms-request-id: [5d74da01-0002-010f-1603-fdff77000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table.test_set_table_acl.yaml b/tests/recordings/test_table.test_set_table_acl.yaml index 886bf598..47b7babb 100644 --- a/tests/recordings/test_table.test_set_table_acl.yaml +++ b/tests/recordings/test_table.test_set_table_acl.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8872e806-67fc-11e7-9dbe-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b68ebb3e-68f6-11e7-898b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:09 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''tableb1160bb7'')'] - Date: ['Thu, 13 Jul 2017 18:53:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:10 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''tableb1160bb7'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [94c35936-0002-0061-6909-fc100b000000] + x-ms-request-id: [16925000-0002-008f-5f03-fd1a88000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -36,9 +36,9 @@ interactions: Content-Length: ['0'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [88865ce2-67fc-11e7-a377-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:17 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b6a41ac6-68f6-11e7-8736-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:09 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.table.core.windows.net/tableb1160bb7?comp=acl @@ -46,9 +46,9 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:53:17 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:10 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [94c35945-0002-0061-7409-fc100b000000] + x-ms-request-id: [16925011-0002-008f-6e03-fd1a88000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -57,9 +57,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [88d4271a-67fc-11e7-815c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b6a96d46-68f6-11e7-b1ac-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:09 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/tableb1160bb7?comp=acl @@ -68,10 +68,10 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:10 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [94c359af-0002-0061-5109-fc100b000000] + x-ms-request-id: [1692501a-0002-008f-7703-fd1a88000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table.test_set_table_acl_too_many_ids.yaml b/tests/recordings/test_table.test_set_table_acl_too_many_ids.yaml index 760c99f4..2c181df1 100644 --- a/tests/recordings/test_table.test_set_table_acl_too_many_ids.yaml +++ b/tests/recordings/test_table.test_set_table_acl_too_many_ids.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8961d268-67fc-11e7-b036-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b6c6aed8-68f6-11e7-9c27-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:09 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''table6f17111b'')'] - Date: ['Thu, 13 Jul 2017 18:53:18 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:09 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''table6f17111b'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [68f35283-0002-0104-0209-fce703000000] + x-ms-request-id: [f20d3a7d-0002-00f9-4203-fd9e34000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} version: 1 diff --git a/tests/recordings/test_table.test_set_table_acl_with_empty_signed_identifier.yaml b/tests/recordings/test_table.test_set_table_acl_with_empty_signed_identifier.yaml index c515602c..a725b1b6 100644 --- a/tests/recordings/test_table.test_set_table_acl_with_empty_signed_identifier.yaml +++ b/tests/recordings/test_table.test_set_table_acl_with_empty_signed_identifier.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [899395c8-67fc-11e7-86a7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b6f19ab0-68f6-11e7-b0e8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:09 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''tableb9bd17bb'')'] - Date: ['Thu, 13 Jul 2017 18:53:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:09 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''tableb9bd17bb'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [eec7ac24-0002-0072-0109-fc25ea000000] + x-ms-request-id: [045dd76f-0002-005f-0103-fda62a000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -38,9 +38,9 @@ interactions: Content-Length: ['145'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [89a7189e-67fc-11e7-b9b7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b707d6e8-68f6-11e7-a77f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:10 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.table.core.windows.net/tableb9bd17bb?comp=acl @@ -48,9 +48,9 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:53:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:10 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [eec7ac2c-0002-0072-0709-fc25ea000000] + x-ms-request-id: [045dd77f-0002-005f-0e03-fda62a000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -59,9 +59,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [89c619ee-67fc-11e7-955b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b78640d4-68f6-11e7-bd1f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:10 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/tableb9bd17bb?comp=acl @@ -69,10 +69,10 @@ interactions: body: {string: "\uFEFFempty"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:11 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [eec7ac3d-0002-0072-1609-fc25ea000000] + x-ms-request-id: [045dd873-0002-005f-6e03-fda62a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table.test_set_table_acl_with_empty_signed_identifiers.yaml b/tests/recordings/test_table.test_set_table_acl_with_empty_signed_identifiers.yaml index 959e1780..1bf93d24 100644 --- a/tests/recordings/test_table.test_set_table_acl_with_empty_signed_identifiers.yaml +++ b/tests/recordings/test_table.test_set_table_acl_with_empty_signed_identifiers.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [89f6e7b8-67fc-11e7-a933-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b80bbea8-68f6-11e7-a685-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:11 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''tabled1eb182e'')'] - Date: ['Thu, 13 Jul 2017 18:53:19 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:11 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''tabled1eb182e'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [a1ab724a-0002-0115-6609-fcd018000000] + x-ms-request-id: [da36825f-0002-008c-3903-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -38,9 +38,9 @@ interactions: Content-Length: ['60'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8a0b4848-67fc-11e7-b44d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b8213d1e-68f6-11e7-a59c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:11 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.table.core.windows.net/tabled1eb182e?comp=acl @@ -48,9 +48,9 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:53:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:11 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [a1ab7250-0002-0115-6b09-fcd018000000] + x-ms-request-id: [da368268-0002-008c-4003-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -59,9 +59,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8a36400c-67fc-11e7-b0b1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b85247b0-68f6-11e7-b1e8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:12 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/tabled1eb182e?comp=acl @@ -70,10 +70,10 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:11 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [a1ab726a-0002-0115-0509-fcd018000000] + x-ms-request-id: [da368297-0002-008c-6d03-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table.test_set_table_acl_with_signed_identifiers.yaml b/tests/recordings/test_table.test_set_table_acl_with_signed_identifiers.yaml index 30f3f5cf..dcd6c3c9 100644 --- a/tests/recordings/test_table.test_set_table_acl_with_signed_identifiers.yaml +++ b/tests/recordings/test_table.test_set_table_acl_with_signed_identifiers.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8a66ddf4-67fc-11e7-8d64-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:20 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b88dc8da-68f6-11e7-af21-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:12 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''table45dd15a0'')'] - Date: ['Thu, 13 Jul 2017 18:53:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:12 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''table45dd15a0'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [4ee584ca-0002-0000-3409-fc54d4000000] + x-ms-request-id: [af8dfd92-0002-00e2-2503-fdb0a6000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -38,9 +38,9 @@ interactions: Content-Length: ['237'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8a7b33e2-67fc-11e7-bfb2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b8a27258-68f6-11e7-8727-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:12 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.table.core.windows.net/table45dd15a0?comp=acl @@ -48,9 +48,9 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:53:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:12 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [4ee584dd-0002-0000-4309-fc54d4000000] + x-ms-request-id: [af8dfd9d-0002-00e2-2e03-fdb0a6000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -59,9 +59,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8a837668-67fc-11e7-b2e8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b8ee6b86-68f6-11e7-9db6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:13 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/table45dd15a0?comp=acl @@ -69,10 +69,10 @@ interactions: body: {string: "\uFEFFtestid2011-10-11T00:00:00.0000000Z2011-10-12T00:00:00.0000000Zr"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:13 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [4ee584ea-0002-0000-5009-fc54d4000000] + x-ms-request-id: [af8dfe39-0002-00e2-4203-fdb0a6000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table.test_table_exists.yaml b/tests/recordings/test_table.test_table_exists.yaml index 18fc725b..62fd0c19 100644 --- a/tests/recordings/test_table.test_table_exists.yaml +++ b/tests/recordings/test_table.test_table_exists.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8aa5607a-67fc-11e7-aa96-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b9208d46-68f6-11e7-a07e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:13 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''tablea54a0b7c'')'] - Date: ['Thu, 13 Jul 2017 18:53:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:15 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''tablea54a0b7c'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [11ee12ae-0002-00b6-2309-fc5a2c000000] + x-ms-request-id: [44da0e9e-0002-00d3-0203-fdeb71000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -36,9 +36,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8ab8d530-67fc-11e7-b305-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b9366490-68f6-11e7-b335-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:13 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables('tablea54a0b7c') @@ -47,11 +47,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:15 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [11ee12b8-0002-00b6-2a09-fc5a2c000000] + x-ms-request-id: [44da0eb4-0002-00d3-1503-fdeb71000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table.test_table_not_exists.yaml b/tests/recordings/test_table.test_table_not_exists.yaml index 0d3b592a..a33ca67a 100644 --- a/tests/recordings/test_table.test_table_not_exists.yaml +++ b/tests/recordings/test_table.test_table_not_exists.yaml @@ -6,23 +6,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8ad41cb4-67fc-11e7-aeee-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b95109c6-68f6-11e7-81b7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:13 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables('tabled7260d2c') response: body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:13f58d17-0002-0019-0109-fc78bc000000\nTime:2017-07-13T18:53:21.2661940Z"}}}'} + specified resource does not exist.\nRequestId:b974b855-0002-0129-1503-fd64c3000000\nTime:2017-07-15T00:44:14.3809584Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:20 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:13 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [13f58d17-0002-0019-0109-fc78bc000000] + x-ms-request-id: [b974b855-0002-0129-1503-fd64c3000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: Not Found} version: 1 diff --git a/tests/recordings/test_table.test_unicode_create_table_unicode_name.yaml b/tests/recordings/test_table.test_unicode_create_table_unicode_name.yaml index f738e741..25f9a0b9 100644 --- a/tests/recordings/test_table.test_unicode_create_table_unicode_name.yaml +++ b/tests/recordings/test_table.test_unicode_create_table_unicode_name.yaml @@ -9,24 +9,24 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8afbecb4-67fc-11e7-9ca9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:21 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b9796128-68f6-11e7-94a5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:14 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables response: body: {string: '{"odata.error":{"code":"InvalidResourceName","message":{"lang":"en-US","value":"The - specifed resource name contains invalid characters.\nRequestId:b4d5d8b1-0002-00d0-7009-fce876000000\nTime:2017-07-13T18:53:21.6026977Z"}}}'} + specifed resource name contains invalid characters.\nRequestId:b62d867e-0002-00df-0103-fd0580000000\nTime:2017-07-15T00:44:14.9030222Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:14 GMT'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b4d5d8b1-0002-00d0-7009-fce876000000] + x-ms-request-id: [b62d867e-0002-00df-0103-fd0580000000] x-ms-version: ['2017-04-17'] status: {code: 400, message: Bad Request} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_all_operations_together.yaml b/tests/recordings/test_table_batch.test_batch_all_operations_together.yaml index 4558ccd1..4bff2bcf 100644 --- a/tests/recordings/test_table_batch.test_batch_all_operations_together.yaml +++ b/tests/recordings/test_table_batch.test_batch_all_operations_together.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"PartitionKey": "003", "RowKey": "batch_all_operations_together-1", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:14Z", "test5@odata.type": "Edm.DateTime"}' headers: Accept: [application/json;odata=minimalmetadata] @@ -12,9 +12,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8b250322-67fc-11e7-b319-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b9a11e3e-68f6-11e7-a8b0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:14 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/table194014d4 @@ -24,19 +24,19 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/table194014d4(PartitionKey=''003'',RowKey=''batch_all_operations_together-1'')'] - Date: ['Thu, 13 Jul 2017 18:53:21 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A21.9684055Z'"] + Date: ['Sat, 15 Jul 2017 00:44:14 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A14.7433301Z'"] Location: ['https://storagename.table.core.windows.net/table194014d4(PartitionKey=''003'',RowKey=''batch_all_operations_together-1'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2c99bbf4-0002-00fb-5109-fc9cce000000] + x-ms-request-id: [9a38f654-0002-0120-0803-fd7e4d000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: '{"PartitionKey": "003", "RowKey": "batch_all_operations_together-2", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:14Z", "test5@odata.type": "Edm.DateTime"}' headers: Accept: [application/json;odata=minimalmetadata] @@ -46,9 +46,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8b413614-67fc-11e7-82e5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b9bd3e0c-68f6-11e7-875e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:14 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/table194014d4 @@ -58,19 +58,19 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/table194014d4(PartitionKey=''003'',RowKey=''batch_all_operations_together-2'')'] - Date: ['Thu, 13 Jul 2017 18:53:21 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A22.053466Z'"] + Date: ['Sat, 15 Jul 2017 00:44:14 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A14.8313883Z'"] Location: ['https://storagename.table.core.windows.net/table194014d4(PartitionKey=''003'',RowKey=''batch_all_operations_together-2'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2c99bbff-0002-00fb-5609-fc9cce000000] + x-ms-request-id: [9a38f66a-0002-0120-1b03-fd7e4d000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: '{"PartitionKey": "003", "RowKey": "batch_all_operations_together-3", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:14Z", "test5@odata.type": "Edm.DateTime"}' headers: Accept: [application/json;odata=minimalmetadata] @@ -80,9 +80,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8b46dbdc-67fc-11e7-8924-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b9c25a54-68f6-11e7-843f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:14 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/table194014d4 @@ -92,19 +92,19 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/table194014d4(PartitionKey=''003'',RowKey=''batch_all_operations_together-3'')'] - Date: ['Thu, 13 Jul 2017 18:53:21 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A22.090494Z'"] + Date: ['Sat, 15 Jul 2017 00:44:14 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A14.8674136Z'"] Location: ['https://storagename.table.core.windows.net/table194014d4(PartitionKey=''003'',RowKey=''batch_all_operations_together-3'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2c99bc01-0002-00fb-5809-fc9cce000000] + x-ms-request-id: [9a38f671-0002-0120-2203-fd7e4d000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: '{"PartitionKey": "003", "RowKey": "batch_all_operations_together-4", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:14Z", "test5@odata.type": "Edm.DateTime"}' headers: Accept: [application/json;odata=minimalmetadata] @@ -114,9 +114,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8b4f33fe-67fc-11e7-984b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b9c97cb4-68f6-11e7-b666-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:14 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/table194014d4 @@ -126,22 +126,22 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/table194014d4(PartitionKey=''003'',RowKey=''batch_all_operations_together-4'')'] - Date: ['Thu, 13 Jul 2017 18:53:21 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A22.1455319Z'"] + Date: ['Sat, 15 Jul 2017 00:44:14 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A14.9224517Z'"] Location: ['https://storagename.table.core.windows.net/table194014d4(PartitionKey=''003'',RowKey=''batch_all_operations_together-4'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2c99bc04-0002-00fb-5b09-fc9cce000000] + x-ms-request-id: [9a38f67f-0002-0120-2f03-fd7e4d000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_8b54cb66-67fc-11e7-b648-b8e8564491f6 + body: '--batch_b9d2844c-68f6-11e7-b943-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8b54cbca-67fc-11e7-8685-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_b9d284f6-68f6-11e7-bc73-b8e8564491f6 - --changeset_8b54cbca-67fc-11e7-8685-b8e8564491f6 + --changeset_b9d284f6-68f6-11e7-bc73-b8e8564491f6 Content-Type: application/http @@ -163,11 +163,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": "1234567890", - "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", "test5@odata.type": + "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:14Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8b54cbca-67fc-11e7-8685-b8e8564491f6 + --changeset_b9d284f6-68f6-11e7-bc73-b8e8564491f6 Content-Type: application/http @@ -184,7 +184,7 @@ interactions: If-Match: * - --changeset_8b54cbca-67fc-11e7-8685-b8e8564491f6 + --changeset_b9d284f6-68f6-11e7-bc73-b8e8564491f6 Content-Type: application/http @@ -207,11 +207,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-2", "test": "true", "test2": "value", "test3": "10", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:14Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8b54cbca-67fc-11e7-8685-b8e8564491f6 + --changeset_b9d284f6-68f6-11e7-bc73-b8e8564491f6 Content-Type: application/http @@ -234,11 +234,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-3", "test": "true", "test2": "value", "test3": "100", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:14Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8b54cbca-67fc-11e7-8685-b8e8564491f6 + --changeset_b9d284f6-68f6-11e7-bc73-b8e8564491f6 Content-Type: application/http @@ -259,11 +259,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-4", "test": "true", "test2": "value", "test3": "10", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:14Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8b54cbca-67fc-11e7-8685-b8e8564491f6 + --changeset_b9d284f6-68f6-11e7-bc73-b8e8564491f6 Content-Type: application/http @@ -284,63 +284,63 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-5", "test": "true", "test2": "value", "test3": "10", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:14Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8b54cbca-67fc-11e7-8685-b8e8564491f6-- + --changeset_b9d284f6-68f6-11e7-bc73-b8e8564491f6-- - --batch_8b54cb66-67fc-11e7-b648-b8e8564491f6--' + --batch_b9d2844c-68f6-11e7-b943-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['3473'] - Content-Type: [multipart/mixed; boundary=batch_8b54cb66-67fc-11e7-b648-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_b9d2844c-68f6-11e7-b943-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8b54cef4-67fc-11e7-8dd9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b9d28a3a-68f6-11e7-90b4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:14 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_408dfc76-6785-4f15-a200-7463c2cb8724\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_ec1eb7da-f7cb-4a44-adbf-856845fcb9cc\r\ - \n\r\n--changesetresponse_ec1eb7da-f7cb-4a44-adbf-856845fcb9cc\r\nContent-Type:\ + body: {string: "--batchresponse_a2dbc261-fa30-4b7f-8139-ad0d1b486587\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_9976a9e0-8cb7-4af8-99b2-a3cd40015deb\r\ + \n\r\n--changesetresponse_9976a9e0-8cb7-4af8-99b2-a3cd40015deb\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/table194014d4(PartitionKey='003',RowKey='batch_all_operations_together')\r\ \nDataServiceId: https://storagename.table.core.windows.net/table194014d4(PartitionKey='003',RowKey='batch_all_operations_together')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A22.1835602Z'\"\r\n\r\n\r\n--changesetresponse_ec1eb7da-f7cb-4a44-adbf-856845fcb9cc\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A14.9824942Z'\"\r\n\r\n\r\n--changesetresponse_9976a9e0-8cb7-4af8-99b2-a3cd40015deb\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ - \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\n\r\n\r\n--changesetresponse_ec1eb7da-f7cb-4a44-adbf-856845fcb9cc\r\ + \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\n\r\n\r\n--changesetresponse_9976a9e0-8cb7-4af8-99b2-a3cd40015deb\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ - \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A22.1738491Z'\"\ - \r\n\r\n\r\n--changesetresponse_ec1eb7da-f7cb-4a44-adbf-856845fcb9cc\r\nContent-Type:\ + \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A15.354104Z'\"\ + \r\n\r\n\r\n--changesetresponse_9976a9e0-8cb7-4af8-99b2-a3cd40015deb\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A22.1738491Z'\"\ - \r\n\r\n\r\n--changesetresponse_ec1eb7da-f7cb-4a44-adbf-856845fcb9cc\r\nContent-Type:\ + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A15.354104Z'\"\ + \r\n\r\n\r\n--changesetresponse_9976a9e0-8cb7-4af8-99b2-a3cd40015deb\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A22.1738491Z'\"\ - \r\n\r\n\r\n--changesetresponse_ec1eb7da-f7cb-4a44-adbf-856845fcb9cc\r\nContent-Type:\ + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A15.3551039Z'\"\ + \r\n\r\n\r\n--changesetresponse_9976a9e0-8cb7-4af8-99b2-a3cd40015deb\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A22.1738491Z'\"\ - \r\n\r\n\r\n--changesetresponse_ec1eb7da-f7cb-4a44-adbf-856845fcb9cc--\r\n\ - --batchresponse_408dfc76-6785-4f15-a200-7463c2cb8724--\r\n"} + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A15.3551039Z'\"\ + \r\n\r\n\r\n--changesetresponse_9976a9e0-8cb7-4af8-99b2-a3cd40015deb--\r\n\ + --batchresponse_a2dbc261-fa30-4b7f-8139-ad0d1b486587--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_408dfc76-6785-4f15-a200-7463c2cb8724] - Date: ['Thu, 13 Jul 2017 18:53:21 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_a2dbc261-fa30-4b7f-8139-ad0d1b486587] + Date: ['Sat, 15 Jul 2017 00:44:14 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2c99bc0b-0002-00fb-6209-fc9cce000000] + x-ms-request-id: [9a38f691-0002-0120-3e03-fd7e4d000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -350,22 +350,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8b5f7018-67fc-11e7-aa6b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [b9dee5ca-68f6-11e7-ac24-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:14 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/table194014d4()?%24filter=PartitionKey+eq+%27003%27&%24select= response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#table194014d4&$select=","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A22.1835602Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together","Timestamp":"2017-07-13T18:53:22.1835602Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:22Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A22.1738491Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-2","Timestamp":"2017-07-13T18:53:22.1738491Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:22Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A22.1738491Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-3","Timestamp":"2017-07-13T18:53:22.1738491Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"100","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:22Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A22.1738491Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-4","Timestamp":"2017-07-13T18:53:22.1738491Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:22Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A22.1738491Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-5","Timestamp":"2017-07-13T18:53:22.1738491Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:22Z"}]}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#table194014d4&$select=","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A14.9824942Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together","Timestamp":"2017-07-15T00:44:14.9824942Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:14Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A15.354104Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-2","Timestamp":"2017-07-15T00:44:15.354104Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:14Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A15.354104Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-3","Timestamp":"2017-07-15T00:44:15.354104Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"100","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:14Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A15.3551039Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-4","Timestamp":"2017-07-15T00:44:15.3551039Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:14Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A15.3551039Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-5","Timestamp":"2017-07-15T00:44:15.3551039Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:14Z"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:21 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:14 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2c99bc17-0002-00fb-6e09-fc9cce000000] + x-ms-request-id: [9a38f6a5-0002-0120-5003-fd7e4d000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_all_operations_together_context_manager.yaml b/tests/recordings/test_table_batch.test_batch_all_operations_together_context_manager.yaml index 68a8ebcf..e898687a 100644 --- a/tests/recordings/test_table_batch.test_batch_all_operations_together_context_manager.yaml +++ b/tests/recordings/test_table_batch.test_batch_all_operations_together_context_manager.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"PartitionKey": "003", "RowKey": "batch_all_operations_together-1", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:15Z", "test5@odata.type": "Edm.DateTime"}' headers: Accept: [application/json;odata=minimalmetadata] @@ -12,9 +12,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8b93c2d0-67fc-11e7-85ec-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:22 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ba144288-68f6-11e7-bc7c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:15 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/table9ed31b72 @@ -24,19 +24,19 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/table9ed31b72(PartitionKey=''003'',RowKey=''batch_all_operations_together-1'')'] - Date: ['Thu, 13 Jul 2017 18:53:22 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A22.7654085Z'"] + Date: ['Sat, 15 Jul 2017 00:44:15 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A15.9769214Z'"] Location: ['https://storagename.table.core.windows.net/table9ed31b72(PartitionKey=''003'',RowKey=''batch_all_operations_together-1'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [0adf0522-0002-007d-3209-fcc81c000000] + x-ms-request-id: [66182305-0002-0057-5803-fdbd59000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: '{"PartitionKey": "003", "RowKey": "batch_all_operations_together-2", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:15Z", "test5@odata.type": "Edm.DateTime"}' headers: Accept: [application/json;odata=minimalmetadata] @@ -46,9 +46,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8ba70f3e-67fc-11e7-b82e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ba2bc37a-68f6-11e7-921a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:15 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/table9ed31b72 @@ -58,19 +58,19 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/table9ed31b72(PartitionKey=''003'',RowKey=''batch_all_operations_together-2'')'] - Date: ['Thu, 13 Jul 2017 18:53:22 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A22.8004356Z'"] + Date: ['Sat, 15 Jul 2017 00:44:15 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A16.0149473Z'"] Location: ['https://storagename.table.core.windows.net/table9ed31b72(PartitionKey=''003'',RowKey=''batch_all_operations_together-2'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [0adf052a-0002-007d-3809-fcc81c000000] + x-ms-request-id: [66182320-0002-0057-6f03-fdbd59000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: '{"PartitionKey": "003", "RowKey": "batch_all_operations_together-3", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:15Z", "test5@odata.type": "Edm.DateTime"}' headers: Accept: [application/json;odata=minimalmetadata] @@ -80,9 +80,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8bacab88-67fc-11e7-8088-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ba311d4a-68f6-11e7-a09f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:15 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/table9ed31b72 @@ -92,19 +92,19 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/table9ed31b72(PartitionKey=''003'',RowKey=''batch_all_operations_together-3'')'] - Date: ['Thu, 13 Jul 2017 18:53:22 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A22.83646Z'"] + Date: ['Sat, 15 Jul 2017 00:44:15 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A16.0489716Z'"] Location: ['https://storagename.table.core.windows.net/table9ed31b72(PartitionKey=''003'',RowKey=''batch_all_operations_together-3'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [0adf052c-0002-007d-3a09-fcc81c000000] + x-ms-request-id: [6618232a-0002-0057-7803-fdbd59000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: '{"PartitionKey": "003", "RowKey": "batch_all_operations_together-4", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:15Z", "test5@odata.type": "Edm.DateTime"}' headers: Accept: [application/json;odata=minimalmetadata] @@ -114,9 +114,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8bb20ea2-67fc-11e7-a722-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ba36781c-68f6-11e7-9176-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:15 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/table9ed31b72 @@ -126,22 +126,22 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/table9ed31b72(PartitionKey=''003'',RowKey=''batch_all_operations_together-4'')'] - Date: ['Thu, 13 Jul 2017 18:53:22 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A22.8724865Z'"] + Date: ['Sat, 15 Jul 2017 00:44:15 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A16.084997Z'"] Location: ['https://storagename.table.core.windows.net/table9ed31b72(PartitionKey=''003'',RowKey=''batch_all_operations_together-4'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [0adf052e-0002-007d-3c09-fcc81c000000] + x-ms-request-id: [66182340-0002-0057-0d03-fdbd59000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_8bb78152-67fc-11e7-aa81-b8e8564491f6 + body: '--batch_ba3be6b4-68f6-11e7-9beb-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8bb781f4-67fc-11e7-af27-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_ba3be752-68f6-11e7-bd72-b8e8564491f6 - --changeset_8bb781f4-67fc-11e7-af27-b8e8564491f6 + --changeset_ba3be752-68f6-11e7-bd72-b8e8564491f6 Content-Type: application/http @@ -163,11 +163,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": "1234567890", - "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", "test5@odata.type": + "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:15Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8bb781f4-67fc-11e7-af27-b8e8564491f6 + --changeset_ba3be752-68f6-11e7-bd72-b8e8564491f6 Content-Type: application/http @@ -184,7 +184,7 @@ interactions: If-Match: * - --changeset_8bb781f4-67fc-11e7-af27-b8e8564491f6 + --changeset_ba3be752-68f6-11e7-bd72-b8e8564491f6 Content-Type: application/http @@ -207,11 +207,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-2", "test": "true", "test2": "value", "test3": "10", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:15Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8bb781f4-67fc-11e7-af27-b8e8564491f6 + --changeset_ba3be752-68f6-11e7-bd72-b8e8564491f6 Content-Type: application/http @@ -234,11 +234,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-3", "test": "true", "test2": "value", "test3": "100", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:15Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8bb781f4-67fc-11e7-af27-b8e8564491f6 + --changeset_ba3be752-68f6-11e7-bd72-b8e8564491f6 Content-Type: application/http @@ -259,11 +259,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-4", "test": "true", "test2": "value", "test3": "10", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:15Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8bb781f4-67fc-11e7-af27-b8e8564491f6 + --changeset_ba3be752-68f6-11e7-bd72-b8e8564491f6 Content-Type: application/http @@ -284,63 +284,63 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-5", "test": "true", "test2": "value", "test3": "10", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:22Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:15Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8bb781f4-67fc-11e7-af27-b8e8564491f6-- + --changeset_ba3be752-68f6-11e7-bd72-b8e8564491f6-- - --batch_8bb78152-67fc-11e7-aa81-b8e8564491f6--' + --batch_ba3be6b4-68f6-11e7-9beb-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['3473'] - Content-Type: [multipart/mixed; boundary=batch_8bb78152-67fc-11e7-aa81-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_ba3be6b4-68f6-11e7-9beb-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8bb7881e-67fc-11e7-8710-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ba3becb6-68f6-11e7-b624-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:15 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_24442dd4-599f-4083-b0e1-0a177d33d73e\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_8965f74d-78b0-4e1c-b75c-1b93202feaf4\r\ - \n\r\n--changesetresponse_8965f74d-78b0-4e1c-b75c-1b93202feaf4\r\nContent-Type:\ + body: {string: "--batchresponse_24fd1f84-c50e-4e16-95ed-f6c7036afa16\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_4296856e-ab23-4e44-9972-21229c22b9c5\r\ + \n\r\n--changesetresponse_4296856e-ab23-4e44-9972-21229c22b9c5\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/table9ed31b72(PartitionKey='003',RowKey='batch_all_operations_together')\r\ \nDataServiceId: https://storagename.table.core.windows.net/table9ed31b72(PartitionKey='003',RowKey='batch_all_operations_together')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A22.9125156Z'\"\r\n\r\n\r\n--changesetresponse_8965f74d-78b0-4e1c-b75c-1b93202feaf4\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A16.1300286Z'\"\r\n\r\n\r\n--changesetresponse_4296856e-ab23-4e44-9972-21229c22b9c5\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ - \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\n\r\n\r\n--changesetresponse_8965f74d-78b0-4e1c-b75c-1b93202feaf4\r\ + \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\n\r\n\r\n--changesetresponse_4296856e-ab23-4e44-9972-21229c22b9c5\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ - \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A22.8222986Z'\"\ - \r\n\r\n\r\n--changesetresponse_8965f74d-78b0-4e1c-b75c-1b93202feaf4\r\nContent-Type:\ + \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A16.0436069Z'\"\ + \r\n\r\n\r\n--changesetresponse_4296856e-ab23-4e44-9972-21229c22b9c5\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A22.83746Z'\"\ - \r\n\r\n\r\n--changesetresponse_8965f74d-78b0-4e1c-b75c-1b93202feaf4\r\nContent-Type:\ + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A16.0499716Z'\"\ + \r\n\r\n\r\n--changesetresponse_4296856e-ab23-4e44-9972-21229c22b9c5\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A22.8734865Z'\"\ - \r\n\r\n\r\n--changesetresponse_8965f74d-78b0-4e1c-b75c-1b93202feaf4\r\nContent-Type:\ + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A16.085997Z'\"\ + \r\n\r\n\r\n--changesetresponse_4296856e-ab23-4e44-9972-21229c22b9c5\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A22.8222986Z'\"\ - \r\n\r\n\r\n--changesetresponse_8965f74d-78b0-4e1c-b75c-1b93202feaf4--\r\n\ - --batchresponse_24442dd4-599f-4083-b0e1-0a177d33d73e--\r\n"} + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A16.0456079Z'\"\ + \r\n\r\n\r\n--changesetresponse_4296856e-ab23-4e44-9972-21229c22b9c5--\r\n\ + --batchresponse_24fd1f84-c50e-4e16-95ed-f6c7036afa16--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_24442dd4-599f-4083-b0e1-0a177d33d73e] - Date: ['Thu, 13 Jul 2017 18:53:22 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_24fd1f84-c50e-4e16-95ed-f6c7036afa16] + Date: ['Sat, 15 Jul 2017 00:44:15 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [0adf0536-0002-007d-4209-fcc81c000000] + x-ms-request-id: [66182351-0002-0057-1c03-fdbd59000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -350,22 +350,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8bc13850-67fc-11e7-98bb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ba46d0c2-68f6-11e7-9d64-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:15 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/table9ed31b72()?%24filter=PartitionKey+eq+%27003%27&%24select= response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#table9ed31b72&$select=","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A22.9125156Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together","Timestamp":"2017-07-13T18:53:22.9125156Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:22Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A22.8222986Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-2","Timestamp":"2017-07-13T18:53:22.8222986Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:22Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A22.83746Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-3","Timestamp":"2017-07-13T18:53:22.83746Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"100","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:22Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A22.8734865Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-4","Timestamp":"2017-07-13T18:53:22.8734865Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:22Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A22.8222986Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-5","Timestamp":"2017-07-13T18:53:22.8222986Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:22Z"}]}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#table9ed31b72&$select=","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A16.1300286Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together","Timestamp":"2017-07-15T00:44:16.1300286Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:15Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A16.0436069Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-2","Timestamp":"2017-07-15T00:44:16.0436069Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:15Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A16.0499716Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-3","Timestamp":"2017-07-15T00:44:16.0499716Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"100","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:15Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A16.085997Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-4","Timestamp":"2017-07-15T00:44:16.085997Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:15Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A16.0456079Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-5","Timestamp":"2017-07-15T00:44:16.0456079Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:15Z"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:22 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:15 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [0adf0549-0002-007d-5509-fcc81c000000] + x-ms-request-id: [6618236b-0002-0057-3603-fdbd59000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_delete.yaml b/tests/recordings/test_table_batch.test_batch_delete.yaml index cb8f21f8..11b4c1b7 100644 --- a/tests/recordings/test_table_batch.test_batch_delete.yaml +++ b/tests/recordings/test_table_batch.test_batch_delete.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"PartitionKey": "001", "RowKey": "batch_delete", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": "1234567890", - "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:23Z", "test5@odata.type": + "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:15Z", "test5@odata.type": "Edm.DateTime"}' headers: Accept: [application/json;odata=minimalmetadata] @@ -12,9 +12,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8bf403de-67fc-11e7-ac8f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ba7c79fa-68f6-11e7-bb5e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:15 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/tablef0500daa @@ -24,13 +24,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/tablef0500daa(PartitionKey=''001'',RowKey=''batch_delete'')'] - Date: ['Thu, 13 Jul 2017 18:53:22 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A22.3898287Z'"] + Date: ['Sat, 15 Jul 2017 00:44:16 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A16.6342584Z'"] Location: ['https://storagename.table.core.windows.net/tablef0500daa(PartitionKey=''001'',RowKey=''batch_delete'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [09f7d5d1-0002-013f-0109-fca55d000000] + x-ms-request-id: [961bb4de-0002-0005-2d03-fda0ab000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -40,32 +40,32 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8c085e42-67fc-11e7-adb6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ba922842-68f6-11e7-80da-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:15 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/tablef0500daa(PartitionKey='001',RowKey='batch_delete') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tablef0500daa/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A22.3898287Z''\"","PartitionKey":"001","RowKey":"batch_delete","Timestamp":"2017-07-13T18:53:22.3898287Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:23Z"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tablef0500daa/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A16.6342584Z''\"","PartitionKey":"001","RowKey":"batch_delete","Timestamp":"2017-07-15T00:44:16.6342584Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:15Z"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:22 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A22.3898287Z'"] + Date: ['Sat, 15 Jul 2017 00:44:16 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A16.6342584Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [09f7d5de-0002-013f-0c09-fca55d000000] + x-ms-request-id: [961bb4e5-0002-0005-3203-fda0ab000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: - body: '--batch_8c0d3f02-67fc-11e7-a5d1-b8e8564491f6 + body: '--batch_ba974158-68f6-11e7-9666-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8c0d3fb6-67fc-11e7-a9c0-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_ba9741f6-68f6-11e7-bb9e-b8e8564491f6 - --changeset_8c0d3fb6-67fc-11e7-a9c0-b8e8564491f6 + --changeset_ba9741f6-68f6-11e7-bb9e-b8e8564491f6 Content-Type: application/http @@ -81,37 +81,37 @@ interactions: If-Match: * - --changeset_8c0d3fb6-67fc-11e7-a9c0-b8e8564491f6-- + --changeset_ba9741f6-68f6-11e7-bb9e-b8e8564491f6-- - --batch_8c0d3f02-67fc-11e7-a5d1-b8e8564491f6--' + --batch_ba974158-68f6-11e7-9666-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['492'] - Content-Type: [multipart/mixed; boundary=batch_8c0d3f02-67fc-11e7-a5d1-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_ba974158-68f6-11e7-9666-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8c0d43c6-67fc-11e7-924a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:23 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ba974408-68f6-11e7-b8b3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:15 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_11b132a8-000f-489b-a17b-2bb296f590cf\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_f7540ffc-17f6-4500-9cf1-72ca409500a8\r\ - \n\r\n--changesetresponse_f7540ffc-17f6-4500-9cf1-72ca409500a8\r\nContent-Type:\ + body: {string: "--batchresponse_c6638191-7de6-49d1-90eb-db1b0240b1b0\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_a386c66f-c3db-46cb-83c5-3bfb08be2f90\r\ + \n\r\n--changesetresponse_a386c66f-c3db-46cb-83c5-3bfb08be2f90\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\n\r\n\r\n--changesetresponse_f7540ffc-17f6-4500-9cf1-72ca409500a8--\r\ - \n--batchresponse_11b132a8-000f-489b-a17b-2bb296f590cf--\r\n"} + \ no-cache\r\nDataServiceVersion: 1.0;\r\n\r\n\r\n--changesetresponse_a386c66f-c3db-46cb-83c5-3bfb08be2f90--\r\ + \n--batchresponse_c6638191-7de6-49d1-90eb-db1b0240b1b0--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_11b132a8-000f-489b-a17b-2bb296f590cf] - Date: ['Thu, 13 Jul 2017 18:53:22 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_c6638191-7de6-49d1-90eb-db1b0240b1b0] + Date: ['Sat, 15 Jul 2017 00:44:16 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [09f7d5eb-0002-013f-1709-fca55d000000] + x-ms-request-id: [961bb4ea-0002-0005-3703-fda0ab000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_different_partition_operations_fail.yaml b/tests/recordings/test_table_batch.test_batch_different_partition_operations_fail.yaml index 8886b774..00a6ca58 100644 --- a/tests/recordings/test_table_batch.test_batch_different_partition_operations_fail.yaml +++ b/tests/recordings/test_table_batch.test_batch_different_partition_operations_fail.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8c3dbee8-67fc-11e7-8e7c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:24 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bac81ef4-68f6-11e7-b2c4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:16 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/table32f119c5 @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/table32f119c5(PartitionKey=''001'',RowKey=''batch_negative_1'')'] - Date: ['Thu, 13 Jul 2017 18:53:23 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A23.7452148Z'"] + Date: ['Sat, 15 Jul 2017 00:44:16 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A17.0468237Z'"] Location: ['https://storagename.table.core.windows.net/table32f119c5(PartitionKey=''001'',RowKey=''batch_negative_1'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [8fb50b08-0002-0139-6209-fc5225000000] + x-ms-request-id: [8a348e80-0002-0017-0603-fd94b7000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_insert.yaml b/tests/recordings/test_table_batch.test_batch_insert.yaml index 9fad2c78..7191edfc 100644 --- a/tests/recordings/test_table_batch.test_batch_insert.yaml +++ b/tests/recordings/test_table_batch.test_batch_insert.yaml @@ -1,11 +1,11 @@ interactions: - request: - body: '--batch_8c7dc510-67fc-11e7-a7d0-b8e8564491f6 + body: '--batch_bb1620d4-68f6-11e7-83fb-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8c7dc5e2-67fc-11e7-8808-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_bb162192-68f6-11e7-98e2-b8e8564491f6 - --changeset_8c7dc5e2-67fc-11e7-8808-b8e8564491f6 + --changeset_bb162192-68f6-11e7-98e2-b8e8564491f6 Content-Type: application/http @@ -27,43 +27,43 @@ interactions: {"PartitionKey": "001", "RowKey": "batch_insert", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": "1234567890", "test4@odata.type": - "Edm.Int64", "test5": "2017-07-13T18:53:24Z", "test5@odata.type": "Edm.DateTime"} + "Edm.Int64", "test5": "2017-07-15T00:44:16Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8c7dc5e2-67fc-11e7-8808-b8e8564491f6-- + --changeset_bb162192-68f6-11e7-98e2-b8e8564491f6-- - --batch_8c7dc510-67fc-11e7-a7d0-b8e8564491f6--' + --batch_bb1620d4-68f6-11e7-83fb-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['770'] - Content-Type: [multipart/mixed; boundary=batch_8c7dc510-67fc-11e7-a7d0-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_bb1620d4-68f6-11e7-83fb-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8c7dc89e-67fc-11e7-b0d5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:24 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bb162408-68f6-11e7-8e8e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:16 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_a3bbf103-2f5f-47fb-9132-e42884e6a20c\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_801f9324-747a-49e0-88e2-a089cdde104e\r\ - \n\r\n--changesetresponse_801f9324-747a-49e0-88e2-a089cdde104e\r\nContent-Type:\ + body: {string: "--batchresponse_5c865920-11c8-4c20-819e-e4e076a7364e\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_bc794b5e-d871-4709-85ba-eefea3f934fa\r\ + \n\r\n--changesetresponse_bc794b5e-d871-4709-85ba-eefea3f934fa\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tablef0c20dcc(PartitionKey='001',RowKey='batch_insert')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tablef0c20dcc(PartitionKey='001',RowKey='batch_insert')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A24.4691166Z'\"\r\n\r\n\r\n--changesetresponse_801f9324-747a-49e0-88e2-a089cdde104e--\r\ - \n--batchresponse_a3bbf103-2f5f-47fb-9132-e42884e6a20c--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A44%3A17.8557068Z'\"\r\n\r\n\r\n--changesetresponse_bc794b5e-d871-4709-85ba-eefea3f934fa--\r\ + \n--batchresponse_5c865920-11c8-4c20-819e-e4e076a7364e--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_a3bbf103-2f5f-47fb-9132-e42884e6a20c] - Date: ['Thu, 13 Jul 2017 18:53:24 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_5c865920-11c8-4c20-819e-e4e076a7364e] + Date: ['Sat, 15 Jul 2017 00:44:17 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [e331bd61-0002-010b-2f09-fc0af5000000] + x-ms-request-id: [885bec7c-0002-003e-3703-fde2f5000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -73,23 +73,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8c92cac8-67fc-11e7-8234-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:24 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bb2ab49a-68f6-11e7-baf4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:16 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/tablef0c20dcc(PartitionKey='001',RowKey='batch_insert') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tablef0c20dcc/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A24.4691166Z''\"","PartitionKey":"001","RowKey":"batch_insert","Timestamp":"2017-07-13T18:53:24.4691166Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:24Z"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tablef0c20dcc/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A17.8557068Z''\"","PartitionKey":"001","RowKey":"batch_insert","Timestamp":"2017-07-15T00:44:17.8557068Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:16Z"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:24 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A24.4691166Z'"] + Date: ['Sat, 15 Jul 2017 00:44:17 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A17.8557068Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [e331bd75-0002-010b-3f09-fc0af5000000] + x-ms-request-id: [885bec84-0002-003e-3d03-fde2f5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_insert_merge.yaml b/tests/recordings/test_table_batch.test_batch_insert_merge.yaml index a370ad59..3d181fc1 100644 --- a/tests/recordings/test_table_batch.test_batch_insert_merge.yaml +++ b/tests/recordings/test_table_batch.test_batch_insert_merge.yaml @@ -1,11 +1,11 @@ interactions: - request: - body: '--batch_8cc080ba-67fc-11e7-a3fd-b8e8564491f6 + body: '--batch_bb5b7922-68f6-11e7-bbf3-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8cc08198-67fc-11e7-8adc-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_bb5b79e2-68f6-11e7-974b-b8e8564491f6 - --changeset_8cc08198-67fc-11e7-8adc-b8e8564491f6 + --changeset_bb5b79e2-68f6-11e7-974b-b8e8564491f6 Content-Type: application/http @@ -25,42 +25,42 @@ interactions: {"PartitionKey": "001", "RowKey": "batch_insert_merge", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": "1234567890", - "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:24Z", "test5@odata.type": + "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:17Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8cc08198-67fc-11e7-8adc-b8e8564491f6-- + --changeset_bb5b79e2-68f6-11e7-974b-b8e8564491f6-- - --batch_8cc080ba-67fc-11e7-a3fd-b8e8564491f6--' + --batch_bb5b7922-68f6-11e7-bbf3-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['799'] - Content-Type: [multipart/mixed; boundary=batch_8cc080ba-67fc-11e7-a3fd-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_bb5b7922-68f6-11e7-bbf3-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8cc0845e-67fc-11e7-a259-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:24 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bb5b7c42-68f6-11e7-a305-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:17 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_e89fe322-b955-4ea2-b072-6c34baa5a4a0\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_4b943a3b-ddfb-4f59-8994-8e7bcf11e328\r\ - \n\r\n--changesetresponse_4b943a3b-ddfb-4f59-8994-8e7bcf11e328\r\nContent-Type:\ + body: {string: "--batchresponse_ad1fbd96-71af-4c13-978c-635288df7adf\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_ac682e39-cc7b-4aff-b66e-ccfe1e8ecab1\r\ + \n\r\n--changesetresponse_ac682e39-cc7b-4aff-b66e-ccfe1e8ecab1\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A24.6485617Z'\"\ - \r\n\r\n\r\n--changesetresponse_4b943a3b-ddfb-4f59-8994-8e7bcf11e328--\r\n\ - --batchresponse_e89fe322-b955-4ea2-b072-6c34baa5a4a0--\r\n"} + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A18.0100435Z'\"\ + \r\n\r\n\r\n--changesetresponse_ac682e39-cc7b-4aff-b66e-ccfe1e8ecab1--\r\n\ + --batchresponse_ad1fbd96-71af-4c13-978c-635288df7adf--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_e89fe322-b955-4ea2-b072-6c34baa5a4a0] - Date: ['Thu, 13 Jul 2017 18:53:24 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_ad1fbd96-71af-4c13-978c-635288df7adf] + Date: ['Sat, 15 Jul 2017 00:44:18 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [4796a1e0-0002-00ca-7109-fcc719000000] + x-ms-request-id: [966026a6-0002-012c-6203-fd90bc000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -70,23 +70,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8cd46962-67fc-11e7-9543-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bb6f3854-68f6-11e7-af4a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:17 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/table4c11103b(PartitionKey='001',RowKey='batch_insert_merge') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#table4c11103b/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A24.6485617Z''\"","PartitionKey":"001","RowKey":"batch_insert_merge","Timestamp":"2017-07-13T18:53:24.6485617Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:24Z"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#table4c11103b/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A18.0100435Z''\"","PartitionKey":"001","RowKey":"batch_insert_merge","Timestamp":"2017-07-15T00:44:18.0100435Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:17Z"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:24 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A24.6485617Z'"] + Date: ['Sat, 15 Jul 2017 00:44:18 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A18.0100435Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [4796a207-0002-00ca-0f09-fcc719000000] + x-ms-request-id: [966026b1-0002-012c-6a03-fd90bc000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_insert_replace.yaml b/tests/recordings/test_table_batch.test_batch_insert_replace.yaml index d8b7e2e9..ae6ac43d 100644 --- a/tests/recordings/test_table_batch.test_batch_insert_replace.yaml +++ b/tests/recordings/test_table_batch.test_batch_insert_replace.yaml @@ -1,11 +1,11 @@ interactions: - request: - body: '--batch_8d10d758-67fc-11e7-b89c-b8e8564491f6 + body: '--batch_bbaa655a-68f6-11e7-849b-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8d10d814-67fc-11e7-9de9-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_bbaa6622-68f6-11e7-9736-b8e8564491f6 - --changeset_8d10d814-67fc-11e7-9de9-b8e8564491f6 + --changeset_bbaa6622-68f6-11e7-9736-b8e8564491f6 Content-Type: application/http @@ -25,42 +25,42 @@ interactions: {"PartitionKey": "001", "RowKey": "batch_insert_replace", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": "1234567890", - "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:25Z", "test5@odata.type": + "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:17Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8d10d814-67fc-11e7-9de9-b8e8564491f6-- + --changeset_bbaa6622-68f6-11e7-9736-b8e8564491f6-- - --batch_8d10d758-67fc-11e7-b89c-b8e8564491f6--' + --batch_bbaa655a-68f6-11e7-849b-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['801'] - Content-Type: [multipart/mixed; boundary=batch_8d10d758-67fc-11e7-b89c-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_bbaa655a-68f6-11e7-849b-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8d10da6c-67fc-11e7-9c96-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bbaa6886-68f6-11e7-969b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:17 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_6bbe8d13-5ea4-4ae1-b6b2-9e84c0ede26a\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_dfb31d79-0433-4eb6-ba70-69c746879a2c\r\ - \n\r\n--changesetresponse_dfb31d79-0433-4eb6-ba70-69c746879a2c\r\nContent-Type:\ + body: {string: "--batchresponse_c2405b1c-5b02-4145-beb8-b51dd915b7b7\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_516ed937-d7bd-4c7b-99cb-92e7fdd1a9ae\r\ + \n\r\n--changesetresponse_516ed937-d7bd-4c7b-99cb-92e7fdd1a9ae\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A25.1799289Z'\"\ - \r\n\r\n\r\n--changesetresponse_dfb31d79-0433-4eb6-ba70-69c746879a2c--\r\n\ - --batchresponse_6bbe8d13-5ea4-4ae1-b6b2-9e84c0ede26a--\r\n"} + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A18.5274203Z'\"\ + \r\n\r\n\r\n--changesetresponse_516ed937-d7bd-4c7b-99cb-92e7fdd1a9ae--\r\n\ + --batchresponse_c2405b1c-5b02-4145-beb8-b51dd915b7b7--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_6bbe8d13-5ea4-4ae1-b6b2-9e84c0ede26a] - Date: ['Thu, 13 Jul 2017 18:53:24 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_c2405b1c-5b02-4145-beb8-b51dd915b7b7] + Date: ['Sat, 15 Jul 2017 00:44:18 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [da0366d7-0002-0114-4509-fcd1e5000000] + x-ms-request-id: [a688a23f-0002-0027-0503-fdce9d000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -70,23 +70,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8d2a05be-67fc-11e7-8c3c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bbbdd55e-68f6-11e7-9e9d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:17 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/table6dd31107(PartitionKey='001',RowKey='batch_insert_replace') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#table6dd31107/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.1799289Z''\"","PartitionKey":"001","RowKey":"batch_insert_replace","Timestamp":"2017-07-13T18:53:25.1799289Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:25Z"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#table6dd31107/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A18.5274203Z''\"","PartitionKey":"001","RowKey":"batch_insert_replace","Timestamp":"2017-07-15T00:44:18.5274203Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:17Z"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:24 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A25.1799289Z'"] + Date: ['Sat, 15 Jul 2017 00:44:18 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A18.5274203Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [da0366ee-0002-0114-5a09-fcd1e5000000] + x-ms-request-id: [a688a24b-0002-0027-0e03-fdce9d000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_inserts.yaml b/tests/recordings/test_table_batch.test_batch_inserts.yaml index 77fb97dc..41fbe804 100644 --- a/tests/recordings/test_table_batch.test_batch_inserts.yaml +++ b/tests/recordings/test_table_batch.test_batch_inserts.yaml @@ -1,11 +1,11 @@ interactions: - request: - body: '--batch_8d593d3e-67fc-11e7-a68f-b8e8564491f6 + body: '--batch_bbfbe498-68f6-11e7-8cf9-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -30,7 +30,7 @@ interactions: "Edm.Int64", "RowKey": "0"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -55,7 +55,7 @@ interactions: "Edm.Int64", "RowKey": "1"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -80,7 +80,7 @@ interactions: "Edm.Int64", "RowKey": "2"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -105,7 +105,7 @@ interactions: "Edm.Int64", "RowKey": "3"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -130,7 +130,7 @@ interactions: "Edm.Int64", "RowKey": "4"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -155,7 +155,7 @@ interactions: "Edm.Int64", "RowKey": "5"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -180,7 +180,7 @@ interactions: "Edm.Int64", "RowKey": "6"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -205,7 +205,7 @@ interactions: "Edm.Int64", "RowKey": "7"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -230,7 +230,7 @@ interactions: "Edm.Int64", "RowKey": "8"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -255,7 +255,7 @@ interactions: "Edm.Int64", "RowKey": "9"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -280,7 +280,7 @@ interactions: "Edm.Int64", "RowKey": "10"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -305,7 +305,7 @@ interactions: "Edm.Int64", "RowKey": "11"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -330,7 +330,7 @@ interactions: "Edm.Int64", "RowKey": "12"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -355,7 +355,7 @@ interactions: "Edm.Int64", "RowKey": "13"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -380,7 +380,7 @@ interactions: "Edm.Int64", "RowKey": "14"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -405,7 +405,7 @@ interactions: "Edm.Int64", "RowKey": "15"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -430,7 +430,7 @@ interactions: "Edm.Int64", "RowKey": "16"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -455,7 +455,7 @@ interactions: "Edm.Int64", "RowKey": "17"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -480,7 +480,7 @@ interactions: "Edm.Int64", "RowKey": "18"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -505,7 +505,7 @@ interactions: "Edm.Int64", "RowKey": "19"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -530,7 +530,7 @@ interactions: "Edm.Int64", "RowKey": "20"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -555,7 +555,7 @@ interactions: "Edm.Int64", "RowKey": "21"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -580,7 +580,7 @@ interactions: "Edm.Int64", "RowKey": "22"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -605,7 +605,7 @@ interactions: "Edm.Int64", "RowKey": "23"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -630,7 +630,7 @@ interactions: "Edm.Int64", "RowKey": "24"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -655,7 +655,7 @@ interactions: "Edm.Int64", "RowKey": "25"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -680,7 +680,7 @@ interactions: "Edm.Int64", "RowKey": "26"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -705,7 +705,7 @@ interactions: "Edm.Int64", "RowKey": "27"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -730,7 +730,7 @@ interactions: "Edm.Int64", "RowKey": "28"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -755,7 +755,7 @@ interactions: "Edm.Int64", "RowKey": "29"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -780,7 +780,7 @@ interactions: "Edm.Int64", "RowKey": "30"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -805,7 +805,7 @@ interactions: "Edm.Int64", "RowKey": "31"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -830,7 +830,7 @@ interactions: "Edm.Int64", "RowKey": "32"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -855,7 +855,7 @@ interactions: "Edm.Int64", "RowKey": "33"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -880,7 +880,7 @@ interactions: "Edm.Int64", "RowKey": "34"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -905,7 +905,7 @@ interactions: "Edm.Int64", "RowKey": "35"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -930,7 +930,7 @@ interactions: "Edm.Int64", "RowKey": "36"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -955,7 +955,7 @@ interactions: "Edm.Int64", "RowKey": "37"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -980,7 +980,7 @@ interactions: "Edm.Int64", "RowKey": "38"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1005,7 +1005,7 @@ interactions: "Edm.Int64", "RowKey": "39"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1030,7 +1030,7 @@ interactions: "Edm.Int64", "RowKey": "40"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1055,7 +1055,7 @@ interactions: "Edm.Int64", "RowKey": "41"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1080,7 +1080,7 @@ interactions: "Edm.Int64", "RowKey": "42"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1105,7 +1105,7 @@ interactions: "Edm.Int64", "RowKey": "43"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1130,7 +1130,7 @@ interactions: "Edm.Int64", "RowKey": "44"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1155,7 +1155,7 @@ interactions: "Edm.Int64", "RowKey": "45"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1180,7 +1180,7 @@ interactions: "Edm.Int64", "RowKey": "46"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1205,7 +1205,7 @@ interactions: "Edm.Int64", "RowKey": "47"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1230,7 +1230,7 @@ interactions: "Edm.Int64", "RowKey": "48"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1255,7 +1255,7 @@ interactions: "Edm.Int64", "RowKey": "49"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1280,7 +1280,7 @@ interactions: "Edm.Int64", "RowKey": "50"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1305,7 +1305,7 @@ interactions: "Edm.Int64", "RowKey": "51"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1330,7 +1330,7 @@ interactions: "Edm.Int64", "RowKey": "52"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1355,7 +1355,7 @@ interactions: "Edm.Int64", "RowKey": "53"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1380,7 +1380,7 @@ interactions: "Edm.Int64", "RowKey": "54"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1405,7 +1405,7 @@ interactions: "Edm.Int64", "RowKey": "55"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1430,7 +1430,7 @@ interactions: "Edm.Int64", "RowKey": "56"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1455,7 +1455,7 @@ interactions: "Edm.Int64", "RowKey": "57"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1480,7 +1480,7 @@ interactions: "Edm.Int64", "RowKey": "58"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1505,7 +1505,7 @@ interactions: "Edm.Int64", "RowKey": "59"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1530,7 +1530,7 @@ interactions: "Edm.Int64", "RowKey": "60"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1555,7 +1555,7 @@ interactions: "Edm.Int64", "RowKey": "61"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1580,7 +1580,7 @@ interactions: "Edm.Int64", "RowKey": "62"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1605,7 +1605,7 @@ interactions: "Edm.Int64", "RowKey": "63"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1630,7 +1630,7 @@ interactions: "Edm.Int64", "RowKey": "64"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1655,7 +1655,7 @@ interactions: "Edm.Int64", "RowKey": "65"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1680,7 +1680,7 @@ interactions: "Edm.Int64", "RowKey": "66"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1705,7 +1705,7 @@ interactions: "Edm.Int64", "RowKey": "67"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1730,7 +1730,7 @@ interactions: "Edm.Int64", "RowKey": "68"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1755,7 +1755,7 @@ interactions: "Edm.Int64", "RowKey": "69"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1780,7 +1780,7 @@ interactions: "Edm.Int64", "RowKey": "70"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1805,7 +1805,7 @@ interactions: "Edm.Int64", "RowKey": "71"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1830,7 +1830,7 @@ interactions: "Edm.Int64", "RowKey": "72"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1855,7 +1855,7 @@ interactions: "Edm.Int64", "RowKey": "73"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1880,7 +1880,7 @@ interactions: "Edm.Int64", "RowKey": "74"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1905,7 +1905,7 @@ interactions: "Edm.Int64", "RowKey": "75"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1930,7 +1930,7 @@ interactions: "Edm.Int64", "RowKey": "76"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1955,7 +1955,7 @@ interactions: "Edm.Int64", "RowKey": "77"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -1980,7 +1980,7 @@ interactions: "Edm.Int64", "RowKey": "78"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2005,7 +2005,7 @@ interactions: "Edm.Int64", "RowKey": "79"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2030,7 +2030,7 @@ interactions: "Edm.Int64", "RowKey": "80"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2055,7 +2055,7 @@ interactions: "Edm.Int64", "RowKey": "81"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2080,7 +2080,7 @@ interactions: "Edm.Int64", "RowKey": "82"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2105,7 +2105,7 @@ interactions: "Edm.Int64", "RowKey": "83"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2130,7 +2130,7 @@ interactions: "Edm.Int64", "RowKey": "84"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2155,7 +2155,7 @@ interactions: "Edm.Int64", "RowKey": "85"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2180,7 +2180,7 @@ interactions: "Edm.Int64", "RowKey": "86"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2205,7 +2205,7 @@ interactions: "Edm.Int64", "RowKey": "87"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2230,7 +2230,7 @@ interactions: "Edm.Int64", "RowKey": "88"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2255,7 +2255,7 @@ interactions: "Edm.Int64", "RowKey": "89"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2280,7 +2280,7 @@ interactions: "Edm.Int64", "RowKey": "90"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2305,7 +2305,7 @@ interactions: "Edm.Int64", "RowKey": "91"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2330,7 +2330,7 @@ interactions: "Edm.Int64", "RowKey": "92"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2355,7 +2355,7 @@ interactions: "Edm.Int64", "RowKey": "93"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2380,7 +2380,7 @@ interactions: "Edm.Int64", "RowKey": "94"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2405,7 +2405,7 @@ interactions: "Edm.Int64", "RowKey": "95"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2430,7 +2430,7 @@ interactions: "Edm.Int64", "RowKey": "96"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2455,7 +2455,7 @@ interactions: "Edm.Int64", "RowKey": "97"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2480,7 +2480,7 @@ interactions: "Edm.Int64", "RowKey": "98"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6 + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6 Content-Type: application/http @@ -2505,634 +2505,634 @@ interactions: "Edm.Int64", "RowKey": "99"} - --changeset_8d593dc0-67fc-11e7-b215-b8e8564491f6-- + --changeset_bbfbe4f4-68f6-11e7-912b-b8e8564491f6-- - --batch_8d593d3e-67fc-11e7-a68f-b8e8564491f6--' + --batch_bbfbe498-68f6-11e7-8cf9-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['47412'] - Content-Type: [multipart/mixed; boundary=batch_8d593d3e-67fc-11e7-a68f-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_bbfbe498-68f6-11e7-8cf9-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8d596b58-67fc-11e7-a936-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:25 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bbfc03a6-68f6-11e7-af5b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:18 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_c708de26-58e1-49d6-a69f-66c984915e80\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ - \n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\nContent-Type:\ + body: {string: "--batchresponse_d5dddb23-6410-4cfe-8262-45c0a5066590\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ + \n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6540864Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8760198Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6550888Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 51\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='50')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='50')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 52\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='51')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='51')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 53\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='52')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='52')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 54\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='53')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='53')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 55\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='54')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='54')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 56\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='55')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='55')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 57\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='56')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='56')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 58\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='57')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='57')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 59\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='58')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='58')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 60\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='59')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='59')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 61\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='60')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='60')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 62\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='61')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='61')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 63\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='62')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='62')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 64\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='63')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='63')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 65\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='64')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='64')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 66\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='65')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='65')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 67\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='66')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='66')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 68\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='67')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='67')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 69\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='68')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='68')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 70\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='69')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='69')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 71\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='70')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='70')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8770209Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 72\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='71')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='71')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 73\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='72')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='72')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 74\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='73')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='73')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 75\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='74')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='74')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 76\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='75')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='75')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 77\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='76')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='76')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6560874Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 78\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='77')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='77')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 79\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='78')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='78')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 80\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='79')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='79')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 81\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='80')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='80')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 82\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='81')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='81')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 83\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='82')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='82')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 84\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='83')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='83')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 85\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='84')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='84')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 86\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='85')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='85')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 87\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='86')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='86')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 88\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='87')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='87')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 89\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='88')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='88')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 90\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='89')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='89')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 91\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='90')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='90')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 92\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='91')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='91')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 93\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='92')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='92')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 94\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='93')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='93')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 95\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='94')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='94')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 96\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='95')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='95')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 97\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='96')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='96')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 98\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='97')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='97')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 99\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='98')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='98')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 100\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='99')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tableff010e3f(PartitionKey='batch_inserts',RowKey='99')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A25.8780212Z'\"\r\n\r\n\r\n--changesetresponse_6f3d1cf2-50a2-44b7-ac18-c6dfc64d29fd--\r\ - \n--batchresponse_c708de26-58e1-49d6-a69f-66c984915e80--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A44%3A19.6570885Z'\"\r\n\r\n\r\n--changesetresponse_fb650fd3-a069-44f8-8840-f9ac16954e42--\r\ + \n--batchresponse_d5dddb23-6410-4cfe-8262-45c0a5066590--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_c708de26-58e1-49d6-a69f-66c984915e80] - Date: ['Thu, 13 Jul 2017 18:53:25 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_d5dddb23-6410-4cfe-8262-45c0a5066590] + Date: ['Sat, 15 Jul 2017 00:44:18 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [279d2a40-0002-0096-0309-fc36e0000000] + x-ms-request-id: [b5dd8013-0002-0039-5b03-fd1470000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -3142,22 +3142,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8d9379e2-67fc-11e7-ad6a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bc2ff666-68f6-11e7-92d0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:18 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/tableff010e3f()?%24filter=PartitionKey+eq+%27batch_inserts%27&%24select= response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tableff010e3f&$select=","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"0","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"1","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"10","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"11","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"12","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"13","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"14","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"15","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"16","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"17","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"18","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"19","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"2","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"20","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"21","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"22","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"23","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"24","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"25","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"26","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"27","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"28","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"29","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"3","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"30","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"31","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"32","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"33","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"34","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"35","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"36","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"37","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"38","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"39","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"4","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"40","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"41","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"42","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"43","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"44","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"45","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"46","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"47","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"48","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"49","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"5","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"50","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"51","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"52","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"53","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"54","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"55","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"56","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"57","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"58","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"59","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"6","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"60","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"61","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"62","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"63","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"64","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"65","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"66","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"67","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"68","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"69","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"7","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8770209Z''\"","PartitionKey":"batch_inserts","RowKey":"70","Timestamp":"2017-07-13T18:53:25.8770209Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"71","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"72","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"73","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"74","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"75","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"76","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"77","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"78","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"79","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"8","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"80","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"81","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"82","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"83","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"84","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"85","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"86","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"87","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"88","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"89","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8760198Z''\"","PartitionKey":"batch_inserts","RowKey":"9","Timestamp":"2017-07-13T18:53:25.8760198Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"90","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"91","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"92","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"93","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"94","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"95","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"96","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"97","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"98","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A25.8780212Z''\"","PartitionKey":"batch_inserts","RowKey":"99","Timestamp":"2017-07-13T18:53:25.8780212Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"}]}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tableff010e3f&$select=","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6540864Z''\"","PartitionKey":"batch_inserts","RowKey":"0","Timestamp":"2017-07-15T00:44:19.6540864Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"1","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"10","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"11","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"12","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"13","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"14","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"15","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"16","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"17","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"18","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"19","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"2","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"20","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"21","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"22","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"23","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"24","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"25","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"26","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"27","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"28","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"29","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"3","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"30","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"31","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"32","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"33","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"34","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"35","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"36","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"37","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"38","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"39","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"4","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"40","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"41","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"42","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"43","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"44","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"45","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"46","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"47","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"48","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"49","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"5","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"50","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"51","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"52","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"53","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"54","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"55","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"56","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"57","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"58","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"59","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"6","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"60","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"61","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"62","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"63","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"64","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"65","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"66","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"67","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"68","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"69","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"7","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"70","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"71","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"72","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"73","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"74","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"75","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6560874Z''\"","PartitionKey":"batch_inserts","RowKey":"76","Timestamp":"2017-07-15T00:44:19.6560874Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"77","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"78","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"79","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"8","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"80","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"81","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"82","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"83","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"84","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"85","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"86","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"87","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"88","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"89","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6550888Z''\"","PartitionKey":"batch_inserts","RowKey":"9","Timestamp":"2017-07-15T00:44:19.6550888Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"90","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"91","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"92","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"93","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"94","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"95","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"96","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"97","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"98","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A19.6570885Z''\"","PartitionKey":"batch_inserts","RowKey":"99","Timestamp":"2017-07-15T00:44:19.6570885Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:25 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:18 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [279d2a4c-0002-0096-0b09-fc36e0000000] + x-ms-request-id: [b5dd8035-0002-0039-7303-fd1470000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_merge.yaml b/tests/recordings/test_table_batch.test_batch_merge.yaml index e9ffa483..b3a143f6 100644 --- a/tests/recordings/test_table_batch.test_batch_merge.yaml +++ b/tests/recordings/test_table_batch.test_batch_merge.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"PartitionKey": "001", "RowKey": "batch_merge", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": "1234567890", - "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:26Z", "test5@odata.type": + "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"}' headers: Accept: [application/json;odata=minimalmetadata] @@ -12,9 +12,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8df5c8ac-67fc-11e7-bb06-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:26 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bc891430-68f6-11e7-92af-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:19 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/tablee2da0d47 @@ -24,13 +24,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/tablee2da0d47(PartitionKey=''001'',RowKey=''batch_merge'')'] - Date: ['Thu, 13 Jul 2017 18:53:25 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A26.5232139Z'"] + Date: ['Sat, 15 Jul 2017 00:44:19 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A20.6147203Z'"] Location: ['https://storagename.table.core.windows.net/tablee2da0d47(PartitionKey=''001'',RowKey=''batch_merge'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [8a974ee4-0002-0054-2809-fcbe5e000000] + x-ms-request-id: [21e597f9-0002-0087-4e03-fd01fb000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -40,32 +40,32 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8e09f9b4-67fc-11e7-9eb8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bc9d3fe6-68f6-11e7-a36f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:19 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/tablee2da0d47(PartitionKey='001',RowKey='batch_merge') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tablee2da0d47/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A26.5232139Z''\"","PartitionKey":"001","RowKey":"batch_merge","Timestamp":"2017-07-13T18:53:26.5232139Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:26Z"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tablee2da0d47/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A20.6147203Z''\"","PartitionKey":"001","RowKey":"batch_merge","Timestamp":"2017-07-15T00:44:20.6147203Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:19Z"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:25 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A26.5232139Z'"] + Date: ['Sat, 15 Jul 2017 00:44:19 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A20.6147203Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [8a974ef1-0002-0054-3209-fcbe5e000000] + x-ms-request-id: [21e59809-0002-0087-5a03-fd01fb000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: - body: '--batch_8e0eee5e-67fc-11e7-b5f0-b8e8564491f6 + body: '--batch_bca22774-68f6-11e7-baf7-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8e0eef30-67fc-11e7-8d0a-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_bca22826-68f6-11e7-9d9b-b8e8564491f6 - --changeset_8e0eef30-67fc-11e7-8d0a-b8e8564491f6 + --changeset_bca22826-68f6-11e7-9d9b-b8e8564491f6 Content-Type: application/http @@ -88,38 +88,38 @@ interactions: {"PartitionKey": "001", "RowKey": "batch_merge", "test2": "value1"} - --changeset_8e0eef30-67fc-11e7-8d0a-b8e8564491f6-- + --changeset_bca22826-68f6-11e7-9d9b-b8e8564491f6-- - --batch_8e0eee5e-67fc-11e7-b5f0-b8e8564491f6--' + --batch_bca22774-68f6-11e7-baf7-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['609'] - Content-Type: [multipart/mixed; boundary=batch_8e0eee5e-67fc-11e7-b5f0-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_bca22774-68f6-11e7-baf7-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8e0ef1e2-67fc-11e7-aa6a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bca22a92-68f6-11e7-a121-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:19 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_5f8c6c2e-687c-4580-a584-8634791b0f59\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_b06c970a-c224-415d-a5e2-166390c07359\r\ - \n\r\n--changesetresponse_b06c970a-c224-415d-a5e2-166390c07359\r\nContent-Type:\ + body: {string: "--batchresponse_880a6cca-b503-4a9f-a97c-50de8663b3ab\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_b3e50f7d-35bf-4bf3-af35-0f2be6fa9809\r\ + \n\r\n--changesetresponse_b3e50f7d-35bf-4bf3-af35-0f2be6fa9809\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A26.7450118Z'\"\ - \r\n\r\n\r\n--changesetresponse_b06c970a-c224-415d-a5e2-166390c07359--\r\n\ - --batchresponse_5f8c6c2e-687c-4580-a584-8634791b0f59--\r\n"} + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A20.6157203Z'\"\ + \r\n\r\n\r\n--changesetresponse_b3e50f7d-35bf-4bf3-af35-0f2be6fa9809--\r\n\ + --batchresponse_880a6cca-b503-4a9f-a97c-50de8663b3ab--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_5f8c6c2e-687c-4580-a584-8634791b0f59] - Date: ['Thu, 13 Jul 2017 18:53:25 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_880a6cca-b503-4a9f-a97c-50de8663b3ab] + Date: ['Sat, 15 Jul 2017 00:44:19 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [8a974efa-0002-0054-3b09-fcbe5e000000] + x-ms-request-id: [21e5981a-0002-0087-6a03-fd01fb000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -129,23 +129,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8e145d9e-67fc-11e7-97c4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bca7ba98-68f6-11e7-b717-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:19 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/tablee2da0d47(PartitionKey='001',RowKey='batch_merge') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tablee2da0d47/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A26.7450118Z''\"","PartitionKey":"001","RowKey":"batch_merge","Timestamp":"2017-07-13T18:53:26.7450118Z","test":"true","test2":"value1","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:26Z"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tablee2da0d47/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A20.6157203Z''\"","PartitionKey":"001","RowKey":"batch_merge","Timestamp":"2017-07-15T00:44:20.6157203Z","test":"true","test2":"value1","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:19Z"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:25 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A26.7450118Z'"] + Date: ['Sat, 15 Jul 2017 00:44:19 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A20.6157203Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [8a974f02-0002-0054-4309-fcbe5e000000] + x-ms-request-id: [21e5982d-0002-0087-7b03-fd01fb000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_reuse.yaml b/tests/recordings/test_table_batch.test_batch_reuse.yaml index 5305bfb2..2e98d5d0 100644 --- a/tests/recordings/test_table_batch.test_batch_reuse.yaml +++ b/tests/recordings/test_table_batch.test_batch_reuse.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8e445bc0-67fc-11e7-8971-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bcd8041e-68f6-11e7-aec2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:19 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,21 +21,21 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''table2e3140d5b'')'] - Date: ['Thu, 13 Jul 2017 18:53:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:21 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''table2e3140d5b'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [63327b3f-0002-0076-1c09-fcd068000000] + x-ms-request-id: [4dcfd67c-0002-000e-5103-fdb8df000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_8e5cc3cc-67fc-11e7-813f-b8e8564491f6 + body: '--batch_bcedb318-68f6-11e7-864a-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8e5cc462-67fc-11e7-96b6-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_bcedb3b8-68f6-11e7-9a4d-b8e8564491f6 - --changeset_8e5cc462-67fc-11e7-96b6-b8e8564491f6 + --changeset_bcedb3b8-68f6-11e7-9a4d-b8e8564491f6 Content-Type: application/http @@ -57,11 +57,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-1", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e5cc462-67fc-11e7-96b6-b8e8564491f6 + --changeset_bcedb3b8-68f6-11e7-9a4d-b8e8564491f6 Content-Type: application/http @@ -83,11 +83,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-2", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e5cc462-67fc-11e7-96b6-b8e8564491f6 + --changeset_bcedb3b8-68f6-11e7-9a4d-b8e8564491f6 Content-Type: application/http @@ -109,11 +109,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-3", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e5cc462-67fc-11e7-96b6-b8e8564491f6 + --changeset_bcedb3b8-68f6-11e7-9a4d-b8e8564491f6 Content-Type: application/http @@ -135,71 +135,71 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-4", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e5cc462-67fc-11e7-96b6-b8e8564491f6-- + --changeset_bcedb3b8-68f6-11e7-9a4d-b8e8564491f6-- - --batch_8e5cc3cc-67fc-11e7-813f-b8e8564491f6--' + --batch_bcedb318-68f6-11e7-864a-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['2466'] - Content-Type: [multipart/mixed; boundary=batch_8e5cc3cc-67fc-11e7-813f-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_bcedb318-68f6-11e7-864a-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8e5cc82c-67fc-11e7-a07b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bcedb836-68f6-11e7-989b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:19 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_1501aeee-65a3-4795-9e4a-e8f861dac950\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_b00c5c5d-666d-4602-8d82-df4c8b725ee7\r\ - \n\r\n--changesetresponse_b00c5c5d-666d-4602-8d82-df4c8b725ee7\r\nContent-Type:\ + body: {string: "--batchresponse_90ac5ec3-298f-4b32-b969-92ea6904f025\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_a2c9f354-81bb-465f-ba29-e6d4df697bdb\r\ + \n\r\n--changesetresponse_a2c9f354-81bb-465f-ba29-e6d4df697bdb\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tablee3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tablee3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A27.4412854Z'\"\r\n\r\n\r\n--changesetresponse_b00c5c5d-666d-4602-8d82-df4c8b725ee7\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A21.4289433Z'\"\r\n\r\n\r\n--changesetresponse_a2c9f354-81bb-465f-ba29-e6d4df697bdb\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tablee3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tablee3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A27.4422845Z'\"\r\n\r\n\r\n--changesetresponse_b00c5c5d-666d-4602-8d82-df4c8b725ee7\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A21.4289433Z'\"\r\n\r\n\r\n--changesetresponse_a2c9f354-81bb-465f-ba29-e6d4df697bdb\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tablee3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tablee3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A27.4422845Z'\"\r\n\r\n\r\n--changesetresponse_b00c5c5d-666d-4602-8d82-df4c8b725ee7\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A21.4289433Z'\"\r\n\r\n\r\n--changesetresponse_a2c9f354-81bb-465f-ba29-e6d4df697bdb\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tablee3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tablee3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A27.4422845Z'\"\r\n\r\n\r\n--changesetresponse_b00c5c5d-666d-4602-8d82-df4c8b725ee7--\r\ - \n--batchresponse_1501aeee-65a3-4795-9e4a-e8f861dac950--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A44%3A21.4289433Z'\"\r\n\r\n\r\n--changesetresponse_a2c9f354-81bb-465f-ba29-e6d4df697bdb--\r\ + \n--batchresponse_90ac5ec3-298f-4b32-b969-92ea6904f025--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_1501aeee-65a3-4795-9e4a-e8f861dac950] - Date: ['Thu, 13 Jul 2017 18:53:26 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_90ac5ec3-298f-4b32-b969-92ea6904f025] + Date: ['Sat, 15 Jul 2017 00:44:21 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [63327b5c-0002-0076-3409-fcd068000000] + x-ms-request-id: [4dcfd687-0002-000e-5a03-fdb8df000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_8e671624-67fc-11e7-9261-b8e8564491f6 + body: '--batch_bcf72a58-68f6-11e7-9a53-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8e671692-67fc-11e7-8bc7-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_bcf72b00-68f6-11e7-9113-b8e8564491f6 - --changeset_8e671692-67fc-11e7-8bc7-b8e8564491f6 + --changeset_bcf72b00-68f6-11e7-9113-b8e8564491f6 Content-Type: application/http @@ -221,11 +221,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-1", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e671692-67fc-11e7-8bc7-b8e8564491f6 + --changeset_bcf72b00-68f6-11e7-9113-b8e8564491f6 Content-Type: application/http @@ -247,11 +247,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-2", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e671692-67fc-11e7-8bc7-b8e8564491f6 + --changeset_bcf72b00-68f6-11e7-9113-b8e8564491f6 Content-Type: application/http @@ -273,11 +273,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-3", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e671692-67fc-11e7-8bc7-b8e8564491f6 + --changeset_bcf72b00-68f6-11e7-9113-b8e8564491f6 Content-Type: application/http @@ -299,71 +299,71 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-4", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e671692-67fc-11e7-8bc7-b8e8564491f6-- + --changeset_bcf72b00-68f6-11e7-9113-b8e8564491f6-- - --batch_8e671624-67fc-11e7-9261-b8e8564491f6--' + --batch_bcf72a58-68f6-11e7-9a53-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['2470'] - Content-Type: [multipart/mixed; boundary=batch_8e671624-67fc-11e7-9261-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_bcf72a58-68f6-11e7-9a53-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8e67198a-67fc-11e7-8c48-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bcf72f62-68f6-11e7-8084-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:19 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_ca011919-d076-471c-a71e-8f1d94c30da9\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_a01c963d-e4e5-445f-a27d-6000f69eac04\r\ - \n\r\n--changesetresponse_a01c963d-e4e5-445f-a27d-6000f69eac04\r\nContent-Type:\ + body: {string: "--batchresponse_12ad3b3e-c50d-4fe5-9205-2552666e42b5\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_10610f00-b5ae-4115-86a3-bd7fb717b975\r\ + \n\r\n--changesetresponse_10610f00-b5ae-4115-86a3-bd7fb717b975\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/table2e3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/table2e3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A27.5063308Z'\"\r\n\r\n\r\n--changesetresponse_a01c963d-e4e5-445f-a27d-6000f69eac04\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A21.4909883Z'\"\r\n\r\n\r\n--changesetresponse_10610f00-b5ae-4115-86a3-bd7fb717b975\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/table2e3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/table2e3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A27.5063308Z'\"\r\n\r\n\r\n--changesetresponse_a01c963d-e4e5-445f-a27d-6000f69eac04\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A21.4909883Z'\"\r\n\r\n\r\n--changesetresponse_10610f00-b5ae-4115-86a3-bd7fb717b975\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/table2e3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/table2e3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A27.5063308Z'\"\r\n\r\n\r\n--changesetresponse_a01c963d-e4e5-445f-a27d-6000f69eac04\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A21.4909883Z'\"\r\n\r\n\r\n--changesetresponse_10610f00-b5ae-4115-86a3-bd7fb717b975\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/table2e3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/table2e3140d5b(PartitionKey='003',RowKey='batch_all_operations_together-4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A27.5063308Z'\"\r\n\r\n\r\n--changesetresponse_a01c963d-e4e5-445f-a27d-6000f69eac04--\r\ - \n--batchresponse_ca011919-d076-471c-a71e-8f1d94c30da9--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A44%3A21.4909883Z'\"\r\n\r\n\r\n--changesetresponse_10610f00-b5ae-4115-86a3-bd7fb717b975--\r\ + \n--batchresponse_12ad3b3e-c50d-4fe5-9205-2552666e42b5--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_ca011919-d076-471c-a71e-8f1d94c30da9] - Date: ['Thu, 13 Jul 2017 18:53:26 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_12ad3b3e-c50d-4fe5-9205-2552666e42b5] + Date: ['Sat, 15 Jul 2017 00:44:21 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [63327b74-0002-0076-4809-fcd068000000] + x-ms-request-id: [4dcfd696-0002-000e-6803-fdb8df000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_8e700ee6-67fc-11e7-842c-b8e8564491f6 + body: '--batch_bd02da0c-68f6-11e7-9ce7-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8e700f54-67fc-11e7-a6df-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_bd02da90-68f6-11e7-87b9-b8e8564491f6 - --changeset_8e700f54-67fc-11e7-a6df-b8e8564491f6 + --changeset_bd02da90-68f6-11e7-87b9-b8e8564491f6 Content-Type: application/http @@ -385,11 +385,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": "1234567890", - "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", "test5@odata.type": + "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e700f54-67fc-11e7-a6df-b8e8564491f6 + --changeset_bd02da90-68f6-11e7-87b9-b8e8564491f6 Content-Type: application/http @@ -406,7 +406,7 @@ interactions: If-Match: * - --changeset_8e700f54-67fc-11e7-a6df-b8e8564491f6 + --changeset_bd02da90-68f6-11e7-87b9-b8e8564491f6 Content-Type: application/http @@ -429,11 +429,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-2", "test": "true", "test2": "value", "test3": "10", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e700f54-67fc-11e7-a6df-b8e8564491f6 + --changeset_bd02da90-68f6-11e7-87b9-b8e8564491f6 Content-Type: application/http @@ -456,11 +456,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-3", "test": "true", "test2": "value", "test3": "100", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e700f54-67fc-11e7-a6df-b8e8564491f6 + --changeset_bd02da90-68f6-11e7-87b9-b8e8564491f6 Content-Type: application/http @@ -481,11 +481,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-4", "test": "true", "test2": "value", "test3": "10", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e700f54-67fc-11e7-a6df-b8e8564491f6 + --changeset_bd02da90-68f6-11e7-87b9-b8e8564491f6 Content-Type: application/http @@ -506,72 +506,72 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-5", "test": "true", "test2": "value", "test3": "10", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e700f54-67fc-11e7-a6df-b8e8564491f6-- + --changeset_bd02da90-68f6-11e7-87b9-b8e8564491f6-- - --batch_8e700ee6-67fc-11e7-842c-b8e8564491f6--' + --batch_bd02da0c-68f6-11e7-9ce7-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['3473'] - Content-Type: [multipart/mixed; boundary=batch_8e700ee6-67fc-11e7-842c-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_bd02da0c-68f6-11e7-9ce7-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8e7012c6-67fc-11e7-8f27-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bd02df2c-68f6-11e7-962d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:20 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_1898215b-7bfa-4d8b-a28a-9693815ab314\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_2ba243a2-9985-45e8-a05b-402749ebaad6\r\ - \n\r\n--changesetresponse_2ba243a2-9985-45e8-a05b-402749ebaad6\r\nContent-Type:\ + body: {string: "--batchresponse_4baae90d-f98d-44fc-a8e8-0e01fff68227\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_4b67725e-da0e-42bd-9731-0a9dad222433\r\ + \n\r\n--changesetresponse_4b67725e-da0e-42bd-9731-0a9dad222433\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/tablee3140d5b(PartitionKey='003',RowKey='batch_all_operations_together')\r\ \nDataServiceId: https://storagename.table.core.windows.net/tablee3140d5b(PartitionKey='003',RowKey='batch_all_operations_together')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A27.5653736Z'\"\r\n\r\n\r\n--changesetresponse_2ba243a2-9985-45e8-a05b-402749ebaad6\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A21.5650401Z'\"\r\n\r\n\r\n--changesetresponse_4b67725e-da0e-42bd-9731-0a9dad222433\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ - \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\n\r\n\r\n--changesetresponse_2ba243a2-9985-45e8-a05b-402749ebaad6\r\ + \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\n\r\n\r\n--changesetresponse_4b67725e-da0e-42bd-9731-0a9dad222433\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ - \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A27.4432845Z'\"\ - \r\n\r\n\r\n--changesetresponse_2ba243a2-9985-45e8-a05b-402749ebaad6\r\nContent-Type:\ + \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A21.4299433Z'\"\ + \r\n\r\n\r\n--changesetresponse_4b67725e-da0e-42bd-9731-0a9dad222433\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A27.4432845Z'\"\ - \r\n\r\n\r\n--changesetresponse_2ba243a2-9985-45e8-a05b-402749ebaad6\r\nContent-Type:\ + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A21.4299433Z'\"\ + \r\n\r\n\r\n--changesetresponse_4b67725e-da0e-42bd-9731-0a9dad222433\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A27.4432845Z'\"\ - \r\n\r\n\r\n--changesetresponse_2ba243a2-9985-45e8-a05b-402749ebaad6\r\nContent-Type:\ + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A21.4299433Z'\"\ + \r\n\r\n\r\n--changesetresponse_4b67725e-da0e-42bd-9731-0a9dad222433\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A27.3844542Z'\"\ - \r\n\r\n\r\n--changesetresponse_2ba243a2-9985-45e8-a05b-402749ebaad6--\r\n\ - --batchresponse_1898215b-7bfa-4d8b-a28a-9693815ab314--\r\n"} + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A20.6970035Z'\"\ + \r\n\r\n\r\n--changesetresponse_4b67725e-da0e-42bd-9731-0a9dad222433--\r\n\ + --batchresponse_4baae90d-f98d-44fc-a8e8-0e01fff68227--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_1898215b-7bfa-4d8b-a28a-9693815ab314] - Date: ['Thu, 13 Jul 2017 18:53:26 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_4baae90d-f98d-44fc-a8e8-0e01fff68227] + Date: ['Sat, 15 Jul 2017 00:44:21 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [63327b7f-0002-0076-5309-fcd068000000] + x-ms-request-id: [4dcfd6aa-0002-000e-7b03-fdb8df000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_8e78f33a-67fc-11e7-abad-b8e8564491f6 + body: '--batch_bd0ce878-68f6-11e7-af48-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8e78f39e-67fc-11e7-bdc6-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_bd0ce918-68f6-11e7-b03a-b8e8564491f6 - --changeset_8e78f39e-67fc-11e7-bdc6-b8e8564491f6 + --changeset_bd0ce918-68f6-11e7-b03a-b8e8564491f6 Content-Type: application/http @@ -593,11 +593,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": "1234567890", - "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", "test5@odata.type": + "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e78f39e-67fc-11e7-bdc6-b8e8564491f6 + --changeset_bd0ce918-68f6-11e7-b03a-b8e8564491f6 Content-Type: application/http @@ -614,7 +614,7 @@ interactions: If-Match: * - --changeset_8e78f39e-67fc-11e7-bdc6-b8e8564491f6 + --changeset_bd0ce918-68f6-11e7-b03a-b8e8564491f6 Content-Type: application/http @@ -637,11 +637,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-2", "test": "true", "test2": "value", "test3": "10", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e78f39e-67fc-11e7-bdc6-b8e8564491f6 + --changeset_bd0ce918-68f6-11e7-b03a-b8e8564491f6 Content-Type: application/http @@ -664,11 +664,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-3", "test": "true", "test2": "value", "test3": "100", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e78f39e-67fc-11e7-bdc6-b8e8564491f6 + --changeset_bd0ce918-68f6-11e7-b03a-b8e8564491f6 Content-Type: application/http @@ -689,11 +689,11 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-4", "test": "true", "test2": "value", "test3": "10", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e78f39e-67fc-11e7-bdc6-b8e8564491f6 + --changeset_bd0ce918-68f6-11e7-b03a-b8e8564491f6 Content-Type: application/http @@ -714,63 +714,63 @@ interactions: {"PartitionKey": "003", "RowKey": "batch_all_operations_together-5", "test": "true", "test2": "value", "test3": "10", "test3@odata.type": "Edm.Int64", "test4": - "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:27Z", + "1234567890", "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:19Z", "test5@odata.type": "Edm.DateTime"} - --changeset_8e78f39e-67fc-11e7-bdc6-b8e8564491f6-- + --changeset_bd0ce918-68f6-11e7-b03a-b8e8564491f6-- - --batch_8e78f33a-67fc-11e7-abad-b8e8564491f6--' + --batch_bd0ce878-68f6-11e7-af48-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['3479'] - Content-Type: [multipart/mixed; boundary=batch_8e78f33a-67fc-11e7-abad-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_bd0ce878-68f6-11e7-af48-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8e78f6c8-67fc-11e7-9936-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bd0cee90-68f6-11e7-aa21-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:20 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_b4519e9e-d5d8-479c-a628-10694cbf36b7\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_5a697faf-aee8-45a9-ba8d-ce684c8464c9\r\ - \n\r\n--changesetresponse_5a697faf-aee8-45a9-ba8d-ce684c8464c9\r\nContent-Type:\ + body: {string: "--batchresponse_a69d7277-4322-4ca8-a9ae-c97f83896fb6\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_45d230d8-f7b0-4d08-8a55-8c372fa0088b\r\ + \n\r\n--changesetresponse_45d230d8-f7b0-4d08-8a55-8c372fa0088b\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/table2e3140d5b(PartitionKey='003',RowKey='batch_all_operations_together')\r\ \nDataServiceId: https://storagename.table.core.windows.net/table2e3140d5b(PartitionKey='003',RowKey='batch_all_operations_together')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A27.6414308Z'\"\r\n\r\n\r\n--changesetresponse_5a697faf-aee8-45a9-ba8d-ce684c8464c9\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A21.6320878Z'\"\r\n\r\n\r\n--changesetresponse_45d230d8-f7b0-4d08-8a55-8c372fa0088b\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ - \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\n\r\n\r\n--changesetresponse_5a697faf-aee8-45a9-ba8d-ce684c8464c9\r\ + \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\n\r\n\r\n--changesetresponse_45d230d8-f7b0-4d08-8a55-8c372fa0088b\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ - \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A27.5073308Z'\"\ - \r\n\r\n\r\n--changesetresponse_5a697faf-aee8-45a9-ba8d-ce684c8464c9\r\nContent-Type:\ + \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A21.4919883Z'\"\ + \r\n\r\n\r\n--changesetresponse_45d230d8-f7b0-4d08-8a55-8c372fa0088b\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A27.5073308Z'\"\ - \r\n\r\n\r\n--changesetresponse_5a697faf-aee8-45a9-ba8d-ce684c8464c9\r\nContent-Type:\ + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A21.4919883Z'\"\ + \r\n\r\n\r\n--changesetresponse_45d230d8-f7b0-4d08-8a55-8c372fa0088b\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A27.5073308Z'\"\ - \r\n\r\n\r\n--changesetresponse_5a697faf-aee8-45a9-ba8d-ce684c8464c9\r\nContent-Type:\ + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A21.4919883Z'\"\ + \r\n\r\n\r\n--changesetresponse_45d230d8-f7b0-4d08-8a55-8c372fa0088b\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A27.4615088Z'\"\ - \r\n\r\n\r\n--changesetresponse_5a697faf-aee8-45a9-ba8d-ce684c8464c9--\r\n\ - --batchresponse_b4519e9e-d5d8-479c-a628-10694cbf36b7--\r\n"} + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A20.7640524Z'\"\ + \r\n\r\n\r\n--changesetresponse_45d230d8-f7b0-4d08-8a55-8c372fa0088b--\r\n\ + --batchresponse_a69d7277-4322-4ca8-a9ae-c97f83896fb6--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_b4519e9e-d5d8-479c-a628-10694cbf36b7] - Date: ['Thu, 13 Jul 2017 18:53:26 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_a69d7277-4322-4ca8-a9ae-c97f83896fb6] + Date: ['Sat, 15 Jul 2017 00:44:21 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [63327b8f-0002-0076-6309-fcd068000000] + x-ms-request-id: [4dcfd6bf-0002-000e-0f03-fdb8df000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -780,22 +780,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8e851908-67fc-11e7-a282-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:27 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bd1690e4-68f6-11e7-b913-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:20 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/tablee3140d5b()?%24filter=PartitionKey+eq+%27003%27&%24select= response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tablee3140d5b&$select=","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A27.5653736Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together","Timestamp":"2017-07-13T18:53:27.5653736Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:27Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A27.4432845Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-2","Timestamp":"2017-07-13T18:53:27.4432845Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:27Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A27.4432845Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-3","Timestamp":"2017-07-13T18:53:27.4432845Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"100","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:27Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A27.4432845Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-4","Timestamp":"2017-07-13T18:53:27.4432845Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:27Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A27.3844542Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-5","Timestamp":"2017-07-13T18:53:27.3844542Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:27Z"}]}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tablee3140d5b&$select=","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A21.5650401Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together","Timestamp":"2017-07-15T00:44:21.5650401Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:19Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A21.4299433Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-2","Timestamp":"2017-07-15T00:44:21.4299433Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:19Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A21.4299433Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-3","Timestamp":"2017-07-15T00:44:21.4299433Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"100","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:19Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A21.4299433Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-4","Timestamp":"2017-07-15T00:44:21.4299433Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:19Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A20.6970035Z''\"","PartitionKey":"003","RowKey":"batch_all_operations_together-5","Timestamp":"2017-07-15T00:44:20.6970035Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"10","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:19Z"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:26 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:21 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [63327b9f-0002-0076-7309-fcd068000000] + x-ms-request-id: [4dcfd6cc-0002-000e-1c03-fdb8df000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_same_row_operations_fail.yaml b/tests/recordings/test_table_batch.test_batch_same_row_operations_fail.yaml index 64b4d1ce..5a376daa 100644 --- a/tests/recordings/test_table_batch.test_batch_same_row_operations_fail.yaml +++ b/tests/recordings/test_table_batch.test_batch_same_row_operations_fail.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8ec18212-67fc-11e7-93d6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:28 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bd5b4680-68f6-11e7-9897-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:20 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/table2efa1532 @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/table2efa1532(PartitionKey=''001'',RowKey=''batch_negative_1'')'] - Date: ['Thu, 13 Jul 2017 18:53:27 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A27.9634978Z'"] + Date: ['Sat, 15 Jul 2017 00:44:21 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A22.3709209Z'"] Location: ['https://storagename.table.core.windows.net/table2efa1532(PartitionKey=''001'',RowKey=''batch_negative_1'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [778f8b7a-0002-005d-6309-fca4d0000000] + x-ms-request-id: [53000f71-0002-00ac-0a03-fd7543000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_too_many_ops.yaml b/tests/recordings/test_table_batch.test_batch_too_many_ops.yaml index 191d727e..b505a1ad 100644 --- a/tests/recordings/test_table_batch.test_batch_too_many_ops.yaml +++ b/tests/recordings/test_table_batch.test_batch_too_many_ops.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8f001d7e-67fc-11e7-84ec-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:28 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bda18b4a-68f6-11e7-a002-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:21 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/table4c2a104e @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/table4c2a104e(PartitionKey=''001'',RowKey=''batch_negative_1'')'] - Date: ['Thu, 13 Jul 2017 18:53:27 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A28.7240208Z'"] + Date: ['Sat, 15 Jul 2017 00:44:22 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A21.7755251Z'"] Location: ['https://storagename.table.core.windows.net/table4c2a104e(PartitionKey=''001'',RowKey=''batch_negative_1'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [0c7beee4-0002-002f-3c09-fcd5ee000000] + x-ms-request-id: [a9790e6a-0002-001f-1903-fd8fc4000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_update.yaml b/tests/recordings/test_table_batch.test_batch_update.yaml index ce311980..55f63349 100644 --- a/tests/recordings/test_table_batch.test_batch_update.yaml +++ b/tests/recordings/test_table_batch.test_batch_update.yaml @@ -2,7 +2,7 @@ interactions: - request: body: '{"PartitionKey": "001", "RowKey": "batch_update", "test": "true", "test2": "value", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": "1234567890", - "test4@odata.type": "Edm.Int64", "test5": "2017-07-13T18:53:29Z", "test5@odata.type": + "test4@odata.type": "Edm.Int64", "test5": "2017-07-15T00:44:23Z", "test5@odata.type": "Edm.DateTime"}' headers: Accept: [application/json;odata=minimalmetadata] @@ -12,9 +12,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8f3feb02-67fc-11e7-8269-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bed0a65e-68f6-11e7-84df-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:23 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/tablef0c10dba @@ -24,13 +24,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/tablef0c10dba(PartitionKey=''001'',RowKey=''batch_update'')'] - Date: ['Thu, 13 Jul 2017 18:53:28 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A28.7881638Z'"] + Date: ['Sat, 15 Jul 2017 00:44:23 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A23.9753585Z'"] Location: ['https://storagename.table.core.windows.net/tablef0c10dba(PartitionKey=''001'',RowKey=''batch_update'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [0ceab7ee-0002-00dd-6609-fc077a000000] + x-ms-request-id: [18508aa9-0002-0135-5603-fdbcd4000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -40,32 +40,32 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8f53d266-67fc-11e7-bfb9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bee4ce9a-68f6-11e7-ab6c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:23 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/tablef0c10dba(PartitionKey='001',RowKey='batch_update') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tablef0c10dba/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A28.7881638Z''\"","PartitionKey":"001","RowKey":"batch_update","Timestamp":"2017-07-13T18:53:28.7881638Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:29Z"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tablef0c10dba/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A23.9753585Z''\"","PartitionKey":"001","RowKey":"batch_update","Timestamp":"2017-07-15T00:44:23.9753585Z","test":"true","test2":"value","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:23Z"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:28 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A28.7881638Z'"] + Date: ['Sat, 15 Jul 2017 00:44:23 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A23.9753585Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [0ceab800-0002-00dd-7509-fc077a000000] + x-ms-request-id: [18508ab6-0002-0135-6103-fdbcd4000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: - body: '--batch_8f58bde4-67fc-11e7-8adc-b8e8564491f6 + body: '--batch_beea1ada-68f6-11e7-be0e-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8f58beb6-67fc-11e7-9280-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_beea1bb6-68f6-11e7-bcda-b8e8564491f6 - --changeset_8f58beb6-67fc-11e7-9280-b8e8564491f6 + --changeset_beea1bb6-68f6-11e7-bcda-b8e8564491f6 Content-Type: application/http @@ -85,45 +85,45 @@ interactions: Content-Length: 393 - {"PartitionKey": "001", "RowKey": "batch_update", "Timestamp": "2017-07-13T18:53:28Z", + {"PartitionKey": "001", "RowKey": "batch_update", "Timestamp": "2017-07-15T00:44:23Z", "Timestamp@odata.type": "Edm.DateTime", "test": "true", "test2": "value1", "test3": "3", "test3@odata.type": "Edm.Int64", "test4": "1234567890", "test4@odata.type": - "Edm.Int64", "test5": "2017-07-13T18:53:29Z", "test5@odata.type": "Edm.DateTime", - "etag": "W/\"datetime''2017-07-13T18%3A53%3A28.7881638Z''\""} + "Edm.Int64", "test5": "2017-07-15T00:44:23Z", "test5@odata.type": "Edm.DateTime", + "etag": "W/\"datetime''2017-07-15T00%3A44%3A23.9753585Z''\""} - --changeset_8f58beb6-67fc-11e7-9280-b8e8564491f6-- + --changeset_beea1bb6-68f6-11e7-bcda-b8e8564491f6-- - --batch_8f58bde4-67fc-11e7-8adc-b8e8564491f6--' + --batch_beea1ada-68f6-11e7-be0e-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['935'] - Content-Type: [multipart/mixed; boundary=batch_8f58bde4-67fc-11e7-8adc-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_beea1ada-68f6-11e7-be0e-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8f58c168-67fc-11e7-8562-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [beea1e7a-68f6-11e7-b0e2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:23 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_d4344fa5-7685-471e-892a-405c572b9f32\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_a27e6fa8-d848-4db5-a5ec-465e2e38bd1c\r\ - \n\r\n--changesetresponse_a27e6fa8-d848-4db5-a5ec-465e2e38bd1c\r\nContent-Type:\ + body: {string: "--batchresponse_746e2f2b-5c43-46c4-9cf0-b7ff635a670e\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_bddf5825-b660-4361-8567-3e46e5b53072\r\ + \n\r\n--changesetresponse_bddf5825-b660-4361-8567-3e46e5b53072\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A28.9145158Z'\"\ - \r\n\r\n\r\n--changesetresponse_a27e6fa8-d848-4db5-a5ec-465e2e38bd1c--\r\n\ - --batchresponse_d4344fa5-7685-471e-892a-405c572b9f32--\r\n"} + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A23.9763585Z'\"\ + \r\n\r\n\r\n--changesetresponse_bddf5825-b660-4361-8567-3e46e5b53072--\r\n\ + --batchresponse_746e2f2b-5c43-46c4-9cf0-b7ff635a670e--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_d4344fa5-7685-471e-892a-405c572b9f32] - Date: ['Thu, 13 Jul 2017 18:53:28 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_746e2f2b-5c43-46c4-9cf0-b7ff635a670e] + Date: ['Sat, 15 Jul 2017 00:44:23 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [0ceab80d-0002-00dd-0209-fc077a000000] + x-ms-request-id: [18508abf-0002-0135-6a03-fdbcd4000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -133,23 +133,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8f5f4fcc-67fc-11e7-ac05-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bef04cc0-68f6-11e7-a2b8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:23 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/tablef0c10dba(PartitionKey='001',RowKey='batch_update') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tablef0c10dba/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A28.9145158Z''\"","PartitionKey":"001","RowKey":"batch_update","Timestamp":"2017-07-13T18:53:28.9145158Z","etag":"W/\"datetime''2017-07-13T18%3A53%3A28.7881638Z''\"","test":"true","test2":"value1","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-13T18:53:29Z"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#tablef0c10dba/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A23.9763585Z''\"","PartitionKey":"001","RowKey":"batch_update","Timestamp":"2017-07-15T00:44:23.9763585Z","etag":"W/\"datetime''2017-07-15T00%3A44%3A23.9753585Z''\"","test":"true","test2":"value1","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2017-07-15T00:44:23Z"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:28 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A28.9145158Z'"] + Date: ['Sat, 15 Jul 2017 00:44:23 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A23.9763585Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [0ceab81f-0002-00dd-1409-fc077a000000] + x-ms-request-id: [18508ac3-0002-0135-6e03-fdbcd4000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_update_if_doesnt_match.yaml b/tests/recordings/test_table_batch.test_batch_update_if_doesnt_match.yaml index 12849ce5..0fda7112 100644 --- a/tests/recordings/test_table_batch.test_batch_update_if_doesnt_match.yaml +++ b/tests/recordings/test_table_batch.test_batch_update_if_doesnt_match.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8f8f7578-67fc-11e7-915d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bf8e96dc-68f6-11e7-9982-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:24 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/table3741440 @@ -27,22 +27,22 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/table3741440(PartitionKey=''pk3741440'',RowKey=''rk3741440'')'] - Date: ['Thu, 13 Jul 2017 18:53:29 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A29.738559Z'"] + Date: ['Sat, 15 Jul 2017 00:44:24 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A25.7006266Z'"] Location: ['https://storagename.table.core.windows.net/table3741440(PartitionKey=''pk3741440'',RowKey=''rk3741440'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f2440b57-0002-00c3-7609-fcdd97000000] + x-ms-request-id: [dc949566-0002-010b-6403-fd0af5000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_8faa2c62-67fc-11e7-bfe1-b8e8564491f6 + body: '--batch_bfa2c72e-68f6-11e7-abc5-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8faa2d00-67fc-11e7-b44d-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_bfa2c800-68f6-11e7-b66a-b8e8564491f6 - --changeset_8faa2d00-67fc-11e7-b44d-b8e8564491f6 + --changeset_bfa2c800-68f6-11e7-b66a-b8e8564491f6 Content-Type: application/http @@ -67,50 +67,50 @@ interactions: "Edm.DateTime"} - --changeset_8faa2d00-67fc-11e7-b44d-b8e8564491f6-- + --changeset_bfa2c800-68f6-11e7-b66a-b8e8564491f6-- - --batch_8faa2c62-67fc-11e7-bfe1-b8e8564491f6--' + --batch_bfa2c72e-68f6-11e7-abc5-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['767'] - Content-Type: [multipart/mixed; boundary=batch_8faa2c62-67fc-11e7-bfe1-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_bfa2c72e-68f6-11e7-abc5-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8faa2f1c-67fc-11e7-8c5b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:29 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bfa2caba-68f6-11e7-9e31-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:24 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_8d50a0db-6a15-4553-9c75-6728a93e3222\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_2666aa65-909f-430c-adb7-6350248e2746\r\ - \n\r\n--changesetresponse_2666aa65-909f-430c-adb7-6350248e2746\r\nContent-Type:\ + body: {string: "--batchresponse_49627ef6-51ee-47c9-bce9-28466dcf992c\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_b7ddba15-12d9-4a2e-911b-5aa6e2193ee7\r\ + \n\r\n--changesetresponse_b7ddba15-12d9-4a2e-911b-5aa6e2193ee7\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 412\ \ Precondition Failed\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nDataServiceVersion: 3.0;\r\nContent-Type: application/json;odata=minimalmetadata;streaming=true;charset=utf-8\r\ \n\r\n{\"odata.error\":{\"code\":\"UpdateConditionNotSatisfied\",\"message\"\ :{\"lang\":\"en-US\",\"value\":\"The update condition specified in the request\ - \ was not satisfied.\\nRequestId:f2440b5f-0002-00c3-7c09-fcdd97000000\\nTime:2017-07-13T18:53:29.8226200Z\"\ - }}}\r\n--changesetresponse_2666aa65-909f-430c-adb7-6350248e2746--\r\n--batchresponse_8d50a0db-6a15-4553-9c75-6728a93e3222--\r\ + \ was not satisfied.\\nRequestId:dc949575-0002-010b-7103-fd0af5000000\\nTime:2017-07-15T00:44:25.7406566Z\"\ + }}}\r\n--changesetresponse_b7ddba15-12d9-4a2e-911b-5aa6e2193ee7--\r\n--batchresponse_49627ef6-51ee-47c9-bce9-28466dcf992c--\r\ \n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_8d50a0db-6a15-4553-9c75-6728a93e3222] - Date: ['Thu, 13 Jul 2017 18:53:29 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_49627ef6-51ee-47c9-bce9-28466dcf992c] + Date: ['Sat, 15 Jul 2017 00:44:24 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f2440b5f-0002-00c3-7c09-fcdd97000000] + x-ms-request-id: [dc949575-0002-010b-7103-fd0af5000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_8faa2c62-67fc-11e7-bfe1-b8e8564491f6 + body: '--batch_bfa2c72e-68f6-11e7-abc5-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8faa2d00-67fc-11e7-b44d-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_bfa2c800-68f6-11e7-b66a-b8e8564491f6 - --changeset_8faa2d00-67fc-11e7-b44d-b8e8564491f6 + --changeset_bfa2c800-68f6-11e7-b66a-b8e8564491f6 Content-Type: application/http @@ -135,50 +135,50 @@ interactions: "Edm.DateTime"} - --changeset_8faa2d00-67fc-11e7-b44d-b8e8564491f6-- + --changeset_bfa2c800-68f6-11e7-b66a-b8e8564491f6-- - --batch_8faa2c62-67fc-11e7-bfe1-b8e8564491f6--' + --batch_bfa2c72e-68f6-11e7-abc5-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['767'] - Content-Type: [multipart/mixed; boundary=batch_8faa2c62-67fc-11e7-bfe1-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_bfa2c72e-68f6-11e7-abc5-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8faa2f1c-67fc-11e7-8c5b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:30 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bfa2caba-68f6-11e7-9e31-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:25 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_7206c068-26ae-4ae6-9e14-c335569d3dd4\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_425f7ac1-dab8-4fb9-83fc-023d5d16f7e9\r\ - \n\r\n--changesetresponse_425f7ac1-dab8-4fb9-83fc-023d5d16f7e9\r\nContent-Type:\ + body: {string: "--batchresponse_c8f843b8-d105-43bc-9661-c83ee05cf1f7\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_db0c1adb-b71e-496a-ab23-9cd579bd7076\r\ + \n\r\n--changesetresponse_db0c1adb-b71e-496a-ab23-9cd579bd7076\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 412\ \ Precondition Failed\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nDataServiceVersion: 3.0;\r\nContent-Type: application/json;odata=minimalmetadata;streaming=true;charset=utf-8\r\ \n\r\n{\"odata.error\":{\"code\":\"UpdateConditionNotSatisfied\",\"message\"\ :{\"lang\":\"en-US\",\"value\":\"The update condition specified in the request\ - \ was not satisfied.\\nRequestId:f2440c08-0002-00c3-0a09-fcdd97000000\\nTime:2017-07-13T18:53:30.8633748Z\"\ - }}}\r\n--changesetresponse_425f7ac1-dab8-4fb9-83fc-023d5d16f7e9--\r\n--batchresponse_7206c068-26ae-4ae6-9e14-c335569d3dd4--\r\ + \ was not satisfied.\\nRequestId:dc9496bb-0002-010b-2003-fd0af5000000\\nTime:2017-07-15T00:44:26.7814594Z\"\ + }}}\r\n--changesetresponse_db0c1adb-b71e-496a-ab23-9cd579bd7076--\r\n--batchresponse_c8f843b8-d105-43bc-9661-c83ee05cf1f7--\r\ \n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_7206c068-26ae-4ae6-9e14-c335569d3dd4] - Date: ['Thu, 13 Jul 2017 18:53:30 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_c8f843b8-d105-43bc-9661-c83ee05cf1f7] + Date: ['Sat, 15 Jul 2017 00:44:25 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f2440c08-0002-00c3-0a09-fcdd97000000] + x-ms-request-id: [dc9496bb-0002-010b-2003-fd0af5000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_8faa2c62-67fc-11e7-bfe1-b8e8564491f6 + body: '--batch_bfa2c72e-68f6-11e7-abc5-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_8faa2d00-67fc-11e7-b44d-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_bfa2c800-68f6-11e7-b66a-b8e8564491f6 - --changeset_8faa2d00-67fc-11e7-b44d-b8e8564491f6 + --changeset_bfa2c800-68f6-11e7-b66a-b8e8564491f6 Content-Type: application/http @@ -203,41 +203,41 @@ interactions: "Edm.DateTime"} - --changeset_8faa2d00-67fc-11e7-b44d-b8e8564491f6-- + --changeset_bfa2c800-68f6-11e7-b66a-b8e8564491f6-- - --batch_8faa2c62-67fc-11e7-bfe1-b8e8564491f6--' + --batch_bfa2c72e-68f6-11e7-abc5-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['767'] - Content-Type: [multipart/mixed; boundary=batch_8faa2c62-67fc-11e7-bfe1-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_bfa2c72e-68f6-11e7-abc5-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [8faa2f1c-67fc-11e7-8c5b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [bfa2caba-68f6-11e7-9e31-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:26 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_bd34b471-00fb-451c-9ba1-61b2711d9196\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_63aaa9b0-29fc-409d-b182-f372f30ed91c\r\ - \n\r\n--changesetresponse_63aaa9b0-29fc-409d-b182-f372f30ed91c\r\nContent-Type:\ + body: {string: "--batchresponse_94952739-6032-4b74-ad32-77d498492563\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_722991db-8353-4cf1-a0f5-e7958900a4aa\r\ + \n\r\n--changesetresponse_722991db-8353-4cf1-a0f5-e7958900a4aa\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 412\ \ Precondition Failed\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nDataServiceVersion: 3.0;\r\nContent-Type: application/json;odata=minimalmetadata;streaming=true;charset=utf-8\r\ \n\r\n{\"odata.error\":{\"code\":\"UpdateConditionNotSatisfied\",\"message\"\ :{\"lang\":\"en-US\",\"value\":\"The update condition specified in the request\ - \ was not satisfied.\\nRequestId:f2440cd1-0002-00c3-4909-fcdd97000000\\nTime:2017-07-13T18:53:31.9081329Z\"\ - }}}\r\n--changesetresponse_63aaa9b0-29fc-409d-b182-f372f30ed91c--\r\n--batchresponse_bd34b471-00fb-451c-9ba1-61b2711d9196--\r\ + \ was not satisfied.\\nRequestId:dc9497db-0002-010b-3603-fd0af5000000\\nTime:2017-07-15T00:44:27.8252637Z\"\ + }}}\r\n--changesetresponse_722991db-8353-4cf1-a0f5-e7958900a4aa--\r\n--batchresponse_94952739-6032-4b74-ad32-77d498492563--\r\ \n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_bd34b471-00fb-451c-9ba1-61b2711d9196] - Date: ['Thu, 13 Jul 2017 18:53:31 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_94952739-6032-4b74-ad32-77d498492563] + Date: ['Sat, 15 Jul 2017 00:44:26 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f2440cd1-0002-00c3-4909-fcdd97000000] + x-ms-request-id: [dc9497db-0002-010b-3603-fd0af5000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -247,23 +247,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [90ed51d8-67fc-11e7-aca0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:31 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c0e642be-68f6-11e7-88c6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:26 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/table3741440(PartitionKey='pk3741440',RowKey='rk3741440') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#table3741440/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A29.738559Z''\"","PartitionKey":"pk3741440","RowKey":"rk3741440","Timestamp":"2017-07-13T18:53:29.738559Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#table3741440/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A25.7006266Z''\"","PartitionKey":"pk3741440","RowKey":"rk3741440","Timestamp":"2017-07-15T00:44:25.7006266Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:31 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A29.738559Z'"] + Date: ['Sat, 15 Jul 2017 00:44:27 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A25.7006266Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f2440cd7-0002-00c3-4d09-fcdd97000000] + x-ms-request-id: [dc9497e5-0002-010b-3e03-fd0af5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_batch.test_batch_update_if_match.yaml b/tests/recordings/test_table_batch.test_batch_update_if_match.yaml index dc3fb396..54d8786c 100644 --- a/tests/recordings/test_table_batch.test_batch_update_if_match.yaml +++ b/tests/recordings/test_table_batch.test_batch_update_if_match.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [911ff89a-67fc-11e7-93db-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c1196446-68f6-11e7-a838-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:26 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/table7e2c1154 @@ -27,22 +27,22 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/table7e2c1154(PartitionKey=''pk7e2c1154'',RowKey=''rk7e2c1154'')'] - Date: ['Thu, 13 Jul 2017 18:53:31 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A32.3623688Z'"] + Date: ['Sat, 15 Jul 2017 00:44:27 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A28.2639339Z'"] Location: ['https://storagename.table.core.windows.net/table7e2c1154(PartitionKey=''pk7e2c1154'',RowKey=''rk7e2c1154'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b40012c0-0002-0045-7309-fc8945000000] + x-ms-request-id: [93a78b0b-0002-0103-5703-fd1186000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_9134231a-67fc-11e7-8f4f-b8e8564491f6 + body: '--batch_c12d4428-68f6-11e7-a7b9-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_913423e2-67fc-11e7-bc1d-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_c12d44f4-68f6-11e7-a36f-b8e8564491f6 - --changeset_913423e2-67fc-11e7-bc1d-b8e8564491f6 + --changeset_c12d44f4-68f6-11e7-a36f-b8e8564491f6 Content-Type: application/http @@ -57,7 +57,7 @@ interactions: Accept: application/json;odata=minimalmetadata - If-Match: W/"datetime''2017-07-13T18%3A53%3A32.3623688Z''" + If-Match: W/"datetime''2017-07-15T00%3A44%3A28.2639339Z''" Content-Length: 180 @@ -67,38 +67,38 @@ interactions: "Edm.DateTime"} - --changeset_913423e2-67fc-11e7-bc1d-b8e8564491f6-- + --changeset_c12d44f4-68f6-11e7-a36f-b8e8564491f6-- - --batch_9134231a-67fc-11e7-8f4f-b8e8564491f6--' + --batch_c12d4428-68f6-11e7-a7b9-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['772'] - Content-Type: [multipart/mixed; boundary=batch_9134231a-67fc-11e7-8f4f-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_c12d4428-68f6-11e7-a7b9-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9134268a-67fc-11e7-bf89-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c12d47ae-68f6-11e7-9592-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:27 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_60a12897-120f-4776-8d0e-895721af5c61\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_baecb6a8-fd4b-4d41-b40b-9871791bae99\r\ - \n\r\n--changesetresponse_baecb6a8-fd4b-4d41-b40b-9871791bae99\r\nContent-Type:\ + body: {string: "--batchresponse_3bdf9401-e872-4efa-a2a3-18bbcea63963\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_9622174f-54c2-4f94-a63b-f25f2a43b4e3\r\ + \n\r\n--changesetresponse_9622174f-54c2-4f94-a63b-f25f2a43b4e3\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A32.3633688Z'\"\ - \r\n\r\n\r\n--changesetresponse_baecb6a8-fd4b-4d41-b40b-9871791bae99--\r\n\ - --batchresponse_60a12897-120f-4776-8d0e-895721af5c61--\r\n"} + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A28.2649339Z'\"\ + \r\n\r\n\r\n--changesetresponse_9622174f-54c2-4f94-a63b-f25f2a43b4e3--\r\n\ + --batchresponse_3bdf9401-e872-4efa-a2a3-18bbcea63963--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_60a12897-120f-4776-8d0e-895721af5c61] - Date: ['Thu, 13 Jul 2017 18:53:31 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_3bdf9401-e872-4efa-a2a3-18bbcea63963] + Date: ['Sat, 15 Jul 2017 00:44:27 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b40012d2-0002-0045-0309-fc8945000000] + x-ms-request-id: [93a78b24-0002-0103-6c03-fd1186000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -108,23 +108,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9139cc18-67fc-11e7-ba2a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c132cb98-68f6-11e7-9505-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:27 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/table7e2c1154(PartitionKey='pk7e2c1154',RowKey='rk7e2c1154') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#table7e2c1154/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A32.3633688Z''\"","PartitionKey":"pk7e2c1154","RowKey":"rk7e2c1154","Timestamp":"2017-07-13T18:53:32.3633688Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#table7e2c1154/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A28.2649339Z''\"","PartitionKey":"pk7e2c1154","RowKey":"rk7e2c1154","Timestamp":"2017-07-15T00:44:28.2649339Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:31 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A32.3633688Z'"] + Date: ['Sat, 15 Jul 2017 00:44:28 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A28.2649339Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b40012db-0002-0045-0c09-fc8945000000] + x-ms-request-id: [93a78b2b-0002-0103-7303-fd1186000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_batch_entity_inserts_context_manager.yaml b/tests/recordings/test_table_encryption.test_batch_entity_inserts_context_manager.yaml index c2d736fb..14bb6b21 100644 --- a/tests/recordings/test_table_encryption.test_batch_entity_inserts_context_manager.yaml +++ b/tests/recordings/test_table_encryption.test_batch_entity_inserts_context_manager.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pk427b1a22", "RowKey": "Entity3", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "yhcxcRx2XvrjhW5WJgiVBw==", "sex@odata.type": "Edm.Binary", - "name": "js/+wWQf92I0l36jNS/0VQ==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "9EgSrFjtew+DRmqkhQR4GA==", "sex@odata.type": "Edm.Binary", + "name": "X3qkUWZGHrz3iukPYDg/Aw==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "5T9w1Yo8diE+6DLTTEpd4w==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "2rVMZmKNRTWVbj3T4nJZ/g==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"2mC81TgBgXxfQbJuAugU6mJpO2CHkoQyeqX6mwMTzITtHCVnLgf+cA==\", + \"key1\", \"EncryptedKey\": \"G5rjiO5guOQp1RK9ZasvYXI92C4EgifhPRi5xHgZQ7MetGarkLjWwg==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"VYaIwZkH8DMTuheou3DcbQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"KAha6WiZHH2BBI0mt/M51A==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [916c384a-67fc-11e7-b182-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:32 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c16575c0-68f6-11e7-801c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:27 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable427b1a22 @@ -34,22 +34,22 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable427b1a22(PartitionKey=''pk427b1a22'',RowKey=''Entity3'')'] - Date: ['Thu, 13 Jul 2017 18:53:32 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A32.5096115Z'"] + Date: ['Sat, 15 Jul 2017 00:44:26 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A26.6770625Z'"] Location: ['https://storagename.table.core.windows.net/uttable427b1a22(PartitionKey=''pk427b1a22'',RowKey=''Entity3'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [1f4f2770-0002-008f-5109-fc1a88000000] + x-ms-request-id: [53f66cac-0002-0089-3103-fdedf0000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_91ba00de-67fc-11e7-bd26-b8e8564491f6 + body: '--batch_c1834f9e-68f6-11e7-bf37-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_91ba0168-67fc-11e7-9f43-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_c1835006-68f6-11e7-a53d-b8e8564491f6 - --changeset_91ba0168-67fc-11e7-9f43-b8e8564491f6 + --changeset_c1835006-68f6-11e7-a53d-b8e8564491f6 Content-Type: application/http @@ -70,22 +70,22 @@ interactions: {"PartitionKey": "pk427b1a22", "RowKey": "rk427b1a22", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "npAn6mHeLS6p+z6Z1lS5qw==", "sex@odata.type": "Edm.Binary", - "name": "iPTz2qY2FoQMb+rymXDOnQ==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "3saVmO+0V+h52jq/QcMh/w==", "sex@odata.type": "Edm.Binary", + "name": "mZN19ZMZLk9pDOFM3bWVvg==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "RYnzo9R/K9qkyY/H3PmRhA==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "YsVqxAPTDeoVEJl0klNebg==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"ft69b4H7plRjpb/zoyjCPtH3uS2h9rJAmhVHEGyRbtfUWry9lbue8A==\", + \"key1\", \"EncryptedKey\": \"8A3+8ou6e5OjMrVrMvLfAxXJkOIF+ztqfL5a0o/OQVDismJCtaxa1A==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"fsgs6a04d9VW+3WTrD0RsA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"HPl38s3cirqb9VLSGNbJLg==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"} - --changeset_91ba0168-67fc-11e7-9f43-b8e8564491f6 + --changeset_c1835006-68f6-11e7-a53d-b8e8564491f6 Content-Type: application/http @@ -104,22 +104,22 @@ interactions: {"PartitionKey": "pk427b1a22", "RowKey": "Entity2", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "9mR1BCoYB8SQ/rm1F176ew==", "sex@odata.type": "Edm.Binary", - "name": "kRhJ9ITfgGbr3gm6sM1fPA==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "vEEdK+uLe+SBpbJrcaTgpw==", "sex@odata.type": "Edm.Binary", + "name": "SzCS1nlS4crbGhtaqtOaMA==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "FseuFvM14+EKP9NlSGnFVA==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "V8iS8zgzS+8gVflOCd1x2g==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"8Fvc3tPH4tSUFWUihnUYRlJIjIFGEse2xqROlhAvdqXmxnFeupl3mg==\", + \"key1\", \"EncryptedKey\": \"R4Tep2k1nrHJg6dFdyh32MISCL9iameC6QHk/dDUjRE2jTLsGjtgoA==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"zARCNoudp1Fcr/oY9C5IDQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"hVpIO7RTTuFc/M5wKReY2g==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"} - --changeset_91ba0168-67fc-11e7-9f43-b8e8564491f6 + --changeset_c1835006-68f6-11e7-a53d-b8e8564491f6 Content-Type: application/http @@ -140,63 +140,63 @@ interactions: {"PartitionKey": "pk427b1a22", "RowKey": "Entity3", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "L5FZa2G1MP5H4wL7gsgJVA==", "sex@odata.type": "Edm.Binary", - "name": "fvT0fQ+LP5+kFPMurZjBfA==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "06syx2F/klanXj6cdfqnIA==", "sex@odata.type": "Edm.Binary", + "name": "SsBw29GevCDxi6sXXuoMGQ==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "EvsMzlDH4+J5x1cFri1bWg==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "rcuJDeGs6f7CewyRxvf54w==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"hv0zbQrVq3HztRfGmXpd2mudPEzZKaRwd9VDENqIevNaNKXHaND7dw==\", + \"key1\", \"EncryptedKey\": \"TZJ7+SEGlpeSwXEi2CZMJP6lRFZ9gPdoEUJonTJz6F/gFklDn/kJ2Q==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"OD77GTpRKc34Yz4RPhoAuw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"2KfgyYWD9GyB3zZPCY1QIg==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"} - --changeset_91ba0168-67fc-11e7-9f43-b8e8564491f6-- + --changeset_c1835006-68f6-11e7-a53d-b8e8564491f6-- - --batch_91ba00de-67fc-11e7-bd26-b8e8564491f6--' + --batch_c1834f9e-68f6-11e7-bf37-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['4698'] - Content-Type: [multipart/mixed; boundary=batch_91ba00de-67fc-11e7-bd26-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_c1834f9e-68f6-11e7-bf37-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [91ba04b4-67fc-11e7-a16f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c18352ca-68f6-11e7-8f4b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:27 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_3daa21d2-f2c5-496f-a829-007550db7bdc\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_c89d42d3-9349-4353-9536-8ad0edf3797f\r\ - \n\r\n--changesetresponse_c89d42d3-9349-4353-9536-8ad0edf3797f\r\nContent-Type:\ + body: {string: "--batchresponse_578586b8-f840-40a6-89f9-df60f26a33a0\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_d158b1b0-e024-4082-a434-45435da5342c\r\ + \n\r\n--changesetresponse_d158b1b0-e024-4082-a434-45435da5342c\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/uttable427b1a22(PartitionKey='pk427b1a22',RowKey='rk427b1a22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/uttable427b1a22(PartitionKey='pk427b1a22',RowKey='rk427b1a22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A32.9949558Z'\"\r\n\r\n\r\n--changesetresponse_c89d42d3-9349-4353-9536-8ad0edf3797f\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A26.8481708Z'\"\r\n\r\n\r\n--changesetresponse_d158b1b0-e024-4082-a434-45435da5342c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ - \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A32.9713196Z'\"\ - \r\n\r\n\r\n--changesetresponse_c89d42d3-9349-4353-9536-8ad0edf3797f\r\nContent-Type:\ + \nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A28.3175705Z'\"\ + \r\n\r\n\r\n--changesetresponse_d158b1b0-e024-4082-a434-45435da5342c\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ - \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-13T18%3A53%3A32.9713196Z'\"\ - \r\n\r\n\r\n--changesetresponse_c89d42d3-9349-4353-9536-8ad0edf3797f--\r\n\ - --batchresponse_3daa21d2-f2c5-496f-a829-007550db7bdc--\r\n"} + \ no-cache\r\nDataServiceVersion: 1.0;\r\nETag: W/\"datetime'2017-07-15T00%3A44%3A28.3175705Z'\"\ + \r\n\r\n\r\n--changesetresponse_d158b1b0-e024-4082-a434-45435da5342c--\r\n\ + --batchresponse_578586b8-f840-40a6-89f9-df60f26a33a0--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_3daa21d2-f2c5-496f-a829-007550db7bdc] - Date: ['Thu, 13 Jul 2017 18:53:32 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_578586b8-f840-40a6-89f9-df60f26a33a0] + Date: ['Sat, 15 Jul 2017 00:44:26 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [1f4f27c4-0002-008f-1909-fc1a88000000] + x-ms-request-id: [53f66cd4-0002-0089-5503-fdedf0000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -206,27 +206,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [91caa45c-67fc-11e7-9d05-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c193e4c8-68f6-11e7-859f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:27 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable427b1a22(PartitionKey='pk427b1a22',RowKey='rk427b1a22') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable427b1a22/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A32.9949558Z''\"","PartitionKey":"pk427b1a22","RowKey":"rk427b1a22","Timestamp":"2017-07-13T18:53:32.9949558Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"npAn6mHeLS6p+z6Z1lS5qw==","name@odata.type":"Edm.Binary","name":"iPTz2qY2FoQMb+rymXDOnQ==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"RYnzo9R/K9qkyY/H3PmRhA==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"ft69b4H7plRjpb/zoyjCPtH3uS2h9rJAmhVHEGyRbtfUWry9lbue8A==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable427b1a22/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A26.8481708Z''\"","PartitionKey":"pk427b1a22","RowKey":"rk427b1a22","Timestamp":"2017-07-15T00:44:26.8481708Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"3saVmO+0V+h52jq/QcMh/w==","name@odata.type":"Edm.Binary","name":"mZN19ZMZLk9pDOFM3bWVvg==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"YsVqxAPTDeoVEJl0klNebg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"8A3+8ou6e5OjMrVrMvLfAxXJkOIF+ztqfL5a0o/OQVDismJCtaxa1A==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"fsgs6a04d9VW+3WTrD0RsA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"HPl38s3cirqb9VLSGNbJLg==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:32 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A32.9949558Z'"] + Date: ['Sat, 15 Jul 2017 00:44:26 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A26.8481708Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [1f4f27cc-0002-008f-2009-fc1a88000000] + x-ms-request-id: [53f66cdc-0002-0089-5d03-fdedf0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -236,27 +236,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [91d01446-67fc-11e7-8802-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c198d7a8-68f6-11e7-af01-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:27 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable427b1a22(PartitionKey='pk427b1a22',RowKey='Entity2') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable427b1a22/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A32.9713196Z''\"","PartitionKey":"pk427b1a22","RowKey":"Entity2","Timestamp":"2017-07-13T18:53:32.9713196Z","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"8Fvc3tPH4tSUFWUihnUYRlJIjIFGEse2xqROlhAvdqXmxnFeupl3mg==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable427b1a22/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A28.3175705Z''\"","PartitionKey":"pk427b1a22","RowKey":"Entity2","Timestamp":"2017-07-15T00:44:28.3175705Z","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"R4Tep2k1nrHJg6dFdyh32MISCL9iameC6QHk/dDUjRE2jTLsGjtgoA==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"zARCNoudp1Fcr/oY9C5IDQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"FseuFvM14+EKP9NlSGnFVA==","age@odata.type":"Edm.Int64","age":"39","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","deceased":false,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","married":true,"name@odata.type":"Edm.Binary","name":"kRhJ9ITfgGbr3gm6sM1fPA==","other":20,"ratio":3.1,"sex@odata.type":"Edm.Binary","sex":"9mR1BCoYB8SQ/rm1F176ew=="}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"hVpIO7RTTuFc/M5wKReY2g==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"V8iS8zgzS+8gVflOCd1x2g==","age@odata.type":"Edm.Int64","age":"39","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","deceased":false,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","married":true,"name@odata.type":"Edm.Binary","name":"SzCS1nlS4crbGhtaqtOaMA==","other":20,"ratio":3.1,"sex@odata.type":"Edm.Binary","sex":"vEEdK+uLe+SBpbJrcaTgpw=="}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:32 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A32.9713196Z'"] + Date: ['Sat, 15 Jul 2017 00:44:26 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A28.3175705Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [1f4f27da-0002-008f-2c09-fc1a88000000] + x-ms-request-id: [53f66ce2-0002-0089-6303-fdedf0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -266,27 +266,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [91dd28b6-67fc-11e7-bf62-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c19e08e2-68f6-11e7-8a7d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:27 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable427b1a22(PartitionKey='pk427b1a22',RowKey='Entity3') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable427b1a22/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A32.9713196Z''\"","PartitionKey":"pk427b1a22","RowKey":"Entity3","Timestamp":"2017-07-13T18:53:32.9713196Z","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"hv0zbQrVq3HztRfGmXpd2mudPEzZKaRwd9VDENqIevNaNKXHaND7dw==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable427b1a22/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A28.3175705Z''\"","PartitionKey":"pk427b1a22","RowKey":"Entity3","Timestamp":"2017-07-15T00:44:28.3175705Z","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"TZJ7+SEGlpeSwXEi2CZMJP6lRFZ9gPdoEUJonTJz6F/gFklDn/kJ2Q==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"OD77GTpRKc34Yz4RPhoAuw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"EvsMzlDH4+J5x1cFri1bWg==","age@odata.type":"Edm.Int64","age":"39","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","deceased":false,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","married":true,"name@odata.type":"Edm.Binary","name":"fvT0fQ+LP5+kFPMurZjBfA==","other":20,"ratio":3.1,"sex@odata.type":"Edm.Binary","sex":"L5FZa2G1MP5H4wL7gsgJVA=="}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"2KfgyYWD9GyB3zZPCY1QIg==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"rcuJDeGs6f7CewyRxvf54w==","age@odata.type":"Edm.Int64","age":"39","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","deceased":false,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","married":true,"name@odata.type":"Edm.Binary","name":"SsBw29GevCDxi6sXXuoMGQ==","other":20,"ratio":3.1,"sex@odata.type":"Edm.Binary","sex":"06syx2F/klanXj6cdfqnIA=="}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:32 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A32.9713196Z'"] + Date: ['Sat, 15 Jul 2017 00:44:26 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A28.3175705Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [1f4f27e6-0002-008f-3609-fc1a88000000] + x-ms-request-id: [53f66ce7-0002-0089-6803-fdedf0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_get_encrypt_multiple_properties.yaml b/tests/recordings/test_table_encryption.test_get_encrypt_multiple_properties.yaml index b510b59d..1f5762bd 100644 --- a/tests/recordings/test_table_encryption.test_get_encrypt_multiple_properties.yaml +++ b/tests/recordings/test_table_encryption.test_get_encrypt_multiple_properties.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pkc65e183a", "RowKey": "rkc65e183a", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "LrONns70a9AqB2N3wx5ttA==", "sex@odata.type": "Edm.Binary", - "name": "pSHwLeMz2OM+MAZQD981Kg==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "vP6MfM58h9MYIFjrAry1RQ==", "sex@odata.type": "Edm.Binary", + "name": "0VyArBbrL+0u24BnyiAtXw==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "UYuO7H7LGLCUYCfSieErMg==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "hQUHxljNJRQ6Mjs5eRdnmg==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"TH3C8rk8ArzuwLoMHM7FpedV9utJZk0CiPtvQQRPCYuQBQpkYRnVxw==\", + \"key1\", \"EncryptedKey\": \"nlRzUlHNR+1GmBUTPYaAOGIuQu+lkawS37lKCZPfa4Osfm8evVNwzw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"+mqAld+rV+saQ4+dpftsiw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"uVQpwwLW6i9UGgXYxXVCFw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [922d3c02-67fc-11e7-92dc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:33 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c1f1fd9c-68f6-11e7-97f0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:28 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablec65e183a @@ -34,13 +34,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablec65e183a(PartitionKey=''pkc65e183a'',RowKey=''rkc65e183a'')'] - Date: ['Thu, 13 Jul 2017 18:53:33 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A34.0545367Z'"] + Date: ['Sat, 15 Jul 2017 00:44:28 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A29.0161395Z'"] Location: ['https://storagename.table.core.windows.net/uttablec65e183a(PartitionKey=''pkc65e183a'',RowKey=''rkc65e183a'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b1a3d956-0002-00f9-1c09-fc9e34000000] + x-ms-request-id: [8928d213-0002-0044-2103-fd88b8000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -50,27 +50,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9240f08a-67fc-11e7-9173-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c20643cc-68f6-11e7-9396-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:28 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablec65e183a(PartitionKey='pkc65e183a',RowKey='rkc65e183a') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablec65e183a/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A34.0545367Z''\"","PartitionKey":"pkc65e183a","RowKey":"rkc65e183a","Timestamp":"2017-07-13T18:53:34.0545367Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"LrONns70a9AqB2N3wx5ttA==","name@odata.type":"Edm.Binary","name":"pSHwLeMz2OM+MAZQD981Kg==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"UYuO7H7LGLCUYCfSieErMg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"TH3C8rk8ArzuwLoMHM7FpedV9utJZk0CiPtvQQRPCYuQBQpkYRnVxw==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablec65e183a/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A29.0161395Z''\"","PartitionKey":"pkc65e183a","RowKey":"rkc65e183a","Timestamp":"2017-07-15T00:44:29.0161395Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"vP6MfM58h9MYIFjrAry1RQ==","name@odata.type":"Edm.Binary","name":"0VyArBbrL+0u24BnyiAtXw==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"hQUHxljNJRQ6Mjs5eRdnmg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"nlRzUlHNR+1GmBUTPYaAOGIuQu+lkawS37lKCZPfa4Osfm8evVNwzw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"+mqAld+rV+saQ4+dpftsiw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"uVQpwwLW6i9UGgXYxXVCFw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:33 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A34.0545367Z'"] + Date: ['Sat, 15 Jul 2017 00:44:28 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A29.0161395Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b1a3d96a-0002-00f9-2c09-fc9e34000000] + x-ms-request-id: [8928d21e-0002-0044-2a03-fd88b8000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_get_encrypted_dict.yaml b/tests/recordings/test_table_encryption.test_get_encrypted_dict.yaml index 83655ac8..b92cf486 100644 --- a/tests/recordings/test_table_encryption.test_get_encrypted_dict.yaml +++ b/tests/recordings/test_table_encryption.test_get_encrypted_dict.yaml @@ -1,18 +1,18 @@ interactions: - request: body: '{"PartitionKey": "pkabdc128f", "RowKey": "rkabdc128f", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "ApONOWKm3Z9nq3+ExGoqnA==", "sex@odata.type": "Edm.Binary", + "Edm.Int64", "sex": "creHxLmNS9MO9dM6dB4j0A==", "sex@odata.type": "Edm.Binary", "name": "John Doe", "married": true, "deceased": false, "optional": null, "ratio": 3.1, "evenratio": 3.0, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", - "clsid@odata.type": "Edm.Guid", "_ClientEncryptionMetadata2": "aeExEGaN3pLW4mLSSMFryA==", + "clsid@odata.type": "Edm.Guid", "_ClientEncryptionMetadata2": "HI5GrdlVIGAkMSQmjUqbuA==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": - "{\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"MWyQ9sOTCQxvCuL4bwsNzub1BdaPbV5uw/tSO5SEHb/QN9IWqVuh6g==\", + "{\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"23s7NMPPTMklu3dxZ1OrCEJEVjHh1+HqNg6oU9hPmI7EuZv3ZIPfQw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"vzkEx89KF6GOO5kWxl3MYw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"2ijAxuWyDUavwaB3ZLeJfw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -21,9 +21,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9270c618-67fc-11e7-9861-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c233c006-68f6-11e7-a970-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:28 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttableabdc128f @@ -33,13 +33,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttableabdc128f(PartitionKey=''pkabdc128f'',RowKey=''rkabdc128f'')'] - Date: ['Thu, 13 Jul 2017 18:53:33 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A34.5184595Z'"] + Date: ['Sat, 15 Jul 2017 00:44:29 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A29.715185Z'"] Location: ['https://storagename.table.core.windows.net/uttableabdc128f(PartitionKey=''pkabdc128f'',RowKey=''rkabdc128f'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [43245a22-0002-0053-0409-fc48db000000] + x-ms-request-id: [4f249507-0002-002f-6f03-fdd5ee000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -49,28 +49,28 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9288ea70-67fc-11e7-8a34-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c24b06a8-68f6-11e7-8669-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:28 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttableabdc128f(PartitionKey='pkabdc128f',RowKey='rkabdc128f') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableabdc128f/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A34.5184595Z''\"","PartitionKey":"pkabdc128f","RowKey":"rkabdc128f","Timestamp":"2017-07-13T18:53:34.5184595Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"ApONOWKm3Z9nq3+ExGoqnA==","name":"John - Doe","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"aeExEGaN3pLW4mLSSMFryA==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"MWyQ9sOTCQxvCuL4bwsNzub1BdaPbV5uw/tSO5SEHb/QN9IWqVuh6g==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableabdc128f/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A29.715185Z''\"","PartitionKey":"pkabdc128f","RowKey":"rkabdc128f","Timestamp":"2017-07-15T00:44:29.715185Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"creHxLmNS9MO9dM6dB4j0A==","name":"John + Doe","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"HI5GrdlVIGAkMSQmjUqbuA==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"23s7NMPPTMklu3dxZ1OrCEJEVjHh1+HqNg6oU9hPmI7EuZv3ZIPfQw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"vzkEx89KF6GOO5kWxl3MYw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"2ijAxuWyDUavwaB3ZLeJfw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:34 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A34.5184595Z'"] + Date: ['Sat, 15 Jul 2017 00:44:29 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A29.715185Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [43245a38-0002-0053-1709-fc48db000000] + x-ms-request-id: [4f249515-0002-002f-7b03-fdd5ee000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_get_encrypted_entity.yaml b/tests/recordings/test_table_encryption.test_get_encrypted_entity.yaml index cbb37339..f8c12d73 100644 --- a/tests/recordings/test_table_encryption.test_get_encrypted_entity.yaml +++ b/tests/recordings/test_table_encryption.test_get_encrypted_entity.yaml @@ -1,18 +1,18 @@ interactions: - request: body: '{"PartitionKey": "pkd29d1388", "RowKey": "rkd29d1388", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "/YDwzppCzfQP0Aeze3ulVw==", "sex@odata.type": "Edm.Binary", + "Edm.Int64", "sex": "g15dy290r3zlYTRcZiVw9g==", "sex@odata.type": "Edm.Binary", "name": "John Doe", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", - "clsid@odata.type": "Edm.Guid", "_ClientEncryptionMetadata2": "gudEegWb0UoL5NZ6CXEdww==", + "clsid@odata.type": "Edm.Guid", "_ClientEncryptionMetadata2": "XC7xPQoiUgWb7+AUcQJI+w==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": - "{\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"wt2JtihGgPiEF1v1BMmXlzWGIJp9/v3DtqXdAKtL8C/Zeb5YzGzkiw==\", + "{\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"/DNFu+3LSxUIC7vWgBmHWICrWoWCV/Qz77+GCkB0LQId07geuDGjYw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"W0NIM5CVHW/PlbhZC+6pFw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"0GX6S3P609O+F0rN13P9oA==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -21,9 +21,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [92be80a4-67fc-11e7-a5db-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:34 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c27b8ecc-68f6-11e7-a494-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:29 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttabled29d1388 @@ -33,13 +33,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttabled29d1388(PartitionKey=''pkd29d1388'',RowKey=''rkd29d1388'')'] - Date: ['Thu, 13 Jul 2017 18:53:33 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A34.3293639Z'"] + Date: ['Sat, 15 Jul 2017 00:44:29 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A30.0437032Z'"] Location: ['https://storagename.table.core.windows.net/uttabled29d1388(PartitionKey=''pkd29d1388'',RowKey=''rkd29d1388'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [d74a39bd-0002-00d9-3309-fcf2f8000000] + x-ms-request-id: [316e74a5-0002-0055-1303-fdbfa3000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -49,28 +49,28 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [92d28fd8-67fc-11e7-ad17-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c2910234-68f6-11e7-ae61-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:29 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttabled29d1388(PartitionKey='pkd29d1388',RowKey='rkd29d1388') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttabled29d1388/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A34.3293639Z''\"","PartitionKey":"pkd29d1388","RowKey":"rkd29d1388","Timestamp":"2017-07-13T18:53:34.3293639Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"/YDwzppCzfQP0Aeze3ulVw==","name":"John - Doe","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"gudEegWb0UoL5NZ6CXEdww==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"wt2JtihGgPiEF1v1BMmXlzWGIJp9/v3DtqXdAKtL8C/Zeb5YzGzkiw==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttabled29d1388/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A30.0437032Z''\"","PartitionKey":"pkd29d1388","RowKey":"rkd29d1388","Timestamp":"2017-07-15T00:44:30.0437032Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"g15dy290r3zlYTRcZiVw9g==","name":"John + Doe","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"XC7xPQoiUgWb7+AUcQJI+w==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"/DNFu+3LSxUIC7vWgBmHWICrWoWCV/Qz77+GCkB0LQId07geuDGjYw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"W0NIM5CVHW/PlbhZC+6pFw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"0GX6S3P609O+F0rN13P9oA==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:33 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A34.3293639Z'"] + Date: ['Sat, 15 Jul 2017 00:44:29 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A30.0437032Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [d74a39d0-0002-00d9-4109-fcf2f8000000] + x-ms-request-id: [316e74be-0002-0055-2903-fdbfa3000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_get_encrypted_entity_encryption_resolver.yaml b/tests/recordings/test_table_encryption.test_get_encrypted_entity_encryption_resolver.yaml index 0602abac..fe291473 100644 --- a/tests/recordings/test_table_encryption.test_get_encrypted_entity_encryption_resolver.yaml +++ b/tests/recordings/test_table_encryption.test_get_encrypted_entity_encryption_resolver.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pkb1a21c03", "RowKey": "rkb1a21c03", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "aStHOtIWdionCiH5mDK2/w==", "sex@odata.type": "Edm.Binary", - "name": "+/oJ6XMC1vHt1pYXW/wf4w==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "7B0UsWfyPQBeedIAqMYjow==", "sex@odata.type": "Edm.Binary", + "name": "NqGBQyHzqD7p79dtnuvC0Q==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "IPMpX8ho+TwicdmAXOvCxg==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "X9yLfR379b1vP3NT3mrgZA==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"C3fNCQXlwzLg+on5ZEqZC6S1vjHXXMvuaWm5VGDlzPsOBTYiNYUxLQ==\", + \"key1\", \"EncryptedKey\": \"4sGDeEZEfPQyuUVub06fUo9ZqXEzsqk6etzYTKWRDfKNvIcjRel4/Q==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"E3DaRAAo5DKDdL/4QuFrQw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"fjLOS83waMe97P7Dmqfplw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [93040b2e-67fc-11e7-9cf7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c2c60ad8-68f6-11e7-91bf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:29 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttableb1a21c03 @@ -34,13 +34,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttableb1a21c03(PartitionKey=''pkb1a21c03'',RowKey=''rkb1a21c03'')'] - Date: ['Thu, 13 Jul 2017 18:53:34 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A35.0083811Z'"] + Date: ['Sat, 15 Jul 2017 00:44:31 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A31.4242434Z'"] Location: ['https://storagename.table.core.windows.net/uttableb1a21c03(PartitionKey=''pkb1a21c03'',RowKey=''rkb1a21c03'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [26d69a03-0002-00d4-7509-fc1df4000000] + x-ms-request-id: [a647192d-0002-0040-6d03-fd7d3a000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -50,27 +50,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9318d392-67fc-11e7-bec3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c2db99c0-68f6-11e7-8874-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:29 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttableb1a21c03(PartitionKey='pkb1a21c03',RowKey='rkb1a21c03') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableb1a21c03/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A35.0083811Z''\"","PartitionKey":"pkb1a21c03","RowKey":"rkb1a21c03","Timestamp":"2017-07-13T18:53:35.0083811Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"aStHOtIWdionCiH5mDK2/w==","name@odata.type":"Edm.Binary","name":"+/oJ6XMC1vHt1pYXW/wf4w==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"IPMpX8ho+TwicdmAXOvCxg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"C3fNCQXlwzLg+on5ZEqZC6S1vjHXXMvuaWm5VGDlzPsOBTYiNYUxLQ==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableb1a21c03/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A31.4242434Z''\"","PartitionKey":"pkb1a21c03","RowKey":"rkb1a21c03","Timestamp":"2017-07-15T00:44:31.4242434Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"7B0UsWfyPQBeedIAqMYjow==","name@odata.type":"Edm.Binary","name":"NqGBQyHzqD7p79dtnuvC0Q==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"X9yLfR379b1vP3NT3mrgZA==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"4sGDeEZEfPQyuUVub06fUo9ZqXEzsqk6etzYTKWRDfKNvIcjRel4/Q==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"E3DaRAAo5DKDdL/4QuFrQw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"fjLOS83waMe97P7Dmqfplw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:34 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A35.0083811Z'"] + Date: ['Sat, 15 Jul 2017 00:44:31 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A31.4242434Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [26d69a19-0002-00d4-0809-fc1df4000000] + x-ms-request-id: [a647193f-0002-0040-7d03-fd7d3a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -80,27 +80,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [931e5918-67fc-11e7-b1e6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c2e0ca26-68f6-11e7-8053-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:29 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttableb1a21c03(PartitionKey='pkb1a21c03',RowKey='rkb1a21c03') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableb1a21c03/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A35.0083811Z''\"","PartitionKey":"pkb1a21c03","RowKey":"rkb1a21c03","Timestamp":"2017-07-13T18:53:35.0083811Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"aStHOtIWdionCiH5mDK2/w==","name@odata.type":"Edm.Binary","name":"+/oJ6XMC1vHt1pYXW/wf4w==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"IPMpX8ho+TwicdmAXOvCxg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"C3fNCQXlwzLg+on5ZEqZC6S1vjHXXMvuaWm5VGDlzPsOBTYiNYUxLQ==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableb1a21c03/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A31.4242434Z''\"","PartitionKey":"pkb1a21c03","RowKey":"rkb1a21c03","Timestamp":"2017-07-15T00:44:31.4242434Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"7B0UsWfyPQBeedIAqMYjow==","name@odata.type":"Edm.Binary","name":"NqGBQyHzqD7p79dtnuvC0Q==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"X9yLfR379b1vP3NT3mrgZA==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"4sGDeEZEfPQyuUVub06fUo9ZqXEzsqk6etzYTKWRDfKNvIcjRel4/Q==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"E3DaRAAo5DKDdL/4QuFrQw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"fjLOS83waMe97P7Dmqfplw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:34 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A35.0083811Z'"] + Date: ['Sat, 15 Jul 2017 00:44:31 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A31.4242434Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [26d69a2c-0002-00d4-1909-fc1df4000000] + x-ms-request-id: [a6471952-0002-0040-0c03-fd7d3a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_get_encrypted_entity_key_resolver.yaml b/tests/recordings/test_table_encryption.test_get_encrypted_entity_key_resolver.yaml index f5af183b..1094d19c 100644 --- a/tests/recordings/test_table_encryption.test_get_encrypted_entity_key_resolver.yaml +++ b/tests/recordings/test_table_encryption.test_get_encrypted_entity_key_resolver.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pkf6511901", "RowKey": "rkf6511901", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "ZyQzAl2osySg6Xj2LLwFhQ==", "sex@odata.type": "Edm.Binary", - "name": "ZwgSAd/D1V5Uh8FVZht2Kw==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "PyeRbW1G2hM5Wkp9cXD8SA==", "sex@odata.type": "Edm.Binary", + "name": "V+pqyk2bj5BlCovP6ZXIHQ==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "XTl9G6zmPgDhh8OC1hFLjQ==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "dPoUBAaG2ABq76wgi53YTQ==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"bsVpm8Ou0kgFOk7N0O+y6Dv/ZUvrOqEO5zvXXF32eiBD/QdAZV2pHQ==\", + \"key1\", \"EncryptedKey\": \"jEL6NRIbSYiG1ruOz/BNChrDuoET/drQVRVaB3ULGHP9iDYVfhNSbw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"wVmgJcOzEaZ/Ip4idkP3fQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"PsKoQSFwjisL/MJGnnHoxA==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9350b0d2-67fc-11e7-864e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:35 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c310076e-68f6-11e7-aaf6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:30 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablef6511901 @@ -34,13 +34,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablef6511901(PartitionKey=''pkf6511901'',RowKey=''rkf6511901'')'] - Date: ['Thu, 13 Jul 2017 18:53:34 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A35.7535848Z'"] + Date: ['Sat, 15 Jul 2017 00:44:30 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A30.5552456Z'"] Location: ['https://storagename.table.core.windows.net/uttablef6511901(PartitionKey=''pkf6511901'',RowKey=''rkf6511901'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [ad527ba0-0002-002e-2409-fcd413000000] + x-ms-request-id: [83872ad9-0002-011a-0903-fd3dee000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -50,27 +50,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9365a064-67fc-11e7-a08a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c3235814-68f6-11e7-bf0f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:30 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablef6511901(PartitionKey='pkf6511901',RowKey='rkf6511901') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablef6511901/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A35.7535848Z''\"","PartitionKey":"pkf6511901","RowKey":"rkf6511901","Timestamp":"2017-07-13T18:53:35.7535848Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"ZyQzAl2osySg6Xj2LLwFhQ==","name@odata.type":"Edm.Binary","name":"ZwgSAd/D1V5Uh8FVZht2Kw==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"XTl9G6zmPgDhh8OC1hFLjQ==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"bsVpm8Ou0kgFOk7N0O+y6Dv/ZUvrOqEO5zvXXF32eiBD/QdAZV2pHQ==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablef6511901/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A30.5552456Z''\"","PartitionKey":"pkf6511901","RowKey":"rkf6511901","Timestamp":"2017-07-15T00:44:30.5552456Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"PyeRbW1G2hM5Wkp9cXD8SA==","name@odata.type":"Edm.Binary","name":"V+pqyk2bj5BlCovP6ZXIHQ==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"dPoUBAaG2ABq76wgi53YTQ==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"jEL6NRIbSYiG1ruOz/BNChrDuoET/drQVRVaB3ULGHP9iDYVfhNSbw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"wVmgJcOzEaZ/Ip4idkP3fQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"PsKoQSFwjisL/MJGnnHoxA==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:34 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A35.7535848Z'"] + Date: ['Sat, 15 Jul 2017 00:44:30 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A30.5552456Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [ad527bb2-0002-002e-3309-fcd413000000] + x-ms-request-id: [83872af9-0002-011a-2703-fd3dee000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_get_encrypted_entity_properties_and_resolver.yaml b/tests/recordings/test_table_encryption.test_get_encrypted_entity_properties_and_resolver.yaml index 13380407..5e909402 100644 --- a/tests/recordings/test_table_encryption.test_get_encrypted_entity_properties_and_resolver.yaml +++ b/tests/recordings/test_table_encryption.test_get_encrypted_entity_properties_and_resolver.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pk24fb1d97", "RowKey": "rk24fb1d97", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "Lrq1Jdopq34vJFcmtTjHXg==", "sex@odata.type": "Edm.Binary", - "name": "IHV282Xrt2763GN7JQIEHg==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "VBXD0fMcwqruUi1//TVlkA==", "sex@odata.type": "Edm.Binary", + "name": "GuS6Z+EVJtsdlGENPYwSxg==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "WURh5vucVXFkaoL0sIN38Q==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "7vOV+G3xkBh+AHp5njHRlg==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"QDgAOm85evQ7XTz9E5RTejp3Gh+dhriJpn7jNKhXtXuU5lr39NaxnQ==\", + \"key1\", \"EncryptedKey\": \"VezVugu8u2BWQBkzphP7WLkuMhuQ2TG+bK62nCnbWalBjWgslSkm4g==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"BM3sipxCoZ0ejH9JAsUgUQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"3BuRLuNLUk6a2a+n+JAICQ==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [93a11838-67fc-11e7-895b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c353af9e-68f6-11e7-8cdb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:30 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable24fb1d97 @@ -34,13 +34,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable24fb1d97(PartitionKey=''pk24fb1d97'',RowKey=''rk24fb1d97'')'] - Date: ['Thu, 13 Jul 2017 18:53:35 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A36.1632941Z'"] + Date: ['Sat, 15 Jul 2017 00:44:30 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A30.9883897Z'"] Location: ['https://storagename.table.core.windows.net/uttable24fb1d97(PartitionKey=''pk24fb1d97'',RowKey=''rk24fb1d97'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [375ed67a-0002-0050-2909-fc4bdc000000] + x-ms-request-id: [6942d0a4-0002-0118-3303-fd3f14000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -50,27 +50,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [93b85bd8-67fc-11e7-94b8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c3688c90-68f6-11e7-a4b9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:30 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable24fb1d97(PartitionKey='pk24fb1d97',RowKey='rk24fb1d97') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable24fb1d97/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A36.1632941Z''\"","PartitionKey":"pk24fb1d97","RowKey":"rk24fb1d97","Timestamp":"2017-07-13T18:53:36.1632941Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"Lrq1Jdopq34vJFcmtTjHXg==","name@odata.type":"Edm.Binary","name":"IHV282Xrt2763GN7JQIEHg==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"WURh5vucVXFkaoL0sIN38Q==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"QDgAOm85evQ7XTz9E5RTejp3Gh+dhriJpn7jNKhXtXuU5lr39NaxnQ==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable24fb1d97/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A30.9883897Z''\"","PartitionKey":"pk24fb1d97","RowKey":"rk24fb1d97","Timestamp":"2017-07-15T00:44:30.9883897Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"VBXD0fMcwqruUi1//TVlkA==","name@odata.type":"Edm.Binary","name":"GuS6Z+EVJtsdlGENPYwSxg==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"7vOV+G3xkBh+AHp5njHRlg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"VezVugu8u2BWQBkzphP7WLkuMhuQ2TG+bK62nCnbWalBjWgslSkm4g==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"BM3sipxCoZ0ejH9JAsUgUQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"3BuRLuNLUk6a2a+n+JAICQ==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:36 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A36.1632941Z'"] + Date: ['Sat, 15 Jul 2017 00:44:30 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A30.9883897Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [375ed67e-0002-0050-2b09-fc4bdc000000] + x-ms-request-id: [6942d0ab-0002-0118-3803-fd3f14000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_get_entity_invalid_value_kek_unwrap.yaml b/tests/recordings/test_table_encryption.test_get_entity_invalid_value_kek_unwrap.yaml index bd389a6e..69f16843 100644 --- a/tests/recordings/test_table_encryption.test_get_entity_invalid_value_kek_unwrap.yaml +++ b/tests/recordings/test_table_encryption.test_get_entity_invalid_value_kek_unwrap.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pk284b19b3", "RowKey": "rk284b19b3", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "BAHIns9wYyEbxQ3MJha+KA==", "sex@odata.type": "Edm.Binary", - "name": "qrpFDrowirNNyM/UagG2GA==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "BHTt5K/JKMVPN9a1tRZ4Vg==", "sex@odata.type": "Edm.Binary", + "name": "ZzNLBRrWEw/YXY/gfeBQyQ==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "ROhB5n9LyJY8mzmWgyJeSw==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "HXye9hbCOcx4drtYQisT8A==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"vSnbkxwd/IqQYxVacHEkeitLgt/K41g9AULLN+awROUzafPBMIgyPA==\", + \"key1\", \"EncryptedKey\": \"6YzoSLJLFziva4iXCpqtggglVBFeMJes4cGxVGMO2dRhpVvYA9V6Bw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"CPW+2QualeY01ahsaWxqAA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"6YWVTXBW+l95Bl1IQnkO3w==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [93e7fd7a-67fc-11e7-8613-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c39c0168-68f6-11e7-a825-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:31 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable284b19b3 @@ -34,13 +34,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable284b19b3(PartitionKey=''pk284b19b3'',RowKey=''rk284b19b3'')'] - Date: ['Thu, 13 Jul 2017 18:53:36 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A37.0761705Z'"] + Date: ['Sat, 15 Jul 2017 00:44:31 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A32.0839036Z'"] Location: ['https://storagename.table.core.windows.net/uttable284b19b3(PartitionKey=''pk284b19b3'',RowKey=''rk284b19b3'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [cabe63c0-0002-005e-0a09-fca7d7000000] + x-ms-request-id: [e046697f-0002-00ef-8003-fd5faa000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -50,27 +50,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [93fce348-67fc-11e7-adaa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c3b18a1c-68f6-11e7-a8bc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:31 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable284b19b3(PartitionKey='pk284b19b3',RowKey='rk284b19b3') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable284b19b3/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A37.0761705Z''\"","PartitionKey":"pk284b19b3","RowKey":"rk284b19b3","Timestamp":"2017-07-13T18:53:37.0761705Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"BAHIns9wYyEbxQ3MJha+KA==","name@odata.type":"Edm.Binary","name":"qrpFDrowirNNyM/UagG2GA==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"ROhB5n9LyJY8mzmWgyJeSw==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"vSnbkxwd/IqQYxVacHEkeitLgt/K41g9AULLN+awROUzafPBMIgyPA==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable284b19b3/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A32.0839036Z''\"","PartitionKey":"pk284b19b3","RowKey":"rk284b19b3","Timestamp":"2017-07-15T00:44:32.0839036Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"BHTt5K/JKMVPN9a1tRZ4Vg==","name@odata.type":"Edm.Binary","name":"ZzNLBRrWEw/YXY/gfeBQyQ==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"HXye9hbCOcx4drtYQisT8A==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"6YzoSLJLFziva4iXCpqtggglVBFeMJes4cGxVGMO2dRhpVvYA9V6Bw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"CPW+2QualeY01ahsaWxqAA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"6YWVTXBW+l95Bl1IQnkO3w==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:36 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A37.0761705Z'"] + Date: ['Sat, 15 Jul 2017 00:44:31 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A32.0839036Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [cabe63d1-0002-005e-1909-fca7d7000000] + x-ms-request-id: [e046698c-0002-00ef-0b03-fd5faa000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -80,27 +80,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [94020ae4-67fc-11e7-85e0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c3b6a7f4-68f6-11e7-9c69-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:31 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable284b19b3(PartitionKey='pk284b19b3',RowKey='rk284b19b3') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable284b19b3/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A37.0761705Z''\"","PartitionKey":"pk284b19b3","RowKey":"rk284b19b3","Timestamp":"2017-07-13T18:53:37.0761705Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"BAHIns9wYyEbxQ3MJha+KA==","name@odata.type":"Edm.Binary","name":"qrpFDrowirNNyM/UagG2GA==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"ROhB5n9LyJY8mzmWgyJeSw==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"vSnbkxwd/IqQYxVacHEkeitLgt/K41g9AULLN+awROUzafPBMIgyPA==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable284b19b3/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A32.0839036Z''\"","PartitionKey":"pk284b19b3","RowKey":"rk284b19b3","Timestamp":"2017-07-15T00:44:32.0839036Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"BHTt5K/JKMVPN9a1tRZ4Vg==","name@odata.type":"Edm.Binary","name":"ZzNLBRrWEw/YXY/gfeBQyQ==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"HXye9hbCOcx4drtYQisT8A==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"6YzoSLJLFziva4iXCpqtggglVBFeMJes4cGxVGMO2dRhpVvYA9V6Bw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"CPW+2QualeY01ahsaWxqAA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"6YWVTXBW+l95Bl1IQnkO3w==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:36 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A37.0761705Z'"] + Date: ['Sat, 15 Jul 2017 00:44:31 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A32.0839036Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [cabe63d9-0002-005e-2109-fca7d7000000] + x-ms-request-id: [e0466998-0002-00ef-1703-fd5faa000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_get_entity_missing_attribute_kek_unwrap.yaml b/tests/recordings/test_table_encryption.test_get_entity_missing_attribute_kek_unwrap.yaml index 4b1ac008..a56c139e 100644 --- a/tests/recordings/test_table_encryption.test_get_entity_missing_attribute_kek_unwrap.yaml +++ b/tests/recordings/test_table_encryption.test_get_entity_missing_attribute_kek_unwrap.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pk95af1b7d", "RowKey": "rk95af1b7d", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "gDRlcXIsk/tGmLmews6XZw==", "sex@odata.type": "Edm.Binary", - "name": "j7JA35oiM6OnGRowJj0MUQ==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "hAXId1LrV4izA5VQxq48vQ==", "sex@odata.type": "Edm.Binary", + "name": "t0rC9xS6QkRRlw+VwNi9Dg==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "qxVHZoSxt2uQEQ+kKpxzog==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "awpmR6zjj7h3Wy6jsZGcRA==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"1byRzo/TNxrBp+Gh3Rn3TsjBS2DyACiFViErmOJQiog7QQd8mVR75g==\", + \"key1\", \"EncryptedKey\": \"uhigncqhT0pHGWmWOHAROOFeHcALejFYtfOK19r7EecNCZ3XOZAIKg==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"TWMAXe5xzNlFMZBNoWnJww==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"aRZt34/OpIpOwffRaoDnVQ==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9471d8f6-67fc-11e7-bcf1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c418b8e2-68f6-11e7-93da-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:31 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable95af1b7d @@ -34,13 +34,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable95af1b7d(PartitionKey=''pk95af1b7d'',RowKey=''rk95af1b7d'')'] - Date: ['Thu, 13 Jul 2017 18:53:37 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A37.8717188Z'"] + Date: ['Sat, 15 Jul 2017 00:44:31 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A32.7463502Z'"] Location: ['https://storagename.table.core.windows.net/uttable95af1b7d(PartitionKey=''pk95af1b7d'',RowKey=''rk95af1b7d'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [34d23c45-0002-0137-3509-fcbe2e000000] + x-ms-request-id: [ab40e882-0002-002b-2103-fd206c000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -50,27 +50,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [94866f6e-67fc-11e7-848c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c430a464-68f6-11e7-a05b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:32 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable95af1b7d(PartitionKey='pk95af1b7d',RowKey='rk95af1b7d') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable95af1b7d/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A37.8717188Z''\"","PartitionKey":"pk95af1b7d","RowKey":"rk95af1b7d","Timestamp":"2017-07-13T18:53:37.8717188Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"gDRlcXIsk/tGmLmews6XZw==","name@odata.type":"Edm.Binary","name":"j7JA35oiM6OnGRowJj0MUQ==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"qxVHZoSxt2uQEQ+kKpxzog==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"1byRzo/TNxrBp+Gh3Rn3TsjBS2DyACiFViErmOJQiog7QQd8mVR75g==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable95af1b7d/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A32.7463502Z''\"","PartitionKey":"pk95af1b7d","RowKey":"rk95af1b7d","Timestamp":"2017-07-15T00:44:32.7463502Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"hAXId1LrV4izA5VQxq48vQ==","name@odata.type":"Edm.Binary","name":"t0rC9xS6QkRRlw+VwNi9Dg==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"awpmR6zjj7h3Wy6jsZGcRA==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"uhigncqhT0pHGWmWOHAROOFeHcALejFYtfOK19r7EecNCZ3XOZAIKg==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"TWMAXe5xzNlFMZBNoWnJww==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"aRZt34/OpIpOwffRaoDnVQ==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:37 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A37.8717188Z'"] + Date: ['Sat, 15 Jul 2017 00:44:31 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A32.7463502Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [34d23c4d-0002-0137-3b09-fcbe2e000000] + x-ms-request-id: [ab40e893-0002-002b-3003-fd206c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -80,27 +80,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [948bb968-67fc-11e7-b8f7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c4362150-68f6-11e7-a5f1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:32 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable95af1b7d(PartitionKey='pk95af1b7d',RowKey='rk95af1b7d') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable95af1b7d/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A37.8717188Z''\"","PartitionKey":"pk95af1b7d","RowKey":"rk95af1b7d","Timestamp":"2017-07-13T18:53:37.8717188Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"gDRlcXIsk/tGmLmews6XZw==","name@odata.type":"Edm.Binary","name":"j7JA35oiM6OnGRowJj0MUQ==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"qxVHZoSxt2uQEQ+kKpxzog==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"1byRzo/TNxrBp+Gh3Rn3TsjBS2DyACiFViErmOJQiog7QQd8mVR75g==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable95af1b7d/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A32.7463502Z''\"","PartitionKey":"pk95af1b7d","RowKey":"rk95af1b7d","Timestamp":"2017-07-15T00:44:32.7463502Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"hAXId1LrV4izA5VQxq48vQ==","name@odata.type":"Edm.Binary","name":"t0rC9xS6QkRRlw+VwNi9Dg==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"awpmR6zjj7h3Wy6jsZGcRA==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"uhigncqhT0pHGWmWOHAROOFeHcALejFYtfOK19r7EecNCZ3XOZAIKg==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"TWMAXe5xzNlFMZBNoWnJww==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"aRZt34/OpIpOwffRaoDnVQ==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:37 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A37.8717188Z'"] + Date: ['Sat, 15 Jul 2017 00:44:32 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A32.7463502Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [34d23c53-0002-0137-4109-fcbe2e000000] + x-ms-request-id: [ab40e89e-0002-002b-3b03-fd206c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_get_entity_no_decryption.yaml b/tests/recordings/test_table_encryption.test_get_entity_no_decryption.yaml index ea72f27f..80dcce62 100644 --- a/tests/recordings/test_table_encryption.test_get_entity_no_decryption.yaml +++ b/tests/recordings/test_table_encryption.test_get_entity_no_decryption.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pk25131537", "RowKey": "rk25131537", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "A4d0e1J++9s9+LSXUu6zkA==", "sex@odata.type": "Edm.Binary", - "name": "bRRoJUxG0rbqdLNqRO9iwQ==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "Y2BIhdRNm5vaI9vQI02HJQ==", "sex@odata.type": "Edm.Binary", + "name": "Wcbt73BWqqjZNPbzHZUzhQ==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "yw5XBkVp5nXeL+Io7kJ7AQ==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "X4y2ZX5BENLRK+wHS4C5tA==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"qzvflqcNQZc0v6/T/0yxy0sApDD73EAYjIiQ9DFkw1E7pE6Uumkfrg==\", + \"key1\", \"EncryptedKey\": \"AqtGg8TVkEaMY6sF3xtnkhDtaxvSLl/VRvnUPYDDVtyMnRVxJ+By6A==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"hkmsRwMXbMLr+679TP2yIg==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"l7KpSwm1UjC1tHv4Ilzd8A==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [94bdb80c-67fc-11e7-9777-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c4db215a-68f6-11e7-946d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:33 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable25131537 @@ -34,13 +34,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable25131537(PartitionKey=''pk25131537'',RowKey=''rk25131537'')'] - Date: ['Thu, 13 Jul 2017 18:53:37 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A38.5415024Z'"] + Date: ['Sat, 15 Jul 2017 00:44:34 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A34.2121672Z'"] Location: ['https://storagename.table.core.windows.net/uttable25131537(PartitionKey=''pk25131537'',RowKey=''rk25131537'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [10a39086-0002-0055-0909-fcbfa3000000] + x-ms-request-id: [58169bf8-0002-00a1-2b03-fd9a4f000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -50,27 +50,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [94d2121e-67fc-11e7-95db-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c4ef4e82-68f6-11e7-888f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:33 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable25131537(PartitionKey='pk25131537',RowKey='rk25131537') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable25131537/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A38.5415024Z''\"","PartitionKey":"pk25131537","RowKey":"rk25131537","Timestamp":"2017-07-13T18:53:38.5415024Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"A4d0e1J++9s9+LSXUu6zkA==","name@odata.type":"Edm.Binary","name":"bRRoJUxG0rbqdLNqRO9iwQ==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"yw5XBkVp5nXeL+Io7kJ7AQ==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"qzvflqcNQZc0v6/T/0yxy0sApDD73EAYjIiQ9DFkw1E7pE6Uumkfrg==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable25131537/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A34.2121672Z''\"","PartitionKey":"pk25131537","RowKey":"rk25131537","Timestamp":"2017-07-15T00:44:34.2121672Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"Y2BIhdRNm5vaI9vQI02HJQ==","name@odata.type":"Edm.Binary","name":"Wcbt73BWqqjZNPbzHZUzhQ==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"X4y2ZX5BENLRK+wHS4C5tA==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"AqtGg8TVkEaMY6sF3xtnkhDtaxvSLl/VRvnUPYDDVtyMnRVxJ+By6A==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"hkmsRwMXbMLr+679TP2yIg==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"l7KpSwm1UjC1tHv4Ilzd8A==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:37 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A38.5415024Z'"] + Date: ['Sat, 15 Jul 2017 00:44:34 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A34.2121672Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [10a39091-0002-0055-1009-fcbfa3000000] + x-ms-request-id: [58169c03-0002-00a1-3403-fd9a4f000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_get_entity_nonmatching_kid.yaml b/tests/recordings/test_table_encryption.test_get_entity_nonmatching_kid.yaml index 5c2be4da..ece909f1 100644 --- a/tests/recordings/test_table_encryption.test_get_entity_nonmatching_kid.yaml +++ b/tests/recordings/test_table_encryption.test_get_entity_nonmatching_kid.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pk50ad15e7", "RowKey": "rk50ad15e7", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "+yLlCQ3Wvd+2WXpyoMKowg==", "sex@odata.type": "Edm.Binary", - "name": "NrIYT3SE/AWQjvVwOivFYA==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "avevhAVcwXvz7DK9euWKXA==", "sex@odata.type": "Edm.Binary", + "name": "jyfplD4rAPWatIDfst99TA==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "Rx88GxMAwrLBK5ve5Af0kA==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "FXx0ZKS2Bs9iMBVkvJ4CRQ==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"f7U5RxFMmiiQuq0vzuwPmDLBcISyEC5Vcx74TCtkkntaIZTFAeLy9w==\", + \"key1\", \"EncryptedKey\": \"GhpcjzPgY/IAx0vPmXahx6raIq0tUIF7nAdzwoKMVaplbNGNOlelXg==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"hq9pm/W1BMEsXnds4yCAzg==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"tI97DKOeiDOp/dXZiSY0HA==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [95015652-67fc-11e7-9861-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c521bbf6-68f6-11e7-b2d7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:33 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable50ad15e7 @@ -34,13 +34,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable50ad15e7(PartitionKey=''pk50ad15e7'',RowKey=''rk50ad15e7'')'] - Date: ['Thu, 13 Jul 2017 18:53:36 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A37.6753964Z'"] + Date: ['Sat, 15 Jul 2017 00:44:34 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A34.9218461Z'"] Location: ['https://storagename.table.core.windows.net/uttable50ad15e7(PartitionKey=''pk50ad15e7'',RowKey=''rk50ad15e7'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [323c7b19-0002-008b-7009-fcef0a000000] + x-ms-request-id: [88182e10-0002-0000-2a03-fd54d4000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -50,27 +50,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9515549a-67fc-11e7-a960-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:38 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c536ecc6-68f6-11e7-ba92-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:33 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable50ad15e7(PartitionKey='pk50ad15e7',RowKey='rk50ad15e7') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable50ad15e7/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A37.6753964Z''\"","PartitionKey":"pk50ad15e7","RowKey":"rk50ad15e7","Timestamp":"2017-07-13T18:53:37.6753964Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"+yLlCQ3Wvd+2WXpyoMKowg==","name@odata.type":"Edm.Binary","name":"NrIYT3SE/AWQjvVwOivFYA==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"Rx88GxMAwrLBK5ve5Af0kA==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"f7U5RxFMmiiQuq0vzuwPmDLBcISyEC5Vcx74TCtkkntaIZTFAeLy9w==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable50ad15e7/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A34.9218461Z''\"","PartitionKey":"pk50ad15e7","RowKey":"rk50ad15e7","Timestamp":"2017-07-15T00:44:34.9218461Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"avevhAVcwXvz7DK9euWKXA==","name@odata.type":"Edm.Binary","name":"jyfplD4rAPWatIDfst99TA==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"FXx0ZKS2Bs9iMBVkvJ4CRQ==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"GhpcjzPgY/IAx0vPmXahx6raIq0tUIF7nAdzwoKMVaplbNGNOlelXg==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"hq9pm/W1BMEsXnds4yCAzg==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"tI97DKOeiDOp/dXZiSY0HA==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:36 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A37.6753964Z'"] + Date: ['Sat, 15 Jul 2017 00:44:34 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A34.9218461Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [323c7b2d-0002-008b-8009-fcef0a000000] + x-ms-request-id: [88182e1c-0002-0000-3403-fd54d4000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_get_payload_formats.yaml b/tests/recordings/test_table_encryption.test_get_payload_formats.yaml index 47175c3f..55d2b616 100644 --- a/tests/recordings/test_table_encryption.test_get_payload_formats.yaml +++ b/tests/recordings/test_table_encryption.test_get_payload_formats.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pkbe9d1303", "RowKey": "rkbe9d1303fullmetadata", "age": - "39", "age@odata.type": "Edm.Int64", "sex": "EsFybnB5+zCnfVU3lvy8xw==", "sex@odata.type": - "Edm.Binary", "name": "FYvcpD7miJ2OWizhad8Z+Q==", "name@odata.type": "Edm.Binary", + "39", "age@odata.type": "Edm.Int64", "sex": "6xOHel0pcmKDV8RNzbdANw==", "sex@odata.type": + "Edm.Binary", "name": "TWE0CFbl3RsarPfvdrI0aw==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "zAj3EHDjDIXQzAW5McuXmQ==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "Iv9gJYvF+/cFxSEFs1B/3w==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"5+chcxvwWAmU3b1SwuhFgk4HkD3g/zgm3ypUeksFWTr8yfSD39eZ6A==\", + \"key1\", \"EncryptedKey\": \"qqqOSNxQhYsUX68nNLsEspP0utUEY9K2fkMJfb+vAuM78QVgQ9g3/Q==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"jxIYP7ct7vBKYHJnqAGXvQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"n08SUg8CR9n6+/l80HOWhw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9546f4e6-67fc-11e7-8792-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c5962868-68f6-11e7-9c40-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:34 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablebe9d1303 @@ -34,13 +34,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablebe9d1303(PartitionKey=''pkbe9d1303'',RowKey=''rkbe9d1303fullmetadata'')'] - Date: ['Thu, 13 Jul 2017 18:53:38 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A38.8177394Z'"] + Date: ['Sat, 15 Jul 2017 00:44:35 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A35.313905Z'"] Location: ['https://storagename.table.core.windows.net/uttablebe9d1303(PartitionKey=''pkbe9d1303'',RowKey=''rkbe9d1303fullmetadata'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [e031cce3-0002-00ea-1209-fcabd5000000] + x-ms-request-id: [d6618a65-0002-0062-1a03-fd130c000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -50,44 +50,44 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [955b9400-67fc-11e7-b0d4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c5abf226-68f6-11e7-b566-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:34 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablebe9d1303(PartitionKey='pkbe9d1303',RowKey='rkbe9d1303fullmetadata') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablebe9d1303/@Element","odata.type":"storagename.uttablebe9d1303","odata.id":"https://storagename.table.core.windows.net/uttablebe9d1303(PartitionKey=''pkbe9d1303'',RowKey=''rkbe9d1303fullmetadata'')","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A38.8177394Z''\"","odata.editLink":"uttablebe9d1303(PartitionKey=''pkbe9d1303'',RowKey=''rkbe9d1303fullmetadata'')","PartitionKey":"pkbe9d1303","RowKey":"rkbe9d1303fullmetadata","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2017-07-13T18:53:38.8177394Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"EsFybnB5+zCnfVU3lvy8xw==","name@odata.type":"Edm.Binary","name":"FYvcpD7miJ2OWizhad8Z+Q==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"zAj3EHDjDIXQzAW5McuXmQ==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"5+chcxvwWAmU3b1SwuhFgk4HkD3g/zgm3ypUeksFWTr8yfSD39eZ6A==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablebe9d1303/@Element","odata.type":"storagename.uttablebe9d1303","odata.id":"https://storagename.table.core.windows.net/uttablebe9d1303(PartitionKey=''pkbe9d1303'',RowKey=''rkbe9d1303fullmetadata'')","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A35.313905Z''\"","odata.editLink":"uttablebe9d1303(PartitionKey=''pkbe9d1303'',RowKey=''rkbe9d1303fullmetadata'')","PartitionKey":"pkbe9d1303","RowKey":"rkbe9d1303fullmetadata","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2017-07-15T00:44:35.313905Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"6xOHel0pcmKDV8RNzbdANw==","name@odata.type":"Edm.Binary","name":"TWE0CFbl3RsarPfvdrI0aw==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"Iv9gJYvF+/cFxSEFs1B/3w==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"qqqOSNxQhYsUX68nNLsEspP0utUEY9K2fkMJfb+vAuM78QVgQ9g3/Q==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"jxIYP7ct7vBKYHJnqAGXvQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"n08SUg8CR9n6+/l80HOWhw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=fullmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:38 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A38.8177394Z'"] + Date: ['Sat, 15 Jul 2017 00:44:35 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A35.313905Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [e031cd1c-0002-00ea-4609-fcabd5000000] + x-ms-request-id: [d6618a7b-0002-0062-2e03-fd130c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: '{"PartitionKey": "pkbe9d1303", "RowKey": "rkbe9d1303minimalmetadata", "age": - "39", "age@odata.type": "Edm.Int64", "sex": "bJzjj1+pW1QqRhIbgF7hVA==", "sex@odata.type": - "Edm.Binary", "name": "GJtaY9UrpuvEN+Et2fx0hQ==", "name@odata.type": "Edm.Binary", + "39", "age@odata.type": "Edm.Int64", "sex": "OaHZHdi0hhtM6aSlAGgMZQ==", "sex@odata.type": + "Edm.Binary", "name": "yubgTUBtu0QEYu7PT22WyQ==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "mbe6Ac5FDVQCf7MKssdyVg==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "a+biN6FrMyciJm+QrRscog==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"pQ3F0p0CieFOh/ze05JQj2ESE5WqeFotA/xBGxXgcSJrMoL6lH9fcA==\", + \"key1\", \"EncryptedKey\": \"8LL7ntvzi2GHOVfW7PviLYkgcn8YS3PHTc0/5MQo5mdIgcnPFL2Lmw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"6JzrMqjlfzNRKj+n+1qMJQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"FzvOVV/Bw43SIjxalCoNaA==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -96,9 +96,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [956c08c6-67fc-11e7-b037-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c5bd4d64-68f6-11e7-b95b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:34 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablebe9d1303 @@ -108,13 +108,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablebe9d1303(PartitionKey=''pkbe9d1303'',RowKey=''rkbe9d1303minimalmetadata'')'] - Date: ['Thu, 13 Jul 2017 18:53:38 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A38.9598404Z'"] + Date: ['Sat, 15 Jul 2017 00:44:35 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A35.4720202Z'"] Location: ['https://storagename.table.core.windows.net/uttablebe9d1303(PartitionKey=''pkbe9d1303'',RowKey=''rkbe9d1303minimalmetadata'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [e031cd2c-0002-00ea-5609-fcabd5000000] + x-ms-request-id: [d6618a83-0002-0062-3603-fd130c000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -124,44 +124,44 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [95715718-67fc-11e7-b821-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c5c34dae-68f6-11e7-9ceb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:34 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablebe9d1303(PartitionKey='pkbe9d1303',RowKey='rkbe9d1303minimalmetadata') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablebe9d1303/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A38.9598404Z''\"","PartitionKey":"pkbe9d1303","RowKey":"rkbe9d1303minimalmetadata","Timestamp":"2017-07-13T18:53:38.9598404Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"bJzjj1+pW1QqRhIbgF7hVA==","name@odata.type":"Edm.Binary","name":"GJtaY9UrpuvEN+Et2fx0hQ==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"mbe6Ac5FDVQCf7MKssdyVg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"pQ3F0p0CieFOh/ze05JQj2ESE5WqeFotA/xBGxXgcSJrMoL6lH9fcA==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablebe9d1303/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A35.4720202Z''\"","PartitionKey":"pkbe9d1303","RowKey":"rkbe9d1303minimalmetadata","Timestamp":"2017-07-15T00:44:35.4720202Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"OaHZHdi0hhtM6aSlAGgMZQ==","name@odata.type":"Edm.Binary","name":"yubgTUBtu0QEYu7PT22WyQ==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"a+biN6FrMyciJm+QrRscog==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"8LL7ntvzi2GHOVfW7PviLYkgcn8YS3PHTc0/5MQo5mdIgcnPFL2Lmw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"6JzrMqjlfzNRKj+n+1qMJQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"FzvOVV/Bw43SIjxalCoNaA==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:38 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A38.9598404Z'"] + Date: ['Sat, 15 Jul 2017 00:44:35 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A35.4720202Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [e031cd3d-0002-00ea-6709-fcabd5000000] + x-ms-request-id: [d6618a87-0002-0062-3a03-fd130c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: '{"PartitionKey": "pkbe9d1303", "RowKey": "rkbe9d1303nometadata", "age": - "39", "age@odata.type": "Edm.Int64", "sex": "Do1REkGasH9cYfHX3+r3gg==", "sex@odata.type": - "Edm.Binary", "name": "aDk2kMi7BIKooFFMnvm3xg==", "name@odata.type": "Edm.Binary", + "39", "age@odata.type": "Edm.Int64", "sex": "/Axej1eHizTZ8bfCGXsHAw==", "sex@odata.type": + "Edm.Binary", "name": "XOiTnYlYuHCancpzCMpFJA==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "Myhu8up0rj5//lS/XHk6oQ==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "kZmAsjY9otX5AxF2uPTH1A==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"fhk9OpxGaWOKCOEqzU2cefjiLuqr3MQVCnnqN6Zwl/+bKqoQXb54ig==\", + \"key1\", \"EncryptedKey\": \"xwwdluO9kaeTUBW3ma6r8JNlAqtPoPjnqwfsM5sCsXW5L1Ibg7wiig==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"i70YNoRDRi2YKtumpriRxA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"uuspCIpiT4wXt0nO3OW/Ow==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -170,9 +170,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [95774754-67fc-11e7-a6b0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c5c8da3a-68f6-11e7-a7d7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:34 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablebe9d1303 @@ -182,13 +182,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablebe9d1303(PartitionKey=''pkbe9d1303'',RowKey=''rkbe9d1303nometadata'')'] - Date: ['Thu, 13 Jul 2017 18:53:38 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A39.033893Z'"] + Date: ['Sat, 15 Jul 2017 00:44:35 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A35.5470751Z'"] Location: ['https://storagename.table.core.windows.net/uttablebe9d1303(PartitionKey=''pkbe9d1303'',RowKey=''rkbe9d1303nometadata'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [e031cd59-0002-00ea-0109-fcabd5000000] + x-ms-request-id: [d6618a8d-0002-0062-3e03-fd130c000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -198,27 +198,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [957ca974-67fc-11e7-a543-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c5cf6c68-68f6-11e7-a481-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:34 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablebe9d1303(PartitionKey='pkbe9d1303',RowKey='rkbe9d1303nometadata') response: - body: {string: '{"PartitionKey":"pkbe9d1303","RowKey":"rkbe9d1303nometadata","Timestamp":"2017-07-13T18:53:39.033893Z","age":"39","sex":"Do1REkGasH9cYfHX3+r3gg==","name":"aDk2kMi7BIKooFFMnvm3xg==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large":"933311100","Birthday":"1973-10-04T00:00:00Z","birthday":"1970-10-04T00:00:00Z","binary":"YmluYXJ5","other":20,"clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2":"Myhu8up0rj5//lS/XHk6oQ==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"fhk9OpxGaWOKCOEqzU2cefjiLuqr3MQVCnnqN6Zwl/+bKqoQXb54ig==\", + body: {string: '{"PartitionKey":"pkbe9d1303","RowKey":"rkbe9d1303nometadata","Timestamp":"2017-07-15T00:44:35.5470751Z","age":"39","sex":"/Axej1eHizTZ8bfCGXsHAw==","name":"XOiTnYlYuHCancpzCMpFJA==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large":"933311100","Birthday":"1973-10-04T00:00:00Z","birthday":"1970-10-04T00:00:00Z","binary":"YmluYXJ5","other":20,"clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2":"kZmAsjY9otX5AxF2uPTH1A==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"xwwdluO9kaeTUBW3ma6r8JNlAqtPoPjnqwfsM5sCsXW5L1Ibg7wiig==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"i70YNoRDRi2YKtumpriRxA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"uuspCIpiT4wXt0nO3OW/Ow==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:38 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A39.033893Z'"] + Date: ['Sat, 15 Jul 2017 00:44:35 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A35.5470751Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [e031cd74-0002-00ea-1b09-fcabd5000000] + x-ms-request-id: [d6618a95-0002-0062-4503-fd130c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_get_strict_mode_no_key.yaml b/tests/recordings/test_table_encryption.test_get_strict_mode_no_key.yaml index 15aa38ea..b1f6b75a 100644 --- a/tests/recordings/test_table_encryption.test_get_strict_mode_no_key.yaml +++ b/tests/recordings/test_table_encryption.test_get_strict_mode_no_key.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pkfac5143f", "RowKey": "rkfac5143f", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "5iKbUGsA3ojM9jtQ81Bgmg==", "sex@odata.type": "Edm.Binary", - "name": "gnGwE4QAd5Qm12div6mUnw==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "CjpJL6efCoyqp67RNeIthQ==", "sex@odata.type": "Edm.Binary", + "name": "wYLKUCFIFtMOr9BtLu8jQQ==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "CMIR/SCTcCh4o9qrIyZpgg==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "U/BM9dMvQjEtlb0VEVXs5A==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"JbtHntFV87/C8JsWC4eyj1Fd2AvGqZezjrjNA0O91Wopj8prl39KPw==\", + \"key1\", \"EncryptedKey\": \"TyCjmhAMEFUWKG9NCDSSe3w/e4j0XnalGrys2FcYyheh3bx1kIKpvQ==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"LKb3k4LkOEcdoc2Cl4Mpsg==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"gWDvdUBSiiU96XSxRpClqw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [95b18e0a-67fc-11e7-b91b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:39 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c603b9a2-68f6-11e7-9a97-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:35 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablefac5143f @@ -34,13 +34,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablefac5143f(PartitionKey=''pkfac5143f'',RowKey=''rkfac5143f'')'] - Date: ['Thu, 13 Jul 2017 18:53:40 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A40.220364Z'"] + Date: ['Sat, 15 Jul 2017 00:44:35 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A36.0247148Z'"] Location: ['https://storagename.table.core.windows.net/uttablefac5143f(PartitionKey=''pkfac5143f'',RowKey=''rkfac5143f'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [85c823e1-0002-00bc-1009-fc43a5000000] + x-ms-request-id: [7e3e2a59-0002-00ec-1403-fd5cad000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -50,27 +50,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [95c599a4-67fc-11e7-9e8c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:40 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c617dc66-68f6-11e7-99f7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:35 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablefac5143f(PartitionKey='pkfac5143f',RowKey='rkfac5143f') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablefac5143f/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A40.220364Z''\"","PartitionKey":"pkfac5143f","RowKey":"rkfac5143f","Timestamp":"2017-07-13T18:53:40.220364Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"5iKbUGsA3ojM9jtQ81Bgmg==","name@odata.type":"Edm.Binary","name":"gnGwE4QAd5Qm12div6mUnw==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"CMIR/SCTcCh4o9qrIyZpgg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"JbtHntFV87/C8JsWC4eyj1Fd2AvGqZezjrjNA0O91Wopj8prl39KPw==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablefac5143f/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A36.0247148Z''\"","PartitionKey":"pkfac5143f","RowKey":"rkfac5143f","Timestamp":"2017-07-15T00:44:36.0247148Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"CjpJL6efCoyqp67RNeIthQ==","name@odata.type":"Edm.Binary","name":"wYLKUCFIFtMOr9BtLu8jQQ==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"U/BM9dMvQjEtlb0VEVXs5A==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"TyCjmhAMEFUWKG9NCDSSe3w/e4j0XnalGrys2FcYyheh3bx1kIKpvQ==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"LKb3k4LkOEcdoc2Cl4Mpsg==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"gWDvdUBSiiU96XSxRpClqw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:40 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A40.220364Z'"] + Date: ['Sat, 15 Jul 2017 00:44:35 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A36.0247148Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [85c823f4-0002-00bc-2009-fc43a5000000] + x-ms-request-id: [7e3e2a67-0002-00ec-1f03-fd5cad000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_get_strict_mode_unencrypted_entity.yaml b/tests/recordings/test_table_encryption.test_get_strict_mode_unencrypted_entity.yaml index ae167c7b..73527173 100644 --- a/tests/recordings/test_table_encryption.test_get_strict_mode_unencrypted_entity.yaml +++ b/tests/recordings/test_table_encryption.test_get_strict_mode_unencrypted_entity.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [95f7fee4-67fc-11e7-a968-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:40 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c64878c6-68f6-11e7-9ec9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:35 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablef941967 @@ -21,13 +21,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablef941967(PartitionKey=''pkf941967'',RowKey=''rkf941967'')'] - Date: ['Thu, 13 Jul 2017 18:53:39 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A40.5453121Z'"] + Date: ['Sat, 15 Jul 2017 00:44:36 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A36.4667368Z'"] Location: ['https://storagename.table.core.windows.net/uttablef941967(PartitionKey=''pkf941967'',RowKey=''rkf941967'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [89436b06-0002-0066-0a09-fce68e000000] + x-ms-request-id: [400de0bb-0002-004b-3303-fd654e000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -37,23 +37,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [960bc2a8-67fc-11e7-8c27-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:40 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c65df9c6-68f6-11e7-97c4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:35 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablef941967(PartitionKey='pkf941967',RowKey='rkf941967') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablef941967/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A40.5453121Z''\"","PartitionKey":"pkf941967","RowKey":"rkf941967","Timestamp":"2017-07-13T18:53:40.5453121Z"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablef941967/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A36.4667368Z''\"","PartitionKey":"pkf941967","RowKey":"rkf941967","Timestamp":"2017-07-15T00:44:36.4667368Z"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:39 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A40.5453121Z'"] + Date: ['Sat, 15 Jul 2017 00:44:36 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A36.4667368Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [89436b0b-0002-0066-0d09-fce68e000000] + x-ms-request-id: [400de0ca-0002-004b-3f03-fd654e000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_invalid_encryption_operations_fail.yaml b/tests/recordings/test_table_encryption.test_invalid_encryption_operations_fail.yaml index 2fbb5ce9..481a271e 100644 --- a/tests/recordings/test_table_encryption.test_invalid_encryption_operations_fail.yaml +++ b/tests/recordings/test_table_encryption.test_invalid_encryption_operations_fail.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pkfdd194e", "RowKey": "rkfdd194e", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "eWyKa4HptyXbJqlieosg2w==", "sex@odata.type": "Edm.Binary", - "name": "8jDXlsv+b9lRYE3NRMPqow==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "4XfqXQpgdkZ9jXniGHsE/w==", "sex@odata.type": "Edm.Binary", + "name": "pZwE5CziYSJMPdwzNoFLkw==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "Oi323i8vB0iCaTL0xoyCSw==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "50Mr73SZEn4lDqccDD7AKw==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"qbEwoXiVbTLYdz1h2U6ga4DFkUMxKbWew4Yh1ixPGt6O+0QCUTI1mw==\", + \"key1\", \"EncryptedKey\": \"ObV2I0PAatpj7GVdMIdaN+/j/ttGa7w27qn7zdkoLLQCBKkgVoknVg==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"DwWUrgVYZchQrv2aakfIfg==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"KibhXTh9kmrH9kN+Z/ICgg==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [96a7b352-67fc-11e7-ae0c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:41 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c707afac-68f6-11e7-8c51-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:36 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablefdd194e @@ -34,13 +34,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablefdd194e(PartitionKey=''pkfdd194e'',RowKey=''rkfdd194e'')'] - Date: ['Thu, 13 Jul 2017 18:53:40 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A41.3702582Z'"] + Date: ['Sat, 15 Jul 2017 00:44:37 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A37.7088233Z'"] Location: ['https://storagename.table.core.windows.net/uttablefdd194e(PartitionKey=''pkfdd194e'',RowKey=''rkfdd194e'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [a153d355-0002-0002-6409-fc562e000000] + x-ms-request-id: [628be835-0002-00b1-4903-fdaca9000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} version: 1 diff --git a/tests/recordings/test_table_encryption.test_invalid_encryption_operations_fail_batch.yaml b/tests/recordings/test_table_encryption.test_invalid_encryption_operations_fail_batch.yaml index c619dfe2..a11b67ed 100644 --- a/tests/recordings/test_table_encryption.test_invalid_encryption_operations_fail_batch.yaml +++ b/tests/recordings/test_table_encryption.test_invalid_encryption_operations_fail_batch.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pkafe31baf", "RowKey": "rkafe31baf", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "Om/4h88T5G01Ld3QX7BXUA==", "sex@odata.type": "Edm.Binary", - "name": "s7qgUCOTs8rfEMOcHbpL1A==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "4Wi1EGbtixGmv/uN9AQViw==", "sex@odata.type": "Edm.Binary", + "name": "ZIlTvLY3FsYq4vWW3KxHyw==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "sKob8873OeOHRT5uxzkzRA==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "gXyfdcYR7VOiWVHun8fMSA==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"0ndn79tk+vuQ049u94gXUZYlGOeCbvKTO8SW705jkN3jgZVg67QkbA==\", + \"key1\", \"EncryptedKey\": \"sP3IOkl8aegzgLJm+xfGi0ZSZgH2RBZTpLhUEVTxAZwvHVL6FzT1ZQ==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"mWq9JeHrHcqwssh8AtNt7Q==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"J8kjZH3qN/BmlEBQLXwxBA==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [96e810a8-67fc-11e7-9735-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:41 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c747db40-68f6-11e7-a24d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:37 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttableafe31baf @@ -34,13 +34,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttableafe31baf(PartitionKey=''pkafe31baf'',RowKey=''rkafe31baf'')'] - Date: ['Thu, 13 Jul 2017 18:53:41 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A41.9893569Z'"] + Date: ['Sat, 15 Jul 2017 00:44:37 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A38.0781112Z'"] Location: ['https://storagename.table.core.windows.net/uttableafe31baf(PartitionKey=''pkafe31baf'',RowKey=''rkafe31baf'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [8838ec83-0002-0074-3309-fcd292000000] + x-ms-request-id: [b7fe5233-0002-013c-1403-fda65a000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} version: 1 diff --git a/tests/recordings/test_table_encryption.test_property_resolver_decrypt_conflict.yaml b/tests/recordings/test_table_encryption.test_property_resolver_decrypt_conflict.yaml index f2129f7f..76f8ad4a 100644 --- a/tests/recordings/test_table_encryption.test_property_resolver_decrypt_conflict.yaml +++ b/tests/recordings/test_table_encryption.test_property_resolver_decrypt_conflict.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pk15071980", "RowKey": "rk15071980", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "g+UuRQeqm2FJRw5MZpB9NA==", "sex@odata.type": "Edm.Binary", - "name": "hRL+qaJ3E5f3qUZD2vz+vg==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "rancL8+APwrKTch7nzCNEA==", "sex@odata.type": "Edm.Binary", + "name": "9TSzvZhmoqF8ahiiskyEUg==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "y1OW5GvQHQkZg9IN4r7qhw==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "v+A2Hzi6PewuOcZE1Tp0kg==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"ZWe2z5sZAPMd4+lH/5GpuHk27BnoBxTFetyDlydPYzKNUDlg7VaC4g==\", + \"key1\", \"EncryptedKey\": \"OfFqwdLWh4uWDn8zyGSbJuJEVi8ixsmrSU3lLVuHS7By7iqFrPfufg==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"5unc4SjpxatONj+rWKqzEw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"VbA5MnpkadExjIxeIlZJ+g==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [972a3408-67fc-11e7-8c0a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c789f264-68f6-11e7-88c8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:37 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable15071980 @@ -34,13 +34,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable15071980(PartitionKey=''pk15071980'',RowKey=''rk15071980'')'] - Date: ['Thu, 13 Jul 2017 18:53:41 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A42.250234Z'"] + Date: ['Sat, 15 Jul 2017 00:44:38 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A38.506301Z'"] Location: ['https://storagename.table.core.windows.net/uttable15071980(PartitionKey=''pk15071980'',RowKey=''rk15071980'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [5ccfd541-0002-0122-3309-fc7cb7000000] + x-ms-request-id: [93aaaefb-0002-005e-0c03-fda7d7000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -50,27 +50,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [973fc0ca-67fc-11e7-a118-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c7a3fa9c-68f6-11e7-80cf-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:37 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable15071980(PartitionKey='pk15071980',RowKey='rk15071980') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable15071980/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A42.250234Z''\"","PartitionKey":"pk15071980","RowKey":"rk15071980","Timestamp":"2017-07-13T18:53:42.250234Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"g+UuRQeqm2FJRw5MZpB9NA==","name@odata.type":"Edm.Binary","name":"hRL+qaJ3E5f3qUZD2vz+vg==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"y1OW5GvQHQkZg9IN4r7qhw==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"ZWe2z5sZAPMd4+lH/5GpuHk27BnoBxTFetyDlydPYzKNUDlg7VaC4g==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable15071980/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A38.506301Z''\"","PartitionKey":"pk15071980","RowKey":"rk15071980","Timestamp":"2017-07-15T00:44:38.506301Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"rancL8+APwrKTch7nzCNEA==","name@odata.type":"Edm.Binary","name":"9TSzvZhmoqF8ahiiskyEUg==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"v+A2Hzi6PewuOcZE1Tp0kg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"OfFqwdLWh4uWDn8zyGSbJuJEVi8ixsmrSU3lLVuHS7By7iqFrPfufg==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"5unc4SjpxatONj+rWKqzEw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"VbA5MnpkadExjIxeIlZJ+g==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:41 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A42.250234Z'"] + Date: ['Sat, 15 Jul 2017 00:44:38 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A38.506301Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [5ccfd546-0002-0122-3609-fc7cb7000000] + x-ms-request-id: [93aaaf07-0002-005e-1503-fda7d7000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_query_entities_all_properties.yaml b/tests/recordings/test_table_encryption.test_query_entities_all_properties.yaml index b6c4fcbf..8b1e3170 100644 --- a/tests/recordings/test_table_encryption.test_query_entities_all_properties.yaml +++ b/tests/recordings/test_table_encryption.test_query_entities_all_properties.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [97721e62-67fc-11e7-b623-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:42 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c7d53c74-68f6-11e7-82ae-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:38 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,21 +21,21 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''querytable978a175d'')'] - Date: ['Thu, 13 Jul 2017 18:53:41 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:39 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''querytable978a175d'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [fec777b5-0002-0018-5609-fc7941000000] + x-ms-request-id: [f602237a-0002-0110-4003-fd2467000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_978e3ef8-67fc-11e7-85b1-b8e8564491f6 + body: '--batch_c7ef5834-68f6-11e7-baea-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_978e3f52-67fc-11e7-8250-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_c7ef58a2-68f6-11e7-b358-b8e8564491f6 - --changeset_978e3f52-67fc-11e7-8250-b8e8564491f6 + --changeset_c7ef58a2-68f6-11e7-b358-b8e8564491f6 Content-Type: application/http @@ -56,22 +56,22 @@ interactions: {"PartitionKey": "pk978a175d", "RowKey": "rk978a175d1", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "XIWao3/F2Ayyy/hN/nNZ7Q==", "sex@odata.type": "Edm.Binary", - "name": "rR4KIxjTo4ig5uEGHBpsEg==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "1TsMD2u8x42adw5EOHPbvA==", "sex@odata.type": "Edm.Binary", + "name": "tiHijTxB/3NDupzTT+Rpvw==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "GCmFU3el8/O98Zx/VvGvIg==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "G/qgorqNYgSXGF8vraHRHQ==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"4nScMVsdUADEH2b28VikTH6pKECCuJrztIrsMZrcYfXZOkMvjwBvXw==\", + \"key1\", \"EncryptedKey\": \"jkpJ5eaiEtWa0iKiyvGAzGdgKZT87KtFkSJf0REVe7Y6ZiU8PaOERA==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"a8qSIrA8xEZv4psr38rZiQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"bxjRcu2ZlfAiEg8htYom+A==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"} - --changeset_978e3f52-67fc-11e7-8250-b8e8564491f6 + --changeset_c7ef58a2-68f6-11e7-b358-b8e8564491f6 Content-Type: application/http @@ -92,22 +92,22 @@ interactions: {"PartitionKey": "pk978a175d", "RowKey": "rk978a175d12", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "977iZPeo/zn7wswaz0gdpA==", "sex@odata.type": "Edm.Binary", - "name": "b54oqGyD0EePmQWwWb18LQ==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "idk6KEEO/D0S15+uNLEAEA==", "sex@odata.type": "Edm.Binary", + "name": "9m6s9IU2gG4iWbuoIS4nZg==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "JxBL/N1ExRj8ltiQNbo4Cg==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "4y0ycsc8ENAJ87Ocs5lspw==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"pYJoSlVYp0CZ66bdYMdZ2xZNOQYxiNfpYS6jyyShLrTtkGznYAOg3Q==\", + \"key1\", \"EncryptedKey\": \"KDX/CBEC9n/jgfJGfbhR0tnq3owRfs0A5JucavAKrN0vzMFBMpBchw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"/c7IOcPRvulIQSc3dgyNTA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"as9tozvDYoR12tJYQuDb4A==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"} - --changeset_978e3f52-67fc-11e7-8250-b8e8564491f6 + --changeset_c7ef58a2-68f6-11e7-b358-b8e8564491f6 Content-Type: application/http @@ -128,22 +128,22 @@ interactions: {"PartitionKey": "pk978a175d", "RowKey": "rk978a175d123", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "c/XBbD2UacQKmDOqyZBdkQ==", "sex@odata.type": "Edm.Binary", - "name": "MbkLuCbtjHEE85yJnGL0qA==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "3a3bWY1+Wzi67ze1meNsAw==", "sex@odata.type": "Edm.Binary", + "name": "iJio6Om0zpj0JVgfqkeXNw==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "3fkFZSv7JpKEdOsDPHpWIw==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "vcmvg6+SSCM+75fGfaZehg==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"KC0F9corY6okWHx7Um8p5lyA4KiJeVQfvCN/3xOrtWnidXM7EouFuw==\", + \"key1\", \"EncryptedKey\": \"JLhZ4OPMkbqwNLCBCCPkOtPMxgupv5loMcGxbHE1kPUGRdVHVvcvdQ==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"tmipqykg1HV3yDT2QingVA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"X/Mjm07LAbdAh7bFWajU3g==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"} - --changeset_978e3f52-67fc-11e7-8250-b8e8564491f6 + --changeset_c7ef58a2-68f6-11e7-b358-b8e8564491f6 Content-Type: application/http @@ -164,22 +164,22 @@ interactions: {"PartitionKey": "pk978a175d", "RowKey": "rk978a175d1234", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "W858OH4x9J+HB8j6mANPEw==", "sex@odata.type": "Edm.Binary", - "name": "QktuXzeBL8I1Cj4fOtgbrA==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "V6mFd3A0DuBDTHtMHOxxCw==", "sex@odata.type": "Edm.Binary", + "name": "ybnIr5nW09x260azmu7/DA==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "GHQYzWcbCe0q78D8m1owaA==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "ElHLdM73y4e3TWeovkZ/+g==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"qAgfuFG818Lv8BXcDxcfMQ++qWa02mRr590mGCp/kmQ6ifr0XOABTw==\", + \"key1\", \"EncryptedKey\": \"+wHc4GrqTIjmYQYv0ZH8/VCvjhsyf07nP2mc7a2Bd6+uHcyHW06aSA==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"jWfCGHRJ2n3Ly0R0gDizRQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"GMj2BDUD+8QxqtnBPTK55Q==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"} - --changeset_978e3f52-67fc-11e7-8250-b8e8564491f6 + --changeset_c7ef58a2-68f6-11e7-b358-b8e8564491f6 Content-Type: application/http @@ -200,79 +200,79 @@ interactions: {"PartitionKey": "pk978a175d", "RowKey": "rk978a175d12345", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "sE3Qj5cQPv4GWVVW6rY1Rg==", "sex@odata.type": "Edm.Binary", - "name": "QEUsHRd+aTJ2TeW2HzkpYQ==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "tTZj00CzYqRvPRpaMUajNg==", "sex@odata.type": "Edm.Binary", + "name": "V1opWoA7iRZpY4HnxiWRLg==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "ibFA4+bGmtiQh3DAcwfDlA==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "cndTxuvg/yStF3oMprvy9w==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"L37/w4zbbi6KFGx+IOX1oSSQJMhUD8GX5QgJZcp41bhFrBvCGzUSOA==\", + \"key1\", \"EncryptedKey\": \"IGUOTPoyZMach60qc9dmgR/kZ5veynkXwWzOl0MFqPv1zaIFv6OE1Q==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"N77/RVmDiJZmJGrV0dVEtQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"lWnCsCIBXDYGGXB25z4BRw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"} - --changeset_978e3f52-67fc-11e7-8250-b8e8564491f6-- + --changeset_c7ef58a2-68f6-11e7-b358-b8e8564491f6-- - --batch_978e3ef8-67fc-11e7-85b1-b8e8564491f6--' + --batch_c7ef5834-68f6-11e7-baea-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['7640'] - Content-Type: [multipart/mixed; boundary=batch_978e3ef8-67fc-11e7-85b1-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_c7ef5834-68f6-11e7-baea-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [978e4286-67fc-11e7-999d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c7ef5c30-68f6-11e7-bdfd-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:38 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_edf79048-c26b-40c4-803a-fbb666300141\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_51b5170a-0294-408b-b83e-0be7f57c28b9\r\ - \n\r\n--changesetresponse_51b5170a-0294-408b-b83e-0be7f57c28b9\r\nContent-Type:\ + body: {string: "--batchresponse_fc260936-20e6-49e4-8d2f-e38f3f618ac9\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_3e7e5cdd-c268-4fbb-a0c9-5e38f202fae1\r\ + \n\r\n--changesetresponse_3e7e5cdd-c268-4fbb-a0c9-5e38f202fae1\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable978a175d(PartitionKey='pk978a175d',RowKey='rk978a175d1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable978a175d(PartitionKey='pk978a175d',RowKey='rk978a175d1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A42.7787259Z'\"\r\n\r\n\r\n--changesetresponse_51b5170a-0294-408b-b83e-0be7f57c28b9\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A40.3728548Z'\"\r\n\r\n\r\n--changesetresponse_3e7e5cdd-c268-4fbb-a0c9-5e38f202fae1\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable978a175d(PartitionKey='pk978a175d',RowKey='rk978a175d12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable978a175d(PartitionKey='pk978a175d',RowKey='rk978a175d12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A42.7787259Z'\"\r\n\r\n\r\n--changesetresponse_51b5170a-0294-408b-b83e-0be7f57c28b9\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A40.3728548Z'\"\r\n\r\n\r\n--changesetresponse_3e7e5cdd-c268-4fbb-a0c9-5e38f202fae1\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable978a175d(PartitionKey='pk978a175d',RowKey='rk978a175d123')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable978a175d(PartitionKey='pk978a175d',RowKey='rk978a175d123')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A42.7787259Z'\"\r\n\r\n\r\n--changesetresponse_51b5170a-0294-408b-b83e-0be7f57c28b9\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A40.3728548Z'\"\r\n\r\n\r\n--changesetresponse_3e7e5cdd-c268-4fbb-a0c9-5e38f202fae1\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable978a175d(PartitionKey='pk978a175d',RowKey='rk978a175d1234')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable978a175d(PartitionKey='pk978a175d',RowKey='rk978a175d1234')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A42.7787259Z'\"\r\n\r\n\r\n--changesetresponse_51b5170a-0294-408b-b83e-0be7f57c28b9\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A40.3728548Z'\"\r\n\r\n\r\n--changesetresponse_3e7e5cdd-c268-4fbb-a0c9-5e38f202fae1\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable978a175d(PartitionKey='pk978a175d',RowKey='rk978a175d12345')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable978a175d(PartitionKey='pk978a175d',RowKey='rk978a175d12345')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A42.7787259Z'\"\r\n\r\n\r\n--changesetresponse_51b5170a-0294-408b-b83e-0be7f57c28b9--\r\ - \n--batchresponse_edf79048-c26b-40c4-803a-fbb666300141--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A44%3A40.3728548Z'\"\r\n\r\n\r\n--changesetresponse_3e7e5cdd-c268-4fbb-a0c9-5e38f202fae1--\r\ + \n--batchresponse_fc260936-20e6-49e4-8d2f-e38f3f618ac9--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_edf79048-c26b-40c4-803a-fbb666300141] - Date: ['Thu, 13 Jul 2017 18:53:42 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_fc260936-20e6-49e4-8d2f-e38f3f618ac9] + Date: ['Sat, 15 Jul 2017 00:44:39 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [fec777fa-0002-0018-1509-fc7941000000] + x-ms-request-id: [f6022387-0002-0110-4a03-fd2467000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -282,42 +282,42 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [979fe09a-67fc-11e7-96a9-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c80121fe-68f6-11e7-bfc9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:38 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/querytable978a175d()?%24top=5 response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable978a175d","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A42.7787259Z''\"","PartitionKey":"pk978a175d","RowKey":"rk978a175d1","Timestamp":"2017-07-13T18:53:42.7787259Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"XIWao3/F2Ayyy/hN/nNZ7Q==","name@odata.type":"Edm.Binary","name":"rR4KIxjTo4ig5uEGHBpsEg==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"GCmFU3el8/O98Zx/VvGvIg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"4nScMVsdUADEH2b28VikTH6pKECCuJrztIrsMZrcYfXZOkMvjwBvXw==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable978a175d","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A40.3728548Z''\"","PartitionKey":"pk978a175d","RowKey":"rk978a175d1","Timestamp":"2017-07-15T00:44:40.3728548Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"1TsMD2u8x42adw5EOHPbvA==","name@odata.type":"Edm.Binary","name":"tiHijTxB/3NDupzTT+Rpvw==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"G/qgorqNYgSXGF8vraHRHQ==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"jkpJ5eaiEtWa0iKiyvGAzGdgKZT87KtFkSJf0REVe7Y6ZiU8PaOERA==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"a8qSIrA8xEZv4psr38rZiQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A42.7787259Z''\"","PartitionKey":"pk978a175d","RowKey":"rk978a175d12","Timestamp":"2017-07-13T18:53:42.7787259Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"977iZPeo/zn7wswaz0gdpA==","name@odata.type":"Edm.Binary","name":"b54oqGyD0EePmQWwWb18LQ==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"JxBL/N1ExRj8ltiQNbo4Cg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"pYJoSlVYp0CZ66bdYMdZ2xZNOQYxiNfpYS6jyyShLrTtkGznYAOg3Q==\", + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"bxjRcu2ZlfAiEg8htYom+A==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A40.3728548Z''\"","PartitionKey":"pk978a175d","RowKey":"rk978a175d12","Timestamp":"2017-07-15T00:44:40.3728548Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"idk6KEEO/D0S15+uNLEAEA==","name@odata.type":"Edm.Binary","name":"9m6s9IU2gG4iWbuoIS4nZg==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"4y0ycsc8ENAJ87Ocs5lspw==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"KDX/CBEC9n/jgfJGfbhR0tnq3owRfs0A5JucavAKrN0vzMFBMpBchw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"/c7IOcPRvulIQSc3dgyNTA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A42.7787259Z''\"","PartitionKey":"pk978a175d","RowKey":"rk978a175d123","Timestamp":"2017-07-13T18:53:42.7787259Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"c/XBbD2UacQKmDOqyZBdkQ==","name@odata.type":"Edm.Binary","name":"MbkLuCbtjHEE85yJnGL0qA==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"3fkFZSv7JpKEdOsDPHpWIw==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"KC0F9corY6okWHx7Um8p5lyA4KiJeVQfvCN/3xOrtWnidXM7EouFuw==\", + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"as9tozvDYoR12tJYQuDb4A==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A40.3728548Z''\"","PartitionKey":"pk978a175d","RowKey":"rk978a175d123","Timestamp":"2017-07-15T00:44:40.3728548Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"3a3bWY1+Wzi67ze1meNsAw==","name@odata.type":"Edm.Binary","name":"iJio6Om0zpj0JVgfqkeXNw==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"vcmvg6+SSCM+75fGfaZehg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"JLhZ4OPMkbqwNLCBCCPkOtPMxgupv5loMcGxbHE1kPUGRdVHVvcvdQ==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"tmipqykg1HV3yDT2QingVA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A42.7787259Z''\"","PartitionKey":"pk978a175d","RowKey":"rk978a175d1234","Timestamp":"2017-07-13T18:53:42.7787259Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"W858OH4x9J+HB8j6mANPEw==","name@odata.type":"Edm.Binary","name":"QktuXzeBL8I1Cj4fOtgbrA==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"GHQYzWcbCe0q78D8m1owaA==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"qAgfuFG818Lv8BXcDxcfMQ++qWa02mRr590mGCp/kmQ6ifr0XOABTw==\", + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"X/Mjm07LAbdAh7bFWajU3g==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A40.3728548Z''\"","PartitionKey":"pk978a175d","RowKey":"rk978a175d1234","Timestamp":"2017-07-15T00:44:40.3728548Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"V6mFd3A0DuBDTHtMHOxxCw==","name@odata.type":"Edm.Binary","name":"ybnIr5nW09x260azmu7/DA==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"ElHLdM73y4e3TWeovkZ/+g==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"+wHc4GrqTIjmYQYv0ZH8/VCvjhsyf07nP2mc7a2Bd6+uHcyHW06aSA==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"jWfCGHRJ2n3Ly0R0gDizRQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A42.7787259Z''\"","PartitionKey":"pk978a175d","RowKey":"rk978a175d12345","Timestamp":"2017-07-13T18:53:42.7787259Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"sE3Qj5cQPv4GWVVW6rY1Rg==","name@odata.type":"Edm.Binary","name":"QEUsHRd+aTJ2TeW2HzkpYQ==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"ibFA4+bGmtiQh3DAcwfDlA==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"L37/w4zbbi6KFGx+IOX1oSSQJMhUD8GX5QgJZcp41bhFrBvCGzUSOA==\", + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"GMj2BDUD+8QxqtnBPTK55Q==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A40.3728548Z''\"","PartitionKey":"pk978a175d","RowKey":"rk978a175d12345","Timestamp":"2017-07-15T00:44:40.3728548Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"tTZj00CzYqRvPRpaMUajNg==","name@odata.type":"Edm.Binary","name":"V1opWoA7iRZpY4HnxiWRLg==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"cndTxuvg/yStF3oMprvy9w==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"IGUOTPoyZMach60qc9dmgR/kZ5veynkXwWzOl0MFqPv1zaIFv6OE1Q==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"N77/RVmDiJZmJGrV0dVEtQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}]}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"lWnCsCIBXDYGGXB25z4BRw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:39 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [fec77838-0002-0018-5009-fc7941000000] + x-ms-request-id: [f6022391-0002-0110-5303-fd2467000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_query_entities_mixed_mode.yaml b/tests/recordings/test_table_encryption.test_query_entities_mixed_mode.yaml index 32947808..676eb57a 100644 --- a/tests/recordings/test_table_encryption.test_query_entities_mixed_mode.yaml +++ b/tests/recordings/test_table_encryption.test_query_entities_mixed_mode.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [97dd9692-67fc-11e7-8a00-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c83fc3d2-68f6-11e7-b06f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:38 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable3cc81593 @@ -27,30 +27,30 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable3cc81593(PartitionKey=''pk3cc81593'',RowKey=''unencryptedunencrypted'')'] - Date: ['Thu, 13 Jul 2017 18:53:42 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A43.4404415Z'"] + Date: ['Sat, 15 Jul 2017 00:44:39 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A39.6287559Z'"] Location: ['https://storagename.table.core.windows.net/uttable3cc81593(PartitionKey=''pk3cc81593'',RowKey=''unencryptedunencrypted'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [513ae123-0002-00b2-6709-fcafae000000] + x-ms-request-id: [8f382ca1-0002-000b-6d03-fd4ca0000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: '{"PartitionKey": "pk3cc81593", "RowKey": "rk3cc81593", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "JZiHqXXSBPDp6wbRcMvhuA==", "sex@odata.type": "Edm.Binary", - "name": "OdOCv1EuPl7z/RlLhNBbwA==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "I2KsnqxAUTz33oHdRvA4dw==", "sex@odata.type": "Edm.Binary", + "name": "uQKK5nwpibW7Cspw7GydPg==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "4NBUiK0DWYTw7fGEHftHFw==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "jDayRy7apQrGhH2/kTopsg==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"ZzGNXPSAWx+xCSTWiO7fk3QgC0x7CKCwB8JPpVQMdZaoIKenc28pGA==\", + \"key1\", \"EncryptedKey\": \"oRCU/bm8/Bw4DieaqWaNAqmqpe0FeNZiJc+H4f3m2O77sSOP3toNDg==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"GWX5tBbAuxwak0TsspQiPQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"LN86Yyy4qZBdYyu5e65q9w==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -59,9 +59,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [97f728dc-67fc-11e7-b8a4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c85387a8-68f6-11e7-9290-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:39 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable3cc81593 @@ -71,13 +71,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable3cc81593(PartitionKey=''pk3cc81593'',RowKey=''rk3cc81593'')'] - Date: ['Thu, 13 Jul 2017 18:53:42 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A43.5114929Z'"] + Date: ['Sat, 15 Jul 2017 00:44:39 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A39.6667816Z'"] Location: ['https://storagename.table.core.windows.net/uttable3cc81593(PartitionKey=''pk3cc81593'',RowKey=''rk3cc81593'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [513ae135-0002-00b2-7509-fcafae000000] + x-ms-request-id: [8f382cad-0002-000b-7503-fd4ca0000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -87,27 +87,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [97fc693a-67fc-11e7-ad43-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c858b09a-68f6-11e7-aba8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:39 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable3cc81593() response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3cc81593","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A43.5114929Z''\"","PartitionKey":"pk3cc81593","RowKey":"rk3cc81593","Timestamp":"2017-07-13T18:53:43.5114929Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"JZiHqXXSBPDp6wbRcMvhuA==","name@odata.type":"Edm.Binary","name":"OdOCv1EuPl7z/RlLhNBbwA==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"4NBUiK0DWYTw7fGEHftHFw==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"ZzGNXPSAWx+xCSTWiO7fk3QgC0x7CKCwB8JPpVQMdZaoIKenc28pGA==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3cc81593","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A39.6667816Z''\"","PartitionKey":"pk3cc81593","RowKey":"rk3cc81593","Timestamp":"2017-07-15T00:44:39.6667816Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"I2KsnqxAUTz33oHdRvA4dw==","name@odata.type":"Edm.Binary","name":"uQKK5nwpibW7Cspw7GydPg==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"jDayRy7apQrGhH2/kTopsg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"oRCU/bm8/Bw4DieaqWaNAqmqpe0FeNZiJc+H4f3m2O77sSOP3toNDg==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"GWX5tBbAuxwak0TsspQiPQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A43.4404415Z''\"","PartitionKey":"pk3cc81593","RowKey":"unencryptedunencrypted","Timestamp":"2017-07-13T18:53:43.4404415Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","name":"John + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"LN86Yyy4qZBdYyu5e65q9w==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A39.6287559Z''\"","PartitionKey":"pk3cc81593","RowKey":"unencryptedunencrypted","Timestamp":"2017-07-15T00:44:39.6287559Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","name":"John Doe","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:39 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [513ae13c-0002-00b2-7c09-fcafae000000] + x-ms-request-id: [8f382cbb-0002-000b-0203-fd4ca0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -117,27 +117,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [98015866-67fc-11e7-a06b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c85e1864-68f6-11e7-acfb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:39 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable3cc81593() response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3cc81593","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A43.5114929Z''\"","PartitionKey":"pk3cc81593","RowKey":"rk3cc81593","Timestamp":"2017-07-13T18:53:43.5114929Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"JZiHqXXSBPDp6wbRcMvhuA==","name@odata.type":"Edm.Binary","name":"OdOCv1EuPl7z/RlLhNBbwA==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"4NBUiK0DWYTw7fGEHftHFw==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"ZzGNXPSAWx+xCSTWiO7fk3QgC0x7CKCwB8JPpVQMdZaoIKenc28pGA==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3cc81593","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A39.6667816Z''\"","PartitionKey":"pk3cc81593","RowKey":"rk3cc81593","Timestamp":"2017-07-15T00:44:39.6667816Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"I2KsnqxAUTz33oHdRvA4dw==","name@odata.type":"Edm.Binary","name":"uQKK5nwpibW7Cspw7GydPg==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"jDayRy7apQrGhH2/kTopsg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"oRCU/bm8/Bw4DieaqWaNAqmqpe0FeNZiJc+H4f3m2O77sSOP3toNDg==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"GWX5tBbAuxwak0TsspQiPQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A43.4404415Z''\"","PartitionKey":"pk3cc81593","RowKey":"unencryptedunencrypted","Timestamp":"2017-07-13T18:53:43.4404415Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","name":"John + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"LN86Yyy4qZBdYyu5e65q9w==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A39.6287559Z''\"","PartitionKey":"pk3cc81593","RowKey":"unencryptedunencrypted","Timestamp":"2017-07-15T00:44:39.6287559Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","name":"John Doe","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:42 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:39 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [513ae147-0002-00b2-0709-fcafae000000] + x-ms-request-id: [8f382cc6-0002-000b-0d03-fd4ca0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_query_entities_projection.yaml b/tests/recordings/test_table_encryption.test_query_entities_projection.yaml index 8fa3c144..04a3a528 100644 --- a/tests/recordings/test_table_encryption.test_query_entities_projection.yaml +++ b/tests/recordings/test_table_encryption.test_query_entities_projection.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [982f8d6c-67fc-11e7-847b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c898f02e-68f6-11e7-8ba8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:39 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,21 +21,21 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''querytable3d5515b5'')'] - Date: ['Thu, 13 Jul 2017 18:53:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:39 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''querytable3d5515b5'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [12b97d63-0002-0110-7409-fc2467000000] + x-ms-request-id: [9ff48b09-0002-010d-7003-fdfd8d000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_984467e6-67fc-11e7-a785-b8e8564491f6 + body: '--batch_c8af873a-68f6-11e7-8e6b-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_98446874-67fc-11e7-8ffc-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_c8af87a8-68f6-11e7-9aca-b8e8564491f6 - --changeset_98446874-67fc-11e7-8ffc-b8e8564491f6 + --changeset_c8af87a8-68f6-11e7-9aca-b8e8564491f6 Content-Type: application/http @@ -56,22 +56,22 @@ interactions: {"PartitionKey": "pk3d5515b5", "RowKey": "rk3d5515b51", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "RWRb+Q7IIxFWNRvpQG1dgg==", "sex@odata.type": "Edm.Binary", - "name": "Lnw9flzXtOTn/+jLgzFdTg==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "34wAVO8QJFDTJC0DVLgkgA==", "sex@odata.type": "Edm.Binary", + "name": "SCNAq33PHE/2GvnO6ECYgg==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "vwwXH5ToEB/GUl8NSRiLpA==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "X4NDAf5BAI9t5B7wo+0K6w==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"XeruWpK75k7mvK+gJFAgAWQ+SCqxIGC51pbh+XOyJQT/OThxN4lb0w==\", + \"key1\", \"EncryptedKey\": \"c9PikUkIevY3+UdSAnuBJOM78jZ2aauDaZWGRq8QAFIT9Ezx42I1cA==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"dlJNgGXs8qYbeZWbWkIKmA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"22+jWYrCzd+JKhych19pMw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"} - --changeset_98446874-67fc-11e7-8ffc-b8e8564491f6 + --changeset_c8af87a8-68f6-11e7-9aca-b8e8564491f6 Content-Type: application/http @@ -92,22 +92,22 @@ interactions: {"PartitionKey": "pk3d5515b5", "RowKey": "rk3d5515b512", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "zyiTUjYaL2MmaWOqfdfd1Q==", "sex@odata.type": "Edm.Binary", - "name": "MsThJrIUlsB5bh2qQgScww==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "Kv9noHuNJelKvDgqAaxwUQ==", "sex@odata.type": "Edm.Binary", + "name": "ZKkaH+k3aGwBgf8aNLcPfw==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "euiuFYbmXhwdtyQyIe/MVA==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "M71u1O8dGUkXnymmf+hRAw==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"kAcA45AgegwYkqMo+bOaNglDEaxGpuokGSwvtsHTzZtJMt+/e1ajxw==\", + \"key1\", \"EncryptedKey\": \"/BHXPQQKXoudkEdIDqv+v+5D1AeAibgmVWPVMI7vkfNpyUOanK0BxQ==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"gihHlyKU7tvgTgbYWpCNZQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"VDYWTvPBrqQ/1lQcHGa4Iw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"} - --changeset_98446874-67fc-11e7-8ffc-b8e8564491f6 + --changeset_c8af87a8-68f6-11e7-9aca-b8e8564491f6 Content-Type: application/http @@ -128,22 +128,22 @@ interactions: {"PartitionKey": "pk3d5515b5", "RowKey": "rk3d5515b5123", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "FQ6SjBEYxo+jRR3gaJUT0Q==", "sex@odata.type": "Edm.Binary", - "name": "b5qsVaPFTGB7MuuMV9S3Kw==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "qpdMMqLg8mIQA80dzmHJ4w==", "sex@odata.type": "Edm.Binary", + "name": "yX8TmrjejU9S840UeILUTw==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "t1MLGoML69HpUWOtwkpptQ==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "R/8ku+xeg52rcm8yvAX39g==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"SxWFp4b22t8eRoNU2l9Oxt35dp3Z1J6359L/BYfTEn42rAnVmJIwmA==\", + \"key1\", \"EncryptedKey\": \"UKfgC2fNVmzLqPkVWd818RsSbLDrNcBDu6JCYnKSsyykDk/844Ifaw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"MNMDqxh62v/52DGPPgIjgg==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"Uf7NSB0Nwr+EY1/ohuvSrA==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"} - --changeset_98446874-67fc-11e7-8ffc-b8e8564491f6 + --changeset_c8af87a8-68f6-11e7-9aca-b8e8564491f6 Content-Type: application/http @@ -164,22 +164,22 @@ interactions: {"PartitionKey": "pk3d5515b5", "RowKey": "rk3d5515b51234", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "G3P4JH4c8XhYPcS80NSSWA==", "sex@odata.type": "Edm.Binary", - "name": "KHN4W/h3pJPnYpoqvxe1Xg==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "yT6+MpyICi/LF9kmZEXELA==", "sex@odata.type": "Edm.Binary", + "name": "LA8z8rap9A4pxhyOa7YsKA==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "2pCN4Q851nrdHg8G/hH61g==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "tL4BVTKcG3eoW/4bavjf1g==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"9WXfWjPnpoxiGOD2Q99VQ0z3HD1jkI15dUWiL2427dk43MeCXWMD0Q==\", + \"key1\", \"EncryptedKey\": \"j02A4FgNqfm0Yz6wgl0WaAmTQW2hF/0sz7z/VQylcconPEv/Oe6L+A==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"fEC5NbZCzj6S7ZL2SbhCHA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"00CVmqsDoYt/aFwM43hggw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"} - --changeset_98446874-67fc-11e7-8ffc-b8e8564491f6 + --changeset_c8af87a8-68f6-11e7-9aca-b8e8564491f6 Content-Type: application/http @@ -200,79 +200,79 @@ interactions: {"PartitionKey": "pk3d5515b5", "RowKey": "rk3d5515b512345", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "XOuGHNlX4flzFGvA0UBVVA==", "sex@odata.type": "Edm.Binary", - "name": "G4Gomn83SWwNmTHJU2uWBw==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "JelINj1vgeTzC4VJyyyGXA==", "sex@odata.type": "Edm.Binary", + "name": "7P1Y+5RAgWX30U6k+m8RJA==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "etP0efkbCOgLtqbAiSoniA==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "2Jc6t9EcVVAnyIhRnvhfBA==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"vIXe4Eyc+2rGisIK4fCZRO4+3PbRL5w2Xp1e+HTGseu8x9lPcp0hZg==\", + \"key1\", \"EncryptedKey\": \"/1r7dlMyczLaxumPrXhoeciyFD1NjOIunoEK7j+1u+zJ/kjz5IZmog==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"7w2VaC55Hv3+/8scIwgbZw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"DntC6uwlU8WEiCfopreh+A==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"} - --changeset_98446874-67fc-11e7-8ffc-b8e8564491f6-- + --changeset_c8af87a8-68f6-11e7-9aca-b8e8564491f6-- - --batch_984467e6-67fc-11e7-a785-b8e8564491f6--' + --batch_c8af873a-68f6-11e7-8e6b-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['7640'] - Content-Type: [multipart/mixed; boundary=batch_984467e6-67fc-11e7-a785-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_c8af873a-68f6-11e7-8e6b-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [98446d18-67fc-11e7-b5ba-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c8af8b5e-68f6-11e7-8e18-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:39 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_a2423ee0-e6a2-429b-be28-690cced90e2b\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_f8c259c4-a892-40d1-8227-5099e694164e\r\ - \n\r\n--changesetresponse_f8c259c4-a892-40d1-8227-5099e694164e\r\nContent-Type:\ + body: {string: "--batchresponse_22591c73-ed1c-442c-a2fb-782e68967a2c\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_dba58e53-8ec2-4421-ae2e-7c9a305ed521\r\ + \n\r\n--changesetresponse_dba58e53-8ec2-4421-ae2e-7c9a305ed521\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable3d5515b5(PartitionKey='pk3d5515b5',RowKey='rk3d5515b51')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable3d5515b5(PartitionKey='pk3d5515b5',RowKey='rk3d5515b51')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A44.5434079Z'\"\r\n\r\n\r\n--changesetresponse_f8c259c4-a892-40d1-8227-5099e694164e\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A40.3159994Z'\"\r\n\r\n\r\n--changesetresponse_dba58e53-8ec2-4421-ae2e-7c9a305ed521\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable3d5515b5(PartitionKey='pk3d5515b5',RowKey='rk3d5515b512')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable3d5515b5(PartitionKey='pk3d5515b5',RowKey='rk3d5515b512')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A44.5434079Z'\"\r\n\r\n\r\n--changesetresponse_f8c259c4-a892-40d1-8227-5099e694164e\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A40.3159994Z'\"\r\n\r\n\r\n--changesetresponse_dba58e53-8ec2-4421-ae2e-7c9a305ed521\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable3d5515b5(PartitionKey='pk3d5515b5',RowKey='rk3d5515b5123')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable3d5515b5(PartitionKey='pk3d5515b5',RowKey='rk3d5515b5123')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A44.5434079Z'\"\r\n\r\n\r\n--changesetresponse_f8c259c4-a892-40d1-8227-5099e694164e\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A40.3159994Z'\"\r\n\r\n\r\n--changesetresponse_dba58e53-8ec2-4421-ae2e-7c9a305ed521\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable3d5515b5(PartitionKey='pk3d5515b5',RowKey='rk3d5515b51234')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable3d5515b5(PartitionKey='pk3d5515b5',RowKey='rk3d5515b51234')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A44.5434079Z'\"\r\n\r\n\r\n--changesetresponse_f8c259c4-a892-40d1-8227-5099e694164e\r\ + \nETag: W/\"datetime'2017-07-15T00%3A44%3A40.3159994Z'\"\r\n\r\n\r\n--changesetresponse_dba58e53-8ec2-4421-ae2e-7c9a305ed521\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable3d5515b5(PartitionKey='pk3d5515b5',RowKey='rk3d5515b512345')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable3d5515b5(PartitionKey='pk3d5515b5',RowKey='rk3d5515b512345')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A53%3A44.5434079Z'\"\r\n\r\n\r\n--changesetresponse_f8c259c4-a892-40d1-8227-5099e694164e--\r\ - \n--batchresponse_a2423ee0-e6a2-429b-be28-690cced90e2b--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A44%3A40.3159994Z'\"\r\n\r\n\r\n--changesetresponse_dba58e53-8ec2-4421-ae2e-7c9a305ed521--\r\ + \n--batchresponse_22591c73-ed1c-442c-a2fb-782e68967a2c--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_a2423ee0-e6a2-429b-be28-690cced90e2b] - Date: ['Thu, 13 Jul 2017 18:53:44 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_22591c73-ed1c-442c-a2fb-782e68967a2c] + Date: ['Sat, 15 Jul 2017 00:44:39 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [12b97d74-0002-0110-0309-fc2467000000] + x-ms-request-id: [9ff48b28-0002-010d-0a03-fdfd8d000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -282,42 +282,42 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [98513764-67fc-11e7-aa6c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c8bbc090-68f6-11e7-a33a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:39 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/querytable3d5515b5()?%24select=PartitionKey%2CRowKey%2Csex%2C_ClientEncryptionMetadata1%2C_ClientEncryptionMetadata2&%24top=5 response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable3d5515b5&$select=PartitionKey,RowKey,sex,_ClientEncryptionMetadata1,_ClientEncryptionMetadata2","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A44.5434079Z''\"","PartitionKey":"pk3d5515b5","RowKey":"rk3d5515b51","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"XeruWpK75k7mvK+gJFAgAWQ+SCqxIGC51pbh+XOyJQT/OThxN4lb0w==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable3d5515b5&$select=PartitionKey,RowKey,sex,_ClientEncryptionMetadata1,_ClientEncryptionMetadata2","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A40.3159994Z''\"","PartitionKey":"pk3d5515b5","RowKey":"rk3d5515b51","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"c9PikUkIevY3+UdSAnuBJOM78jZ2aauDaZWGRq8QAFIT9Ezx42I1cA==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"dlJNgGXs8qYbeZWbWkIKmA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"vwwXH5ToEB/GUl8NSRiLpA==","sex@odata.type":"Edm.Binary","sex":"RWRb+Q7IIxFWNRvpQG1dgg=="},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A44.5434079Z''\"","PartitionKey":"pk3d5515b5","RowKey":"rk3d5515b512","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"kAcA45AgegwYkqMo+bOaNglDEaxGpuokGSwvtsHTzZtJMt+/e1ajxw==\", + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"22+jWYrCzd+JKhych19pMw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"X4NDAf5BAI9t5B7wo+0K6w==","sex@odata.type":"Edm.Binary","sex":"34wAVO8QJFDTJC0DVLgkgA=="},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A40.3159994Z''\"","PartitionKey":"pk3d5515b5","RowKey":"rk3d5515b512","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"/BHXPQQKXoudkEdIDqv+v+5D1AeAibgmVWPVMI7vkfNpyUOanK0BxQ==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"gihHlyKU7tvgTgbYWpCNZQ==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"euiuFYbmXhwdtyQyIe/MVA==","sex@odata.type":"Edm.Binary","sex":"zyiTUjYaL2MmaWOqfdfd1Q=="},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A44.5434079Z''\"","PartitionKey":"pk3d5515b5","RowKey":"rk3d5515b5123","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"SxWFp4b22t8eRoNU2l9Oxt35dp3Z1J6359L/BYfTEn42rAnVmJIwmA==\", + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"VDYWTvPBrqQ/1lQcHGa4Iw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"M71u1O8dGUkXnymmf+hRAw==","sex@odata.type":"Edm.Binary","sex":"Kv9noHuNJelKvDgqAaxwUQ=="},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A40.3159994Z''\"","PartitionKey":"pk3d5515b5","RowKey":"rk3d5515b5123","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"UKfgC2fNVmzLqPkVWd818RsSbLDrNcBDu6JCYnKSsyykDk/844Ifaw==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"MNMDqxh62v/52DGPPgIjgg==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"t1MLGoML69HpUWOtwkpptQ==","sex@odata.type":"Edm.Binary","sex":"FQ6SjBEYxo+jRR3gaJUT0Q=="},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A44.5434079Z''\"","PartitionKey":"pk3d5515b5","RowKey":"rk3d5515b51234","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"9WXfWjPnpoxiGOD2Q99VQ0z3HD1jkI15dUWiL2427dk43MeCXWMD0Q==\", + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"Uf7NSB0Nwr+EY1/ohuvSrA==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"R/8ku+xeg52rcm8yvAX39g==","sex@odata.type":"Edm.Binary","sex":"qpdMMqLg8mIQA80dzmHJ4w=="},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A40.3159994Z''\"","PartitionKey":"pk3d5515b5","RowKey":"rk3d5515b51234","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"j02A4FgNqfm0Yz6wgl0WaAmTQW2hF/0sz7z/VQylcconPEv/Oe6L+A==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"fEC5NbZCzj6S7ZL2SbhCHA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"2pCN4Q851nrdHg8G/hH61g==","sex@odata.type":"Edm.Binary","sex":"G3P4JH4c8XhYPcS80NSSWA=="},{"odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A44.5434079Z''\"","PartitionKey":"pk3d5515b5","RowKey":"rk3d5515b512345","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"vIXe4Eyc+2rGisIK4fCZRO4+3PbRL5w2Xp1e+HTGseu8x9lPcp0hZg==\", + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"00CVmqsDoYt/aFwM43hggw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"tL4BVTKcG3eoW/4bavjf1g==","sex@odata.type":"Edm.Binary","sex":"yT6+MpyICi/LF9kmZEXELA=="},{"odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A40.3159994Z''\"","PartitionKey":"pk3d5515b5","RowKey":"rk3d5515b512345","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"/1r7dlMyczLaxumPrXhoeciyFD1NjOIunoEK7j+1u+zJ/kjz5IZmog==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"7w2VaC55Hv3+/8scIwgbZw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"etP0efkbCOgLtqbAiSoniA==","sex@odata.type":"Edm.Binary","sex":"XOuGHNlX4flzFGvA0UBVVA=="}]}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"DntC6uwlU8WEiCfopreh+A==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"2Jc6t9EcVVAnyIhRnvhfBA==","sex@odata.type":"Edm.Binary","sex":"JelINj1vgeTzC4VJyyyGXA=="}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:39 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [12b97d80-0002-0110-0e09-fc2467000000] + x-ms-request-id: [9ff48b4b-0002-010d-2a03-fdfd8d000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_replace_entity.yaml b/tests/recordings/test_table_encryption.test_replace_entity.yaml index bc51dffb..450a8a2d 100644 --- a/tests/recordings/test_table_encryption.test_replace_entity.yaml +++ b/tests/recordings/test_table_encryption.test_replace_entity.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [989850ae-67fc-11e7-87f2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c8f83c98-68f6-11e7-bd7f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:40 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable63e810f7 @@ -27,29 +27,29 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable63e810f7(PartitionKey=''pk63e810f7'',RowKey=''rk63e810f7'')'] - Date: ['Thu, 13 Jul 2017 18:53:44 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A44.7840726Z'"] + Date: ['Sat, 15 Jul 2017 00:44:40 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A40.6926449Z'"] Location: ['https://storagename.table.core.windows.net/uttable63e810f7(PartitionKey=''pk63e810f7'',RowKey=''rk63e810f7'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [02037d02-0002-006b-1709-fc0982000000] + x-ms-request-id: [f4b1c321-0002-00bc-7a03-fd43a5000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: '{"PartitionKey": "pk63e810f7", "RowKey": "rk63e810f7", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "pSMBocOoy6VEJVBkVPuBIA==", "sex@odata.type": "Edm.Binary", + "Edm.Int64", "sex": "8CQQXuTgYxi0iA3vZBskmw==", "sex@odata.type": "Edm.Binary", "name": "John Doe", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", - "clsid@odata.type": "Edm.Guid", "_ClientEncryptionMetadata2": "vtj4ooek04hjWVIbweJIkw==", + "clsid@odata.type": "Edm.Guid", "_ClientEncryptionMetadata2": "U6Iqz2ijZBRSiOu1WPnSEA==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": - "{\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"cOJUieO7QZKD2/ufd8cgiCtvefYPBTEgR7LrkYD5GT3Q8NBXs2Gshw==\", + "{\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"KybHmQQC+V5wQgIpmLRk1i93IbIxH6FsuSW840A1va8Syr7AvbBrTQ==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"ZfgCdlYnsHadH6Mu6AjJ6g==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"RVuiMO5FbRSKutJqEXBq8w==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -58,9 +58,9 @@ interactions: DataServiceVersion: [3.0;NetFx] If-Match: ['*'] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [98ab4134-67fc-11e7-9c60-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c90bd580-68f6-11e7-9e08-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:40 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.table.core.windows.net/uttable63e810f7(PartitionKey='pk63e810f7',RowKey='rk63e810f7') @@ -69,11 +69,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:53:44 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A44.7850726Z'"] + Date: ['Sat, 15 Jul 2017 00:44:40 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A40.8847384Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [02037d10-0002-006b-2309-fc0982000000] + x-ms-request-id: [f4b1c32d-0002-00bc-0303-fd43a5000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -83,28 +83,28 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [98b5a3e8-67fc-11e7-8eff-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9124a34-68f6-11e7-8e82-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:40 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable63e810f7(PartitionKey='pk63e810f7',RowKey='rk63e810f7') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable63e810f7/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A44.7850726Z''\"","PartitionKey":"pk63e810f7","RowKey":"rk63e810f7","Timestamp":"2017-07-13T18:53:44.7850726Z","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"cOJUieO7QZKD2/ufd8cgiCtvefYPBTEgR7LrkYD5GT3Q8NBXs2Gshw==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable63e810f7/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A40.8847384Z''\"","PartitionKey":"pk63e810f7","RowKey":"rk63e810f7","Timestamp":"2017-07-15T00:44:40.8847384Z","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"KybHmQQC+V5wQgIpmLRk1i93IbIxH6FsuSW840A1va8Syr7AvbBrTQ==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"ZfgCdlYnsHadH6Mu6AjJ6g==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"vtj4ooek04hjWVIbweJIkw==","age@odata.type":"Edm.Int64","age":"39","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","deceased":false,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","married":true,"name":"John - Doe","other":20,"ratio":3.1,"sex@odata.type":"Edm.Binary","sex":"pSMBocOoy6VEJVBkVPuBIA=="}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"RVuiMO5FbRSKutJqEXBq8w==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"U6Iqz2ijZBRSiOu1WPnSEA==","age@odata.type":"Edm.Int64","age":"39","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","deceased":false,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","married":true,"name":"John + Doe","other":20,"ratio":3.1,"sex@odata.type":"Edm.Binary","sex":"8CQQXuTgYxi0iA3vZBskmw=="}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:44 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A44.7850726Z'"] + Date: ['Sat, 15 Jul 2017 00:44:40 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A40.8847384Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [02037d28-0002-006b-3609-fc0982000000] + x-ms-request-id: [f4b1c33b-0002-00bc-1103-fd43a5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_strict_mode_policy_no_encrypted_properties.yaml b/tests/recordings/test_table_encryption.test_strict_mode_policy_no_encrypted_properties.yaml index 19c74446..977ba68e 100644 --- a/tests/recordings/test_table_encryption.test_strict_mode_policy_no_encrypted_properties.yaml +++ b/tests/recordings/test_table_encryption.test_strict_mode_policy_no_encrypted_properties.yaml @@ -7,12 +7,12 @@ interactions: "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", "_ClientEncryptionMetadata2": - "5H3DYZbaAU1nnoDvuzJtfQ==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", + "y/ge0Zgc2QEH4I1mNOnaPg==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": \"key1\", - \"EncryptedKey\": \"ldw+mQtMqLWbrhEYvsgXsF9LLU44mOTmEU0sGCikGsAypQfOiKhBwg==\", + \"EncryptedKey\": \"RfpHIdm5yRwLrCpAL9qzFlwPAptDcfJYD0rdvgJLRgGcWSXpttNhvg==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"ZLN2PsIU0CEOZA2ggGp6Rg==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"CmumgWJQLqgygFDE8YgELg==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -21,9 +21,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [98e5d536-67fc-11e7-b256-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9416614-68f6-11e7-a372-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:40 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttableea421cc0 @@ -33,13 +33,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttableea421cc0(PartitionKey=''pkea421cc0'',RowKey=''rkea421cc0'')'] - Date: ['Thu, 13 Jul 2017 18:53:44 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A45.3185562Z'"] + Date: ['Sat, 15 Jul 2017 00:44:41 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A42.0401523Z'"] Location: ['https://storagename.table.core.windows.net/uttableea421cc0(PartitionKey=''pkea421cc0'',RowKey=''rkea421cc0'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [918cb666-0002-0119-7809-fc3ee9000000] + x-ms-request-id: [73c36cf9-0002-0132-5403-fd4a51000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -49,28 +49,28 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [98fa716c-67fc-11e7-a010-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9551058-68f6-11e7-bdb1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:40 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttableea421cc0(PartitionKey='pkea421cc0',RowKey='rkea421cc0') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableea421cc0/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A45.3185562Z''\"","PartitionKey":"pkea421cc0","RowKey":"rkea421cc0","Timestamp":"2017-07-13T18:53:45.3185562Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","name":"John - Doe","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"5H3DYZbaAU1nnoDvuzJtfQ==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"ldw+mQtMqLWbrhEYvsgXsF9LLU44mOTmEU0sGCikGsAypQfOiKhBwg==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableea421cc0/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A42.0401523Z''\"","PartitionKey":"pkea421cc0","RowKey":"rkea421cc0","Timestamp":"2017-07-15T00:44:42.0401523Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","name":"John + Doe","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"y/ge0Zgc2QEH4I1mNOnaPg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"RfpHIdm5yRwLrCpAL9qzFlwPAptDcfJYD0rdvgJLRgGcWSXpttNhvg==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"ZLN2PsIU0CEOZA2ggGp6Rg==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"CmumgWJQLqgygFDE8YgELg==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:44 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A45.3185562Z'"] + Date: ['Sat, 15 Jul 2017 00:44:41 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A42.0401523Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [918cb67a-0002-0119-0909-fc3ee9000000] + x-ms-request-id: [73c36d04-0002-0132-5c03-fd4a51000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_table_ops_ignore_encryption.yaml b/tests/recordings/test_table_encryption.test_table_ops_ignore_encryption.yaml index 6388d8bb..cc6a6460 100644 --- a/tests/recordings/test_table_encryption.test_table_ops_ignore_encryption.yaml +++ b/tests/recordings/test_table_encryption.test_table_ops_ignore_encryption.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9932ce06-67fc-11e7-961a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9907c06-68f6-11e7-acc2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:41 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,12 +21,12 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''EncryptionTableOps65551665'')'] - Date: ['Thu, 13 Jul 2017 18:53:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:41 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''EncryptionTableOps65551665'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f40ca536-0002-0023-2909-fc3b1f000000] + x-ms-request-id: [82d374f2-0002-00f5-7003-fd70c5000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -36,9 +36,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [99487346-67fc-11e7-933c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9a4f4b8-68f6-11e7-b612-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:41 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables('EncryptionTableOps65551665') @@ -47,11 +47,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:41 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f40ca53d-0002-0023-2d09-fc3b1f000000] + x-ms-request-id: [82d37501-0002-00f5-7d03-fd70c5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -61,23 +61,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [994dea22-67fc-11e7-8c69-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9a9e8e2-68f6-11e7-a126-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:41 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables response: - body: {string: '{"value":[{"TableName":"CAPStable95217c74610847f795a116878ecde584"},{"TableName":"demotable"},{"TableName":"demotable5"},{"TableName":"EncryptionTableOps65551665"},{"TableName":"newtable"},{"TableName":"pemari020817a"},{"TableName":"people"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e90"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e91"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e910"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e911"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e912"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e913"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e914"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e915"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e916"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e917"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e918"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e919"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e92"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e93"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e94"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e95"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e96"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e97"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e98"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e99"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab170"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab171"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1710"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1711"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1712"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1713"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1714"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1715"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1716"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1717"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1718"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1719"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab172"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab173"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab174"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab175"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab176"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab177"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab178"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab179"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f0"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f1"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f10"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f11"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f12"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f13"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f14"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f15"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f16"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f17"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f18"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f19"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f2"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f3"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f4"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f5"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f6"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f7"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f8"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f9"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e60"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e61"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e610"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e611"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e612"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e613"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e614"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e615"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e616"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e617"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e618"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e619"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e62"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e63"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e64"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e65"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e66"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e67"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e68"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e69"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f70"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f71"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f710"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f711"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f712"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f713"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f714"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f715"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f716"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f717"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f718"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f719"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f72"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f73"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f74"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f75"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f76"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f77"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f78"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f79"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f21"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f210"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f211"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f212"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f213"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f214"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f215"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f216"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f217"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f218"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f219"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f22"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f23"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f24"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f25"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f26"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f27"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f28"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f29"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a920"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a921"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9210"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9211"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9212"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9213"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9214"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9215"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9216"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9217"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9218"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9219"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a922"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a923"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a924"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a925"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a926"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a927"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a928"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a929"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e220"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e221"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2210"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2211"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2212"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2213"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2214"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2215"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2216"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2217"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2218"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2219"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e222"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e223"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e224"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e225"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e226"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e227"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e228"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e229"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c70"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c71"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c710"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c711"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c712"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c713"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c714"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c715"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c716"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c717"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c718"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c719"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c72"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c73"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c74"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c75"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c76"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c77"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c78"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c79"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b0"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b1"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b10"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b11"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b12"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b13"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b14"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b15"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b16"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b17"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b18"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b19"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b2"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b3"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b4"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b5"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b6"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b7"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b8"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b9"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c10"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c11"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c110"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c111"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c112"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c113"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c114"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c115"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c116"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c117"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c118"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c119"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c12"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c13"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c14"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c15"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c16"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c17"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c18"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c19"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b0"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b1"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b10"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b11"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b12"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b13"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b14"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b15"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b16"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b17"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b18"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b19"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b2"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b3"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b4"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b5"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b6"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b7"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b8"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b9"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a200"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a201"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2010"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2011"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2012"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2013"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2014"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2015"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2016"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2017"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2018"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2019"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a202"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a203"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a204"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a205"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a206"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a207"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a208"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a209"},{"TableName":"T001a0d2027f54dc0b9f93dd5f349785b"},{"TableName":"t00b14916910d42a796d35364e302075e"},{"TableName":"T00c393541b8f47469538e3632616c763"},{"TableName":"t01efb689725a4ae3b47fdc2575a19fa1"},{"TableName":"T02118a1eb5f248bea693e0e71fd097ee"},{"TableName":"t02817ec72156410ea2ddb5081f30bf57"},{"TableName":"t03aac74f336e4eb2923c221833a5bd4b"},{"TableName":"T03c5fea258d345e9944cfd9b9a8386f8"},{"TableName":"t048f72a916604721ab12298e7c3aaa53"},{"TableName":"t0563f3c5ed4c44e08f14d9ee19cb62c5"},{"TableName":"t0579e1d5c78a4c0598d8a5243cf43e65"},{"TableName":"t058f55460f50431d9a1109489fa76d14"},{"TableName":"t06249c0d5f6e431db554d338e64058f2"},{"TableName":"t066fd88625494f779d532ce67910a27c"},{"TableName":"t08698e98708d450e9e14297d9fb922b7"},{"TableName":"t09425794c2a149babf57b94c9230916a"},{"TableName":"t0a2646b3c45b4de3a512c5ca917f078e"},{"TableName":"t0a8dc1d7f26445e79d61495be7b0c7c0"},{"TableName":"t0ab3375e9251427abe9057111e156759"},{"TableName":"t0af90339dd2446af9a3147b69fcfa594"},{"TableName":"t0c41c70c0af84bd88518e3fcf73aa479"},{"TableName":"t0cb6bad4131f44b7964d9c8f737acc4c"},{"TableName":"t0e7da6e28794415883dab9336c90cb90"},{"TableName":"t0eda652c09164dc1a9d8c53a732ea9dd"},{"TableName":"t105c4852580c4a41a534dfbe3c9469be"},{"TableName":"T10ffcc88fab14fb2ba3d7a1394eeb564"},{"TableName":"t128e736ea01249eabcbdb2cbf17a2de8"},{"TableName":"t13818bd160004e328f5bd59ea78e05b8"},{"TableName":"t13b954f8935243149d27331fd2d6d649"},{"TableName":"t140b55e16ebd49b09befd9666d62d1e0"},{"TableName":"t1484c4f4519d4480a52534e9aefcde4b"},{"TableName":"t158b25ce8be14b5280432b79a1307750"},{"TableName":"t18f1e389c0904a78965d9976e401f78b"},{"TableName":"t19f50a9ce2864924ba2b2354cafc1830"},{"TableName":"t1b88bfa490d14c91bb849c5ef94303e3"},{"TableName":"t1b8bebfd31fc487b8a5f7922559aac11"},{"TableName":"t1bc1f75399fc437b8df9db1d3205cc1b"},{"TableName":"t1cb58996b8234759b9ddc8d4bf7288e7"},{"TableName":"t1d79196c24e143aa94371dfee49d87af"},{"TableName":"T1e058ffab15b4a6386c7bd4ebede17ab"},{"TableName":"t1eda7153fa8d4eab95f97575842cce54"},{"TableName":"t1eeb273ecfcd41b0be3c2db5275edc36"},{"TableName":"t1f13b22051c34ecfa86cfa2c54a460dd"},{"TableName":"T202b90f3d1b646a2abdbf2762dd158d3"},{"TableName":"t210bba068de14c83adfc9d8accdc54e9"},{"TableName":"t226f3597cb4840f5a163608200165f7e"},{"TableName":"t22ff30a42e304fc5aa04f2f8f4ca5720"},{"TableName":"t2322401054214fc3a418f475764acf67"},{"TableName":"t239c475ba4104834a67ead593ebabb11"},{"TableName":"t239fdf5026804cbcb7c14b09ac2fdbc0"},{"TableName":"t23c597ced1f3412c92513754a9aa1e6a"},{"TableName":"T2483038bc7694206ae1a99f644b13dfa"},{"TableName":"t24a991a33d6b4c5fa24c680f57622167"},{"TableName":"T24bf8de6a2be48d8acd01c327e3f77a7"},{"TableName":"t24e4a1806ecb4495ae8238c680218069"},{"TableName":"t2520c291fb53413985d3624a3fbb89cb"},{"TableName":"t25ac64dc7c4e4d89aaa44c98d93ad3d9"},{"TableName":"t2649d805c9bd418695e06819306aeb74"},{"TableName":"t268ede48e84a4eadb2adf667a9ef1c63"},{"TableName":"t2768a2c7f0184acf92481a8d2ae2ea5c"},{"TableName":"t279cddab984a40f7afc1e06bd42aae2a"},{"TableName":"t284869193e3c49c5921444ddbbc520f2"},{"TableName":"t289074fe5d88471f93b67498416d77e7"},{"TableName":"t2a808a43b1df42538f7d0e6528deb981"},{"TableName":"T2c064f7225e646ccb03d0aa773d4118e"},{"TableName":"T2c17828b990247e5843613f40b8f83fd"},{"TableName":"t2cd13915b2a34f27bdc41a62928af15b"},{"TableName":"t2d600d68aed5423eb1f45cc0b81451d8"},{"TableName":"t2dfe60179b2b45a6a1d9a787ef43a00c"},{"TableName":"t30146d92cf8843699a583e457a6371dd"},{"TableName":"T30385924e36641499738e07546aea50e"},{"TableName":"T3054f4f748834cab95768cee54fe0e9c"},{"TableName":"t311273edb2024ca6a84e97d3435f9f5b"},{"TableName":"t31a694ed5a3643e3a1043f022a1c8c36"},{"TableName":"t3210579cd44241e29d2113091739781a"},{"TableName":"t321ad756750340bfa89a52aa59483525"},{"TableName":"t353d025c335c4afb813fb5865ee15c94"},{"TableName":"t356b63d49c4a48c4b0920cc5e71b1c1e"},{"TableName":"T35a29d9c14ab4e1b88da732a81aaee90"},{"TableName":"t35e3e2a74268499abe912ee7040b061e"},{"TableName":"t3605f3775d72472bbe5f2c555a3337fd"},{"TableName":"t369261b3de074f178984f2c1f3f119ef"},{"TableName":"T373e0f31c2b941c6ab936b346b685442"},{"TableName":"t37d2bb67cd4347f8a4779f4ee7e80cf5"},{"TableName":"t382cd0a38b554a648166c036b9f9ca20"},{"TableName":"t396caf1032304f6a95f5ce410bc8a52f"},{"TableName":"T39d7379f916a4cc2890beee365c70a1f"},{"TableName":"t3abe5dcb8022415d9be471cdb03f049f"},{"TableName":"T3dddd798c85e455aa703caa086e68e14"},{"TableName":"t3f3e3e8ab1824c7488a399390467e0a9"},{"TableName":"t3facb27d75e94310b9a48ab2fc77666b"},{"TableName":"T431b4306bebe49949c20b23d670970b8"},{"TableName":"T4462b5289b13422ab679dbc462420699"},{"TableName":"t44b8d6ca247b4bbdbb14c745e993a59a"},{"TableName":"t45079372c0ec40a7b902b9529aac1697"},{"TableName":"t453fd7a0784046a48c8ed928c09b6f8d"},{"TableName":"t45b21c561b4040dcb2beabd809cd91b3"},{"TableName":"t47a49bafb9f640f4943cb3ba93eb409c"},{"TableName":"T493949ca50664a4db5468fa0e2390eb2"},{"TableName":"t4a9c71986f7c429b84a79b8fbdbd0df3"},{"TableName":"t4aba1d73f80e4c96b3c8b25cf7703d06"},{"TableName":"t4be1e227925a4c0ab74c17dd906b2feb"},{"TableName":"t511fa36357c54e55b09d26acfd95ac9d"},{"TableName":"t51310554d1e74db7bf00532c18e2295a"},{"TableName":"t53b7ef24d31f4e919150806b799df59b"},{"TableName":"t542d01077d6d47e498b1585a67e45c13"},{"TableName":"t548f026bbff8481d94d8aa221ed5f23f"},{"TableName":"t555d34b0ced641f4a227ece8a08c84b5"},{"TableName":"t55e8ca02f1524fbdb99ca2692f4e5e12"},{"TableName":"t56c67828e7d049168adbbcb26ead2c14"},{"TableName":"t57235838b0194a05b809271d11444c34"},{"TableName":"t577cb81f82414d1f8352a85afb1ff1ba"},{"TableName":"T590a53ba8aff41d7affeac5e4efc5593"},{"TableName":"t5a46703596f84649ab8c312a2eed92b1"},{"TableName":"t5e1ad56606a64d96b2718456750b2513"},{"TableName":"t5e3665cbb8e1401c968eab1465d57c00"},{"TableName":"T5e7c50920d164e52ad5bc44821e00f2b"},{"TableName":"T5eb0bb280d7340a2b3dc0267d752d3a9"},{"TableName":"T5ed3e70ac822466a8c141aa743e8dc65"},{"TableName":"t61b845ed4f8e4cff9badfcbcd3082a7e"},{"TableName":"t61e86f73b6c2455b81cb999b909f7f61"},{"TableName":"t6329124794cf4df09c8677cd32f9d067"},{"TableName":"t63d6f3c5f0b842bb978ad40b91047825"},{"TableName":"t675d26e2830a49cb8ecf614e9c4fdde1"},{"TableName":"t68b67dda5bc744bfbb35354087beb505"},{"TableName":"t6ae53578e96e4bd48c40b31a56dae2d6"},{"TableName":"t6b863737a073438cbc3c6798f6ecc854"},{"TableName":"t6ce27c3d3aa74568aeba3a95d9acb8e0"},{"TableName":"t6dd7b90432da494ebb0558a063f7816e"},{"TableName":"t6f268262f04843e6a55eeb8167218ebc"},{"TableName":"t6fe7d571364b4226ad68cf1f29a97146"},{"TableName":"t6ff0f70deded43229966de9b5ca786e0"},{"TableName":"T6ffecac0d10b40c4a4bc053d6ea3a5ca"},{"TableName":"t706ec073d02646d0b6c57e840fbbfa14"},{"TableName":"t72d7fed3dd234889bd1948913e3e7656"},{"TableName":"t734c858a2b9640109e3e140b9350438a"},{"TableName":"t74fd2e8d8c354acfac7f7a6501e3c5a9"},{"TableName":"t765f557c87454c15b26ff64ab0bc76dc"},{"TableName":"t77205a1d70c648ee86b8b1f05192acf3"},{"TableName":"t79963f4d52a64e559f71573826da3a7c"},{"TableName":"T7b2779d3af704a44a96783537577f746"},{"TableName":"t7d8b361486d44becaf62f8469dd188f8"},{"TableName":"t7e300b947a194e7794e05d103c54c78a"},{"TableName":"t7eb357cbe7b84ecc891b8a8f6aeb087d"},{"TableName":"t7f50cce2a10a49db879cccf58aaa581c"},{"TableName":"t7fd512ff4cfe47929c2fe50b7e7031ed"},{"TableName":"T7ff2cfac881c47f3a07cf75d347dce8a"},{"TableName":"t81f68ae476354d91a1789ea46d45aab5"},{"TableName":"t82d43e3d401142c894bc0198adf6caa6"},{"TableName":"t85152cd675784189bd53a6c71092f408"},{"TableName":"t8599ac762b1c4f1ab59b8d196e69b43c"},{"TableName":"T85db1fa2441644faabddc956b280a7f2"},{"TableName":"T85eac84d5b4e49b09082209fff382de7"},{"TableName":"t86436862f7644dcd907fe4137b195199"},{"TableName":"t87b60d612fdf43e19a1a9bc071aad2e0"},{"TableName":"t88f02fa7c8964c288cd1504553d13c8a"},{"TableName":"t890ffe96bd024382a1a42248e5849f57"},{"TableName":"t899d65a253a94846a3e6ce294a2afa58"},{"TableName":"t89a29b851d934a0e8451480573c514bd"},{"TableName":"T8a87309408874ebdb0bf79c047513321"},{"TableName":"T8af1ee954b58477f91b0397bdc397067"},{"TableName":"t8bb2e8c5498e4f8b9c11c3ea9a588ca1"},{"TableName":"t8d66fe617fc246dfb91773f3f66dc3c5"},{"TableName":"t8da2a859a73a457c8ee6464472110d95"},{"TableName":"t8dcdfba99dd6482380271aedf98af15e"},{"TableName":"t8f0da058f9944a3f891491e58ebbae5b"},{"TableName":"T8f890bca9f7c4e28b32e5dbc9bb556d0"},{"TableName":"t905ab23943424b79b21f9328bed4b7b4"},{"TableName":"t91f9034c55624947a819d2f22015c47f"},{"TableName":"t93a43796e9a34d2482f30ee0b3029499"},{"TableName":"t93d204249d744b1cad157eb4c16c2204"},{"TableName":"T954210538a4c48d6b9d445ee0e7a78ae"},{"TableName":"t957b2df1c8224a428a50831287be92e9"},{"TableName":"T962f4707d2a94b1c8a97cbe434910f2c"},{"TableName":"t967f39d0ae3442f7a8c3a46ae4fc5144"},{"TableName":"t9c7df29f73364e34be2d5e305a3755b1"},{"TableName":"t9c9556a6c9b040269d6edd9eabea24b6"},{"TableName":"t9c99f896e3a042b38652c11651a40228"},{"TableName":"t9d8311208d96439d88bd6080162d9d8a"},{"TableName":"t9e009d9c1b2d4861b0739b1dae859f1d"},{"TableName":"t9efd20a9ee7c423fbb2304bd84edd06e"},{"TableName":"t9ff6174fab9e4734b4c041f95c30a34f"},{"TableName":"Ta009ccc8e6014f1e98257cc9cac7f1ba"},{"TableName":"ta0c1ef135d6b4878b49e149a5c5fbe0e"},{"TableName":"Ta0e9e7db38d246238553573379cb977b"},{"TableName":"ta364010aa3ef49dbaa7d886a7a6120f8"},{"TableName":"Ta38a095e4a9346a0b72f5709638dde4e"},{"TableName":"ta3ff0eec988c47979568e82b9427b0bb"},{"TableName":"ta42aa2e01a4c426ab36c61ef208b9eba"},{"TableName":"ta511e453d9ed49e3898cda8a72b5a6d9"},{"TableName":"ta62e883698624762abab293af6c0a30c"},{"TableName":"ta7ab83d1cb6340bfaa3f7ab6a06550b9"},{"TableName":"ta7cf5249eac547a0a4bbf21bf3e98af6"},{"TableName":"Ta7db20ed615b4e919a1e22bbbde731f1"},{"TableName":"ta85b7b50521c4ce28d087d30aa9d2edc"},{"TableName":"ta8f22e668434424883761b07c8010721"},{"TableName":"taa6ad663d5c14dd38ef18065b15115b5"},{"TableName":"table21630f2d9b85c404aaf89e4164727addd"},{"TableName":"table22d62d92d0a4943109b3db56da5c64494"},{"TableName":"table4a2776ff8a6745649ef187562e43be05"},{"TableName":"tableb373389daa4b4d95809ee0b49f319461"},{"TableName":"tac0a7d4872884a81b683b8a8c0fab558"},{"TableName":"Tac2405d7922f4e028a2d5d141c1010da"},{"TableName":"tacef1340a5c74e52b9db4ffa187c47d2"},{"TableName":"tad8ca46eadd54c91b426d3430b501e79"},{"TableName":"taede7221b0c4450d821c9dd189aee51b"},{"TableName":"Taf6bc9e5872b4452bfdc5f0498963bf1"},{"TableName":"Taf9ec0abc3774d8184b57738cfb115ea"},{"TableName":"Tafc1105243e14b4e8a99357bb36faddb"},{"TableName":"tafeebf5ebb26414ea441d8c72b5d36bd"},{"TableName":"tb06ca3bc70f747ecafcaad0b03ba3306"},{"TableName":"tb072979191a944f5b038e2388307c721"},{"TableName":"tb0b2b6c1895949e688a9fd7c8509099d"},{"TableName":"tb2b2c8e9830c4ca7aa23ffdec8ceaa3a"},{"TableName":"tb31a2b4bc50f46148462bcbeb318f248"},{"TableName":"tb36cc2f734634127af837a6732af8cb8"},{"TableName":"tb40c81c918454b26a154ec32a7a039fa"},{"TableName":"tb4a84a7d225d44e09ea84d8aedadefdb"},{"TableName":"tb6135780875849a6b0559471d4fce527"},{"TableName":"tb8280eaa240b45d3a73d8d89a1a23abf"},{"TableName":"tb8bad8692d484baa8e9dce2a3160b409"},{"TableName":"Tb8d01a6fb7ff49729e31749b3b68feb8"},{"TableName":"tb90ab7b977094ee3b879c365fd1212d4"},{"TableName":"tbb3940ead90142f1bd1924b6ee766e83"},{"TableName":"tbce81459f8754c72b8b54e18f7b8917e"},{"TableName":"Tbd248e86f6be4014b0f979b521c9d2d8"},{"TableName":"tbdbe5b3de42243179dd89c32f4c1fcf1"},{"TableName":"tbec1c4c37d6140c294e1ddd2524d8a95"},{"TableName":"tbed01ddee57444a998104655e3d688f2"},{"TableName":"tbl000686f5e73b455081f27370ef8fa5f2"},{"TableName":"tbl0062d9ad6e3b4d55a46d868fbb656405"},{"TableName":"tbl00b2d2fffeca4828b0fac60517fb6aad"},{"TableName":"tbl00b31f1d3cb84e88a3b6ed6a4b3cdf41"},{"TableName":"tbl00e816e8850b4d6c931b55810fbf13c9"},{"TableName":"tbl00f63435a78b49ac82ffc05c4688cb11"},{"TableName":"tbl017a1c1d754447d294e8f267f96b5794"},{"TableName":"tbl01a0c6c00f5d44c7ae88c0bb1e8a2259"},{"TableName":"tbl01fe668f98014ffebc4af382f491ffa8"},{"TableName":"tbl02253db68e3e4197a560b7b0c122e38e"},{"TableName":"tbl025cc69fd70d4e458fe3dc50b24f4485"},{"TableName":"tbl02a1e807822a43a593091f422cd3e0b5"},{"TableName":"tbl0336ce478d4e42cdb3977f83c9c6bb2d"},{"TableName":"tbl0347101f08ca4a12942fb9acab029f9d"},{"TableName":"tbl03ee1a98ea57469ab582d0e254a6646b"},{"TableName":"tbl04abaa521c874037a3d33b588b6b62a6"},{"TableName":"tbl05ca8399c8274af5a6a7d51fe3a5e317"},{"TableName":"tbl0602a32f162a4380bbccfaa5b8fde60d"},{"TableName":"tbl062917b122de4ad2a3aa1097901755ad"},{"TableName":"tbl063ad89c7f284be5990471536f02fd82"},{"TableName":"tbl070e0a69af85489fb733043f3510fd79"},{"TableName":"tbl0761b43d82f94d5fa898a7a818e75558"},{"TableName":"tbl0866f37eaaca47b49261d7b67642720b"},{"TableName":"tbl0867b76ab27a4b12ad8350a1362130af"},{"TableName":"tbl086e9d54d5554641aef4ae7ba708b844"},{"TableName":"tbl088b12d9a2b54ad885c977f69c1bdd0e"},{"TableName":"tbl09247a02e70f482294897de91deb60b6"},{"TableName":"tbl0987f3c091124031905b1c0216ea5772"},{"TableName":"tbl099350c8341e4756a92b56a915b55820"},{"TableName":"tbl0a1b57a26c2243789f55350b005c2a95"},{"TableName":"tbl0aa378c8cbac4e84acaa6a956beee72d"},{"TableName":"tbl0b03168b578942fb8e456e431a68e401"},{"TableName":"tbl0b17bc70fb2c4a8f971ddb7a29c616e5"},{"TableName":"tbl0c840a50343245af8a5f9213dbaa33c3"},{"TableName":"tbl0c9f63b85b654089b27b397e379bd332"},{"TableName":"tbl0e5b1f4b46c842cda6bcbdc273c9d959"},{"TableName":"tbl0f6674e13e1a42ecbef25817ce5ac7db"},{"TableName":"tbl1129e83a15dd40afa6adcd78530a93a2"},{"TableName":"tbl11cf25acd7f045419e7a4254a8706bbb"},{"TableName":"tbl11f519a7b2dd42beab59d87ce79778f8"},{"TableName":"tbl129fece2b1e14eac8f5426afceec2fef"},{"TableName":"tbl12c089ca9bba45d988d48cdcbfcd7714"},{"TableName":"tbl1396fcecec3244a1971f1bfca86f4c3f"},{"TableName":"tbl13ebfd76f5a7457da09773af892026f4"},{"TableName":"tbl1464e550a2a740aeb921328c3b627a64"},{"TableName":"tbl149d25d5bac44a508ea877412162c1fb"},{"TableName":"tbl153ccbf1cd7a4d6a97b37ceae95198a8"},{"TableName":"tbl1543c4dc8a194b3795b3b5994414db0d"},{"TableName":"tbl15bcd127f4304589806064738ddfa48f"},{"TableName":"tbl15d1f2b96b584cdf9d82f0571918147f"},{"TableName":"tbl160e579c0ca44ca0837545bcc3d8baf2"},{"TableName":"tbl177fd5671a244bc0ac4f054b70e9929a"},{"TableName":"tbl17a2e79c12164ffca5b897d9e3566445"},{"TableName":"tbl17a7c97c0631462db8ad520371c60e9d"},{"TableName":"tbl17b699c464404eb584fb7d678c6458a8"},{"TableName":"tbl184df5fe1985430f8548fbb72cf77a02"},{"TableName":"tbl18c942f65d7f46058b70d1b3102f092b"},{"TableName":"tbl193fa418b54d473fb4d91002bc25b8b9"},{"TableName":"tbl194685be8fab4f5c84df5e4c2d1ce75b"},{"TableName":"tbl196b4ada11be490b9e49ef08393939c5"},{"TableName":"tbl19db8a26582f4002a6441800daf016b5"},{"TableName":"tbl19de788233084bc19064b130e8357643"},{"TableName":"tbl1a083f15a6cc4168bc4e812fdcc2d6c8"},{"TableName":"tbl1ab0b29ad1e445fb9fde751ef7258313"},{"TableName":"tbl1b3253d18ae946e9b58f30977e23a4aa"},{"TableName":"tbl1bb2bf6a3bef4949a858ec877aa3ceef"},{"TableName":"tbl1c19da3958714f25b9e96ea4c73fa6cb"},{"TableName":"tbl1c2a284431334e839fc9b819a664ed7c"},{"TableName":"tbl1d6bb4641a4740adb2a0670653254cd7"},{"TableName":"tbl1ea7e212f7b44ad0a5117caf9878309c"},{"TableName":"tbl1eaab3df395c42b888afcd97491e7c31"},{"TableName":"tbl1fa8959e558b4f88a0416355c66c192b"},{"TableName":"tbl2058344813354d5192d9d5141317b051"},{"TableName":"tbl21353ca572e84646a7d7eab5b98920b1"},{"TableName":"tbl21be34b2ab6b4069a7b9286d6aac5fd8"},{"TableName":"tbl2287cabe49554200b504cd71e4b70b24"},{"TableName":"tbl22b5163cd53646a6abf9bfc4f1e01529"},{"TableName":"tbl232753d1e1b14202bb23a1a987d68aef"},{"TableName":"tbl235b55030614434ea6eae4fbf1f30c5a"},{"TableName":"tbl235ce5ff71c240dfbaecd80bfebf9d73"},{"TableName":"tbl238f9d3cb88a4733a2a71681515e878b"},{"TableName":"tbl23ea4e8bd7ba496f9d0d394b3551cb17"},{"TableName":"tbl242064546b024e0db5b4ddf4b178b599"},{"TableName":"tbl24a874d7844b4d28bfb77b39df57abe5"},{"TableName":"tbl250dabf7345a482a904c9a2d742b37b4"},{"TableName":"tbl2522dfaf74ab499fae7ed23de2047800"},{"TableName":"tbl252b7288d41f4602875738c5b46902cd"},{"TableName":"tbl25943060f45c4fe2988fbe38dc0dc430"},{"TableName":"tbl25d68bbb565b49068252c4c3895fca10"},{"TableName":"tbl26738bdcde044248acb7bf2812cda71c"},{"TableName":"tbl2687b6a44ac04050bd69de37c7377cca"},{"TableName":"tbl269349b9757b4d51bf89321fef98e9c6"},{"TableName":"tbl26a13f11fa134160a0e5df0a4c233b61"},{"TableName":"tbl283353011e664b3c9f867cabfa9aa897"},{"TableName":"tbl28623fa19d1147d899b2bdc30e51f706"},{"TableName":"tbl28a3d0a7584a4cceb682121e36ef4dad"},{"TableName":"tbl29e957d938ae40fea956741c5a2a085d"},{"TableName":"tbl29ee00badd95413b8de52b2e0641a278"},{"TableName":"tbl2a05aa88fcec4b60a9bf64e775cc4eef"},{"TableName":"tbl2c0dbd376b0c4704b9c91b256914ed09"},{"TableName":"tbl2ca29a822fff400da658f9173ed09c22"},{"TableName":"tbl2cc94ee6cea14ec0b7edd99d80769134"},{"TableName":"tbl2d569aafca99458c911ec0f77f3824d0"},{"TableName":"tbl2dfea7cf7f904b98ac3192bc70b97fb4"},{"TableName":"tbl2eb4a0ee48224f278eef1881cabd9b3e"},{"TableName":"tbl2f0b14b34e4349f18dbd6788594e03d8"},{"TableName":"tbl2f47f1af37eb4d0dada1b2411421ef69"},{"TableName":"tbl30415045a54b45e1b5234f0f2e0a7ea3"},{"TableName":"tbl30caacdaaafb4771a4a0d712bfb4db52"},{"TableName":"tbl30ef45fa80804f03a8ca21965713b7f2"},{"TableName":"tbl3109b53f9b634cc6a58d5e5dca87d86c"},{"TableName":"tbl311251759a9146ed839b0b97a3f79b40"},{"TableName":"tbl315e4502eaf8454d91c22de8d676dee3"},{"TableName":"tbl31bb6c083b06469796e2bb20e9a03d60"},{"TableName":"tbl31c7b1bf86144f498790c028d15e44aa"},{"TableName":"tbl3216977b1ab94e17b25b46120cd5e7a6"},{"TableName":"tbl32704a8c4c3847c19beabeb76ffdaf68"},{"TableName":"tbl33e60d15005541cfbd0d79ee571e504d"},{"TableName":"tbl3432d8ab403a4a72ab6c13afe74a9a79"},{"TableName":"tbl358e51c89bf34825b54024d6ad64424f"},{"TableName":"tbl35e53983f2ab4048a9bf6aab3094c277"},{"TableName":"tbl364ee7c62c18418683ecc3347871363d"},{"TableName":"tbl365adf56b556439ba1edabc7a3b151f9"},{"TableName":"tbl36c56d15551f4a899363fa598ca5270c"},{"TableName":"tbl3800688668f2484692b1ef88f9b7dbeb"},{"TableName":"tbl38aac9ba65a44841b46592f078ab6880"},{"TableName":"tbl38d00566ab644059b4f2e96f69d8fb5a"},{"TableName":"tbl397a3361ee8340869a84d274d04273da"},{"TableName":"tbl399171ae046d47fe8c908bd595464a51"},{"TableName":"tbl39a8d39ceb7a4940a11ff41e31dd9d26"},{"TableName":"tbl3a03de6e9d524a08a0eab6aec3752f56"},{"TableName":"tbl3a557984770d4a889af089c0ed662459"},{"TableName":"tbl3a798a2f17e9422f88335d8d14c8b06c"},{"TableName":"tbl3b24670192f24545950a373933e4fddd"},{"TableName":"tbl3bc7998a086c4c7484a140b0f7f192ee"},{"TableName":"tbl3bdd7628294c48299424aad871e44b28"},{"TableName":"tbl3be128b8bb5f4015a2fd867e629f85be"},{"TableName":"tbl3c410b1728144e8487c8b56ba1b9af83"},{"TableName":"tbl3d537ef691fc410aa7dda3646527e4e7"},{"TableName":"tbl3d64fe22decc424684d588554f6f75e5"},{"TableName":"tbl3d8d62a03bec4151aac85f4fbe9daa01"},{"TableName":"tbl3e885cc18775486f83bd1720b718a0fa"},{"TableName":"tbl3ee036273ec4419b9563208ca264203f"},{"TableName":"tbl3f6126816d5f442a9d46b516ce13c63f"},{"TableName":"tbl4006523f6459474f947d799749e347f0"},{"TableName":"tbl409e9679175b45f187717c1c085d7eb2"},{"TableName":"tbl40de65d1b3194b83b4c6b61e8a5c3836"},{"TableName":"tbl4180a4acb1d642c1baec348aac29f400"},{"TableName":"tbl41b3ccbf37ba4862b9446e3795a41f39"},{"TableName":"tbl41cc33b5514d4e368071d9e64c249864"},{"TableName":"tbl428d1377ace146d9b49b95b97718d16e"},{"TableName":"tbl433330a1eca94f6bbdd3aa86950200a8"},{"TableName":"tbl43bb74e873f44575997a7eb0ee78db77"},{"TableName":"tbl43d297ac83974678a99a005c621720ea"},{"TableName":"tbl43eb901812744abe9d1d18dfc1a7bac2"},{"TableName":"tbl440a6bcee011436b8e2de7f58c91b2d6"},{"TableName":"tbl44dbdcb273ad451685707ca3a0bda916"},{"TableName":"tbl44ed2f4580434261bcc7f2c69773ff3f"},{"TableName":"tbl45076da26a6d45f0bc5c50d66d562070"},{"TableName":"tbl45d5f8490eb746809d9692a222175ca9"},{"TableName":"tbl45ee6a55944045b2a226d0526b00f7d9"},{"TableName":"tbl46283514121447a6b4ab7e0ac3f8f334"},{"TableName":"tbl4636d4fca457423db2522b06056960a9"},{"TableName":"tbl46a86137604b4fc8acbb4317b6552386"},{"TableName":"tbl46ec40452ac24751a0d701ee2206d729"},{"TableName":"tbl472ee50446844245a1233928f09ca4f3"},{"TableName":"tbl4732966c1b814ae8ae9f2d254629c9d7"},{"TableName":"tbl47654d9e2c004e3ea2ae81f2d681b398"},{"TableName":"tbl47961e7eb59b461abb09cfa98e0cc12e"},{"TableName":"tbl49102c5b10924f06861ca884fccc3ca6"},{"TableName":"tbl4957b4fca29e4d3bba50854cf7a650ce"},{"TableName":"tbl495c13711c8645b3a8ccb9c7a7bb0982"},{"TableName":"tbl4970173963ca4772b875caa1d942eadb"},{"TableName":"tbl4972366b795345d39cf06a72225e4262"},{"TableName":"tbl49ab5be36b1f499092b8db18ccb782b6"},{"TableName":"tbl4a11f313d4984614b4e7e6828b20e645"},{"TableName":"tbl4a50ad77180941b5a8d11a7c031d21ad"},{"TableName":"tbl4a666cd4e3464d7aa31323831f6f8ceb"},{"TableName":"tbl4ab8422d2aa14695b92229c2341bc80d"},{"TableName":"tbl4b1fbe3f7d1643abaed5ac9a041510cf"},{"TableName":"tbl4b95a88b912f44be90904698aec94771"},{"TableName":"tbl4c08f733bcae4737b0f1165cc8be7ada"},{"TableName":"tbl4c291024a22e4e4fa256a7dfd700e584"},{"TableName":"tbl4c5aa3cece36476fa0963ebeba9b3097"},{"TableName":"tbl4cbee75578ab40a4afbab3ec3a5de2ca"},{"TableName":"tbl4d60d971d54540e58a753ac6004bcc24"},{"TableName":"tbl4dc8de20fc47456a9194920c1e0c8934"},{"TableName":"tbl4de3a029c8d1477e84aca3e1195198c0"},{"TableName":"tbl4e53247bf9934abda381e0d641f334b5"},{"TableName":"tbl4e6176b107f2443fbbec930384d117c1"},{"TableName":"tbl4f0e7268e4c2436f8475e52b03e4d35e"},{"TableName":"tbl4f2ce8d76d6e4ff3bab5ac8bbda73592"},{"TableName":"tbl4f9b05f1cfe0489bb6af4d83ad67bcc2"},{"TableName":"tbl4fb78cdbfe0e4d519c67b53b0c900d22"},{"TableName":"tbl50de9ba6afc8445f8ffd1a4eaf92fb2d"},{"TableName":"tbl50e8dcc9a01449af9736f93c4f419be9"},{"TableName":"tbl51a8eea6cc324c579422ca0b8b168c0c"},{"TableName":"tbl51f5a3fbaabe42f4aead734a88d8262e"},{"TableName":"tbl520a16ddb53c4717a9254300ddb28cb3"},{"TableName":"tbl5210ccde7f7647928f6e78f6eac8afe1"},{"TableName":"tbl52d730e6910f4186a7b5ce1333f1a981"},{"TableName":"tbl532224413f0e4224bcbb318d7d5030f1"},{"TableName":"tbl545fec4dff134c5089fc4da535143c10"},{"TableName":"tbl55b42258b4a14d34bf74832a5832f764"},{"TableName":"tbl5799738a394343c0a9c90dcf649cba5e"},{"TableName":"tbl58314157c3c542ea930faf4de154ad70"},{"TableName":"tbl58599d817c224b75ba33c6268458b099"},{"TableName":"tbl586b85dba22e4dfeaff1ea29f186c27a"},{"TableName":"tbl587723096c544735bfb0d0da21ee22ac"},{"TableName":"tbl5884d57712b648e08288f86253db892c"},{"TableName":"tbl588b7c84383041c2a6b5e0a2d50e3b9b"},{"TableName":"tbl5984166ffc844196ae2b077e20365196"},{"TableName":"tbl59a098c3922e40409b0254a3858a45bf"},{"TableName":"tbl5b057a22cf694c2fbe887c44127a0368"},{"TableName":"tbl5b459448994f4e73af123d102ae7fb5f"},{"TableName":"tbl5b5dbcfe2df54964acc46c1d911687a9"},{"TableName":"tbl5b773e664a9c453a9aa70cd33e9948a4"},{"TableName":"tbl5b95331c604c4365ac859b765f389537"},{"TableName":"tbl5bdb8b2aa56246d69ff24cdc94c397ba"},{"TableName":"tbl5c82747f89114cc29d5caf423d8cd62d"},{"TableName":"tbl5cc3b6835ec04995805b6de6a2e536bc"},{"TableName":"tbl5cc40aa24cc7408a9d0d3db5e51bca7e"},{"TableName":"tbl5d8a046b856a4aeba7c07db2b8361c26"},{"TableName":"tbl5d9fcee1d0d043d0b1339024bd445434"},{"TableName":"tbl5e63aa37bac245729ee3184e286de23d"},{"TableName":"tbl5e74225d83084f61b6a06aa86c334a48"},{"TableName":"tbl5ec485defde24b1f99a3ddcfe40e3e23"},{"TableName":"tbl6026d803fd7a4d3d82852528cb74b494"},{"TableName":"tbl603ceb9e79cc4d4992b84c4183b7aaee"},{"TableName":"tbl6058b6f5f30e432e94881befae4bf154"},{"TableName":"tbl60e7eb2a48274b57bc5ff5eea61a385c"},{"TableName":"tbl60edc9ee02ca49689af7d58d69db816f"},{"TableName":"tbl60f4afb4228c4348b4c0065cddc95c74"},{"TableName":"tbl612314d7ffd545cf9b10bfb2a73b186b"},{"TableName":"tbl612961478ccf4289be7ef49816f68e7a"},{"TableName":"tbl615633100b1c4970896a703af027199e"},{"TableName":"tbl61a55ffa7c9a4afab711668c8005860b"},{"TableName":"tbl62ac44b6c62e48f1b6764eaa3aa436a2"},{"TableName":"tbl62e40b6b9d4a42f6a6e8ea4150365209"},{"TableName":"tbl6326f0a71c5e4c7b9e76d1884ddeac2c"},{"TableName":"tbl6356911923f144718ad862e8d3db283d"},{"TableName":"tbl63664f190d7e4cc88191487feddf007e"},{"TableName":"tbl63b71d4d4cfe4acdb6dfb8e7e9ccc2bf"},{"TableName":"tbl63c6c1534b6346b59e5acf95bf7623f5"},{"TableName":"tbl63cd6482f9c54c6bb52189dcddc9724b"},{"TableName":"tbl63dc7ae20cf44113ae9c59ddf889e61a"},{"TableName":"tbl6485837c60544280a1f04c3b832fad33"},{"TableName":"tbl64d70af300354851805f612594c3e311"},{"TableName":"tbl653b3cbc070e40bfb9ea9747baefe6fb"},{"TableName":"tbl65ba33068ef64b9f95c1038e22b720d9"},{"TableName":"tbl661839bb54174e2d92c5e20d3d6b6d5f"},{"TableName":"tbl665a3a7f18584abe8d13967a6db39434"},{"TableName":"tbl668ea4354635458c98a402950bd8d949"},{"TableName":"tbl66d93ebd92604bbca059de6e1d477674"},{"TableName":"tbl67ae3f7e8df4419a9a8c193aa217d479"},{"TableName":"tbl67b6a9410d1943b5b035adb9473a62d6"},{"TableName":"tbl67d852962d9243a5aed0628e640b152d"},{"TableName":"tbl68981bba1a8b4d46a9e1c3b18ebc46e2"},{"TableName":"tbl692477f37f1447748ddf7dde9ec5709a"},{"TableName":"tbl695a3961c0eb414384c6336b4aaf804b"},{"TableName":"tbl695ac752444e4f3481d9a9ffba8b5638"},{"TableName":"tbl697420bd1bb8431f8e45b32ddf305e19"},{"TableName":"tbl6a3a88221adc4025b19b61159bc61f05"},{"TableName":"tbl6a6e1bd351e648c799f1ea0acbd387c3"},{"TableName":"tbl6af8f29120434f82b5f850c3b6c38412"},{"TableName":"tbl6b20729646464684b7c34e4e8e897ce9"},{"TableName":"tbl6dbb137a974d425f8dc8b1aca1652c0a"},{"TableName":"tbl6dd05d032c464667bdf2490ac45061f4"},{"TableName":"tbl6e8d8497d0e843b7b17c2341c3311167"},{"TableName":"tbl6ebc55c855f5461d8dc3eb391e4a83e2"},{"TableName":"tbl70a4ad03faba477b9f9e850d56cde4a2"},{"TableName":"tbl70c34fbd74ee407ea8b38035f5f4dd2e"},{"TableName":"tbl71ebff1580bd4f0fa88e7da2a7f4777d"},{"TableName":"tbl71ed15e557e44cff85ea96a8d9c8367a"},{"TableName":"tbl7287b263a07844c29cc39d4d5695dbc0"},{"TableName":"tbl7383c9debc234f12a30d79da3a3be57b"},{"TableName":"tbl73b4e67479e64a0789137d24085d8f72"},{"TableName":"tbl73d7c83e67a14db9bd4717126d99e0b1"},{"TableName":"tbl748205f7e9404748ba8afdbb225be01f"},{"TableName":"tbl748adc61d2f04856a07fecb44d493791"},{"TableName":"tbl74db9c051c1441609388b4137b0f809e"},{"TableName":"tbl75f2fd99c12e492fa37ddb3704387033"},{"TableName":"tbl75fec2302b914989bc14e2c34afe9389"},{"TableName":"tbl7626ed6fb2e74eb6a424003e5779ba50"},{"TableName":"tbl7793ec943a1f43268de1cca77f120f18"},{"TableName":"tbl779bfdc1d99f44aebc9cdeaf4cf64360"},{"TableName":"tbl77fa62f38fe14dce843e1271ab6d51f1"},{"TableName":"tbl78e320b08e0a4cc58a50e86f08c76871"},{"TableName":"tbl78ff6308d71f4835bc8dc3e921c8f25c"},{"TableName":"tbl797eceba1fb2437f83c3fb1cd2365639"},{"TableName":"tbl79c5f0ad27214c02b75da570942baef9"},{"TableName":"tbl7a229e3e15db4993b0475ed42afde8b6"},{"TableName":"tbl7b2b085727554320aa110653d531dbc2"},{"TableName":"tbl7b47a2ea35764287992045e737f6ede4"},{"TableName":"tbl7ba70546599444dc8557bd13e8e5c345"},{"TableName":"tbl7c81165257824096944b82f5978faa3f"},{"TableName":"tbl7ce670ab029b420c94b16a7dbaa9571f"},{"TableName":"tbl7deeb7a3934e43d5a7d92f3bfbdeeaa3"},{"TableName":"tbl7e22c37f3152474282606de7e65d1680"},{"TableName":"tbl7eefbbe8cbe549d79e9fd3cf362e086a"},{"TableName":"tbl7f1336488e534479a093239887ac714d"},{"TableName":"tbl7f55ffde39a84cf3be454c3286b4f96e"},{"TableName":"tbl8044e77c75024812b9f328d1beaff52f"},{"TableName":"tbl80f5cc8302b0470ba5c2a050d4e8e9d2"},{"TableName":"tbl811383723ea34ef7aec2c8a697f2776a"},{"TableName":"tbl819b89cdd71a488e8a935cf7be17160d"},{"TableName":"tbl81ceca3e6fa24f46842b9e4306056a55"},{"TableName":"tbl832f0ab2d9f24bac939863d7c5523232"},{"TableName":"tbl8351e529ceb54a6c84d9efa3ed99f701"},{"TableName":"tbl849f86644fa3421e9f79fbe4a02d7107"},{"TableName":"tbl85ad7eebe7c644469f6a3189c24026af"},{"TableName":"tbl85e2f8f8756143188298050a3b4ec997"},{"TableName":"tbl8628341ef7824e84916048e7ae8093f3"},{"TableName":"tbl8645329745a34ba4878764749db9ae26"},{"TableName":"tbl87a9e0e8c30c40508e9e734f6649cf85"},{"TableName":"tbl87d855d1d4394f109368199cd63e0c66"},{"TableName":"tbl88283307f9e643fba5c45309bbda262e"},{"TableName":"tbl88f447f6d3d240f8876c365c5174c83b"},{"TableName":"tbl8918127646d8478e83e2b15314847347"},{"TableName":"tbl895cc8252e9344c18db16b88454c4da9"},{"TableName":"tbl89ed661e89394f27a139742a3e85bb4c"},{"TableName":"tbl89fe90a023ad4bfdb12699747e3d68fe"},{"TableName":"tbl8a3051b4251c43b6b43dc02a730f63ee"},{"TableName":"tbl8c24cc0b9808455cb7091f1f9f60c28c"},{"TableName":"tbl8c32dae36609489d9e2809e20d183c73"},{"TableName":"tbl8d0e302d942d44328d026987a4af9c90"},{"TableName":"tbl8d2524071d704f51965b60bd72eca8c8"},{"TableName":"tbl8d39da6b2385424c99bddffb3c2f72e8"},{"TableName":"tbl8d43d663113d4094b5e846ac924dd3ec"},{"TableName":"tbl8d45fc6295134b9b97d5d46c3b537d6b"},{"TableName":"tbl8dc4cbba93484e14898727fc2150ee9b"},{"TableName":"tbl8ecb8980a98449d5845554df5807f464"},{"TableName":"tbl9013a8b8c4c54c7587fd88661bad25ad"},{"TableName":"tbl907c66fb68d24c5ba5bde349bc88bd49"},{"TableName":"tbl90e29e13dc6845bf9fad72c069b586a1"},{"TableName":"tbl90e9b2a1307348e0b4f55da0607b7706"},{"TableName":"tbl91db25754a1f45d89d96c5ef25d7f223"},{"TableName":"tbl922f77f33adb43c38e549f26272beb19"},{"TableName":"tbl9246be10378743f0aa13be1a5cd35756"},{"TableName":"tbl93232305a9dc49f78f05c9f92528b817"},{"TableName":"tbl939f8900c5ae4936b7503dae6dd1cef9"},{"TableName":"tbl940c529980c54a54ad2a9a1f11632e84"},{"TableName":"tbl943dba6e3e944dfd8f1bab67e17ef004"},{"TableName":"tbl94e79d35c8214bca8dfb78d6907cd85b"},{"TableName":"tbl950df5d086b64bd5876fe7a03b1f9e24"},{"TableName":"tbl95926d3fa6f242b9bb43bcec516ae6c7"},{"TableName":"tbl95f57655a58043efb1faf177a53337e7"},{"TableName":"tbl96f3b984012f4fd9a7d1d98873b48452"},{"TableName":"tbl97c7aa5e6f6843b4bad8d16e97cc983a"},{"TableName":"tbl9816b487e74b4306bc829906ea523755"},{"TableName":"tbl981a8316cd154cb4a61fb1e23262cd1e"},{"TableName":"tbl9822ee4a74bb4df4ac969b76b7d0bc83"},{"TableName":"tbl9916631c7207455690d156d0d98c50fd"},{"TableName":"tbl99caef9bd210437cb754fbe2ccc4d51d"},{"TableName":"tbl9b75dc68d573487b97edfbd8c5a50837"},{"TableName":"tbl9d01714014d44c9c825a50ec5fd9c421"},{"TableName":"tbl9d0b8f5537a940b99809609ed3e276a1"},{"TableName":"tbl9d8ed3ae1f9b4aa7a7ed7bb6d1c845a7"},{"TableName":"tbl9da103ebdbed4b109ac4e373b9c779b6"},{"TableName":"tbl9dad282fe3354275964f84a79c590782"},{"TableName":"tbl9db8bec0c84e4b899d40b4597ebbd27e"},{"TableName":"tbl9dbcfe05a0e84a549cd7b85901613d34"},{"TableName":"tbl9e301801c6654f18aeea41b92e0f1c84"},{"TableName":"tbl9edd36a91f4b4c4aa85e4749f43d5be9"},{"TableName":"tbl9f2118b2c08e4fb18a211619220aeb56"},{"TableName":"tbl9fb368e02bf743488aa4746bae31b437"},{"TableName":"tbl9ff44348007441c7938965aa91389c71"},{"TableName":"tbla00cccaad49d44b39499378f8942a5d1"},{"TableName":"tbla0bd41d53d7a4793a699e8559ccacdbd"},{"TableName":"tbla1e00da0fe454b28b240f14ddbd90510"},{"TableName":"tbla1e6362f56f64a51babe0933cf98d8c5"},{"TableName":"tbla22312a85ccc4df5b1259ffab9ce7b18"},{"TableName":"tbla24a36b3c60c4e86adac7f1639edb456"},{"TableName":"tbla2adc64faea0494480f0a2b02cc93c75"},{"TableName":"tbla2b3655c27bd4bd684f2a450602a0a6b"},{"TableName":"tbla327fa460a8a4366a3d69064c68e680d"},{"TableName":"tbla3a4ef84e2b14a8e8f3e44383c50ce00"},{"TableName":"tbla3b780dc60ce42da801c87882299775a"},{"TableName":"tbla4053977a7024857be5a8467339ece02"},{"TableName":"tbla4304ef551d341928c99729d176d6126"},{"TableName":"tbla4be01548a074240bb0fe3cb61c1e2c5"},{"TableName":"tbla529550480554158a0c126e1923d4510"},{"TableName":"tbla52c050d27b44a6dab5b6e8154d8e4a6"},{"TableName":"tbla548bb240ba54036a6ecfca53e03e88e"},{"TableName":"tbla588edd2230c4d9aa960a198a6d610a2"},{"TableName":"tbla66beb7f5f354b01963c1affa3f4c9c2"},{"TableName":"tbla673d82ae8754222961b576cbdd873cb"},{"TableName":"tbla6ad17e79b3d4020ad369623f4d22d2f"},{"TableName":"tbla6cda3ffdab64e8b8f59e5523c78efdb"},{"TableName":"tbla7a886b95a3e4184aaba0a0c765eadd0"},{"TableName":"tbla8307fe6a848468799109501730afef4"},{"TableName":"tbla8b00d5dc9a04ac5ba15fc92d71110bc"},{"TableName":"tbla8c0118e0f3943509ba9ca1dae4da3e9"},{"TableName":"tbla928edff8f784005b33e75e0f13d244a"},{"TableName":"tbla93c46d213ce40aa9faddf7fc2da8bbd"},{"TableName":"tbla97662c8d3ff4d73abc4720f284a7603"},{"TableName":"tbla9b00156c43c49aa9edc2065f2faa359"},{"TableName":"tbla9f42aad3d4045f1a9dc1a1645b27522"},{"TableName":"tblaa79ed457ca4489388ea7fbffd6a523e"},{"TableName":"tblab8d2cf34b984848896f4cc805d7db11"},{"TableName":"tblabf72d56d6c94d218b7140ada1e2ad4e"},{"TableName":"tblac04d4f7cfe645e7a74e7bdc435160a5"},{"TableName":"tblac44753d77b545f7853b62b6bdb810ea"},{"TableName":"tblac80c9e6fb8346b2b7f3828245bbde41"},{"TableName":"tblad74689d72974cc5b7de30816fa367ca"},{"TableName":"tblad85067aaa0749d69f6cb54ffd1b85ca"},{"TableName":"tblae0e731fb98746b48f4974a9abff0161"},{"TableName":"tblae408fed8afe46268d009057cd49ec60"},{"TableName":"tblae61d3ce6d4441239a62982fed3ec771"},{"TableName":"tblaed2ee48e8b24a3caefa680d4bdc88fb"},{"TableName":"tblaed4f8338c9c40b5a064a2a8e4de769b"},{"TableName":"tblaf0835297f364a259e60a7a976afb533"},{"TableName":"tblaf154a7844304949a4c10ae9ce6ae26a"},{"TableName":"tblaf2cd676583f4e7ba16f8f98b469b8c4"},{"TableName":"tblaf668b7b47d448ccbc449cd0193cd9e7"},{"TableName":"tblaf7d5c4f327e4e4f87863ec4f43610eb"},{"TableName":"tblaf992a780d55488fa478a3b9a3689ff1"},{"TableName":"tblb06e2cd2f2ca44c78649e85c579ec145"},{"TableName":"tblb0ca34e062044b478d532ba2918cc553"},{"TableName":"tblb0d464adfabf4bdb952ea17df9b59f15"},{"TableName":"tblb0d710065aae49a58e2710fbc12ab05f"},{"TableName":"tblb0facbe36bb74ef4a53a8e305e932449"},{"TableName":"tblb0fbe53650294bfc8c780b76edd0cd7d"},{"TableName":"tblb1d464cecf5345ec84923caa55cfdc94"},{"TableName":"tblb1e3c24c16fa465098541a4ab68901ca"},{"TableName":"tblb28526c80886411c912988d332c85fd6"},{"TableName":"tblb3086ecd0b1d40e08d2f3ddf919ef334"},{"TableName":"tblb3110ed97cf7489689a83fccd0ab1b2e"},{"TableName":"tblb35477c4d91047a0b4800716b90f3822"},{"TableName":"tblb3badfdc4a2a49aa8886a3d07b8f6bc3"},{"TableName":"tblb3c022544cdc4cd8bbed0e494f8b4343"},{"TableName":"tblb4a3595bbbff48419e59310483ceb13b"},{"TableName":"tblb4c11d1a365046f78d24233799cd055f"},{"TableName":"tblb524096f774347599f572cde624fe83e"},{"TableName":"tblb677d5fd14ea46d58d872fe218fb934a"},{"TableName":"tblb6fb13a4e64c45d2823e76d0f71cc406"},{"TableName":"tblb783bfcb178a4f86a301718f82eea5a8"},{"TableName":"tblb7af1e3dbba0459eacb30f26c887952f"},{"TableName":"tblb87d96bdac2f41fe8db4b34a76194338"},{"TableName":"tblb883bdfe250840f8bbed580d009919ec"},{"TableName":"tblb8f3166dd6cf4aca8db3a9faff96f4f0"},{"TableName":"tblb973716f82c4477e8d4d144bc8136af6"},{"TableName":"tblb9dbea5933254daab4a069d3e14b436c"},{"TableName":"tblba003f099d0f45408422254a4492ff1d"},{"TableName":"tblba680f8669c04d9c81e55ca561d5139b"},{"TableName":"tblbabd06408f2f40edbb48160a1822c347"},{"TableName":"tblbb25f58edc1e489f82f2836472b046fd"},{"TableName":"tblbbb3dcc6411a4597a4a7ee879bf9adb7"},{"TableName":"tblbbdc3a8870954ab88d5a0e953e0e0519"},{"TableName":"tblbca9a9b915f84734b1f6cf444d4210a6"},{"TableName":"tblbcda6e16b80a4cc09337665b6fb54afa"},{"TableName":"tblbd5ea3cc250442bea868a633fba6ec9b"},{"TableName":"tblbd7185081777410b81ab9b8a00887ec4"},{"TableName":"tblbdfb77f749254674936c1345f5cf89c0"},{"TableName":"tblbef7715fea5d4364a50a1eecc6c3d908"},{"TableName":"tblbf7b57faa00a43209d7e290b89d64701"},{"TableName":"tblc0359086919e4f3ba75a3e3be4dc93ef"},{"TableName":"tblc0e0ed7f342a4bd1b4c35a54dba6269a"},{"TableName":"tblc105950447774436b0f1857575064398"},{"TableName":"tblc1ba5103237645f78ecc765d44a12a20"},{"TableName":"tblc22325111e3f4f12b702f70f2118fdcf"},{"TableName":"tblc243782315ce4dc9a113d608dd06286f"},{"TableName":"tblc27dca19c5854a0b92c838b3d502b339"},{"TableName":"tblc29e5fb075f144348726527b00526b2d"},{"TableName":"tblc30a541803504b5db75ac8e51b3c7bed"},{"TableName":"tblc4417b8e3afb4f1f83aa6f786ce6429f"},{"TableName":"tblc44cb09bdbe949e080c2a2b11aa332af"},{"TableName":"tblc458d4ac05be48d297efabc36586ae21"},{"TableName":"tblc4d5a3c552cf407aa2095b3654115ddc"},{"TableName":"tblc4e7a83dfddd459fa5e35ee9c046c3db"},{"TableName":"tblc5686dabfcc64ded887342c39904b7d7"},{"TableName":"tblc572fa1756de4189aebd2b6a816c33d5"},{"TableName":"tblc5d2bb46092a4fb3a87ee054e2922a28"},{"TableName":"tblc6261f052dc442fda333b32c69ede321"},{"TableName":"tblc69b0a2263664056b05cad9896074a08"},{"TableName":"tblc6bdf19a534e4b328a4f26e99f146f41"},{"TableName":"tblc723348989234f0e8163782784b47e70"},{"TableName":"tblc742d56cf8fc45b5913a0920f71e8125"},{"TableName":"tblc76acadb11e443fb88a1641af81a94d7"},{"TableName":"tblc786674298f5461dacc6be5bcea6167f"},{"TableName":"tblc79dac2d437f4d9ea63f3dfcfe870902"},{"TableName":"tblc855944446b94d698202bf8d85f4a7a4"},{"TableName":"tblc89eb1164f19487a9b9e900c6bfab786"},{"TableName":"tblc8ace17b9fd04759a17529a06f7046c8"},{"TableName":"tblc8d253d06f7a4bbeb344dde90a374c43"},{"TableName":"tblc8e963245555476fbdc2865a481240ba"},{"TableName":"tblca02458fed974f07a67876ff6d659ce4"},{"TableName":"tblca1ef18a6fde4d57a8b005c9a1e17317"},{"TableName":"tblca5b6fb234f643a19f045147eb183e89"},{"TableName":"tblcafcbc41541f4f73b9a66b282d66c3ff"},{"TableName":"tblcb4cd1fccbbb4da0a254427082318cab"},{"TableName":"tblcb606f18ac74403ab462e454af9ad650"},{"TableName":"tblcb74b83143af4cbf95d86325c9de385d"},{"TableName":"tblcbfc1839624d4241b93005298e3eab4f"},{"TableName":"tblcce73519d3ce4c8f8ef679580509c5e2"},{"TableName":"tblccfc5e750d154c6a9015a8bd7fbb074a"},{"TableName":"tblcd6b9c3945d34d79a410e812113fe9ce"},{"TableName":"tblcda480b1ab854665b9dd0257bc4eb3ef"},{"TableName":"tblce3df078203446dd91911af850c59629"},{"TableName":"tblce7b654b12d24133aa80861590f6ba65"},{"TableName":"tblced6f78aa4b14f7b985a548bd3b0ec9e"},{"TableName":"tblcf0b0bf49f014dbeb5444591d334ebaf"},{"TableName":"tblcf45b54aa2d7471696a5a90d0c542f50"},{"TableName":"tblcf740cecb7d7409ca8e84fee48c9f57f"},{"TableName":"tbld06ed131de3743a19611f60c5790e272"}]}'} + body: {string: '{"value":[{"TableName":"CAPStable95217c74610847f795a116878ecde584"},{"TableName":"demotable"},{"TableName":"demotable5"},{"TableName":"EncryptionTableOps65551665"},{"TableName":"newtable"},{"TableName":"pemari020817a"},{"TableName":"people"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e90"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e91"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e910"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e911"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e912"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e913"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e914"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e915"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e916"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e917"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e918"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e919"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e92"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e93"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e94"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e95"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e96"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e97"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e98"},{"TableName":"prefixtabletbl376a5184b76548cfaa12c04ce83db6e99"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab170"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab171"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1710"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1711"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1712"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1713"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1714"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1715"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1716"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1717"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1718"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab1719"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab172"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab173"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab174"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab175"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab176"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab177"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab178"},{"TableName":"prefixtabletbl423759a9e66a4be5ab201e5bfb45ab179"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f0"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f1"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f10"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f11"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f12"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f13"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f14"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f15"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f16"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f17"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f18"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f19"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f2"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f3"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f4"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f5"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f6"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f7"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f8"},{"TableName":"prefixtabletbl4cb13537e16f42d59de8f8964d1bfa8f9"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e60"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e61"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e610"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e611"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e612"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e613"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e614"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e615"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e616"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e617"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e618"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e619"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e62"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e63"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e64"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e65"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e66"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e67"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e68"},{"TableName":"prefixtabletbl661ec10661144d1ebffa2dfcabd5d3e69"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f70"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f71"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f710"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f711"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f712"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f713"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f714"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f715"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f716"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f717"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f718"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f719"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f72"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f73"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f74"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f75"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f76"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f77"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f78"},{"TableName":"prefixtabletbl6bc9b4e87ee94267aad6e5e1ea9ab9f79"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f21"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f210"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f211"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f212"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f213"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f214"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f215"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f216"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f217"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f218"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f219"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f22"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f23"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f24"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f25"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f26"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f27"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f28"},{"TableName":"prefixtabletbl83566d2fb2ff4621aeba271e7cbf20f29"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a920"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a921"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9210"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9211"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9212"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9213"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9214"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9215"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9216"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9217"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9218"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a9219"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a922"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a923"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a924"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a925"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a926"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a927"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a928"},{"TableName":"prefixtabletblb64491f20afa44c69568eef60bb16a929"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e220"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e221"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2210"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2211"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2212"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2213"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2214"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2215"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2216"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2217"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2218"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e2219"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e222"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e223"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e224"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e225"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e226"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e227"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e228"},{"TableName":"prefixtabletblb8b1855b863a45899ecaea1bf7155e229"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c70"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c71"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c710"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c711"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c712"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c713"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c714"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c715"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c716"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c717"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c718"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c719"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c72"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c73"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c74"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c75"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c76"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c77"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c78"},{"TableName":"prefixtabletblc7ac62c6eead479da39e813481ebe7c79"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b0"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b1"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b10"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b11"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b12"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b13"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b14"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b15"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b16"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b17"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b18"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b19"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b2"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b3"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b4"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b5"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b6"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b7"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b8"},{"TableName":"prefixtabletblca27e788c3f54d7a841e159ad8573a2b9"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c10"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c11"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c110"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c111"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c112"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c113"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c114"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c115"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c116"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c117"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c118"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c119"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c12"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c13"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c14"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c15"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c16"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c17"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c18"},{"TableName":"prefixtabletbldd32ee9439af46a6aa41f66aa101b6c19"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b0"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b1"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b10"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b11"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b12"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b13"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b14"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b15"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b16"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b17"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b18"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b19"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b2"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b3"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b4"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b5"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b6"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b7"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b8"},{"TableName":"prefixtabletblef53d152f8454187a1e6d90eebe5977b9"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a200"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a201"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2010"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2011"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2012"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2013"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2014"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2015"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2016"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2017"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2018"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a2019"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a202"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a203"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a204"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a205"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a206"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a207"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a208"},{"TableName":"prefixtabletblf3c783a2ba334ef8b3ded3f962464a209"},{"TableName":"T001a0d2027f54dc0b9f93dd5f349785b"},{"TableName":"t00b14916910d42a796d35364e302075e"},{"TableName":"T00c393541b8f47469538e3632616c763"},{"TableName":"t01efb689725a4ae3b47fdc2575a19fa1"},{"TableName":"T02118a1eb5f248bea693e0e71fd097ee"},{"TableName":"t02817ec72156410ea2ddb5081f30bf57"},{"TableName":"t03aac74f336e4eb2923c221833a5bd4b"},{"TableName":"T03c5fea258d345e9944cfd9b9a8386f8"},{"TableName":"t048f72a916604721ab12298e7c3aaa53"},{"TableName":"t0563f3c5ed4c44e08f14d9ee19cb62c5"},{"TableName":"t0579e1d5c78a4c0598d8a5243cf43e65"},{"TableName":"t058f55460f50431d9a1109489fa76d14"},{"TableName":"t06249c0d5f6e431db554d338e64058f2"},{"TableName":"t066fd88625494f779d532ce67910a27c"},{"TableName":"t08698e98708d450e9e14297d9fb922b7"},{"TableName":"t09425794c2a149babf57b94c9230916a"},{"TableName":"t0a2646b3c45b4de3a512c5ca917f078e"},{"TableName":"t0a8dc1d7f26445e79d61495be7b0c7c0"},{"TableName":"t0ab3375e9251427abe9057111e156759"},{"TableName":"t0af90339dd2446af9a3147b69fcfa594"},{"TableName":"t0c41c70c0af84bd88518e3fcf73aa479"},{"TableName":"t0cb6bad4131f44b7964d9c8f737acc4c"},{"TableName":"t0e7da6e28794415883dab9336c90cb90"},{"TableName":"t0eda652c09164dc1a9d8c53a732ea9dd"},{"TableName":"t105c4852580c4a41a534dfbe3c9469be"},{"TableName":"T10ffcc88fab14fb2ba3d7a1394eeb564"},{"TableName":"t128e736ea01249eabcbdb2cbf17a2de8"},{"TableName":"t13818bd160004e328f5bd59ea78e05b8"},{"TableName":"t13b954f8935243149d27331fd2d6d649"},{"TableName":"t140b55e16ebd49b09befd9666d62d1e0"},{"TableName":"t1484c4f4519d4480a52534e9aefcde4b"},{"TableName":"t158b25ce8be14b5280432b79a1307750"},{"TableName":"t18f1e389c0904a78965d9976e401f78b"},{"TableName":"t19f50a9ce2864924ba2b2354cafc1830"},{"TableName":"t1b88bfa490d14c91bb849c5ef94303e3"},{"TableName":"t1b8bebfd31fc487b8a5f7922559aac11"},{"TableName":"t1bc1f75399fc437b8df9db1d3205cc1b"},{"TableName":"t1cb58996b8234759b9ddc8d4bf7288e7"},{"TableName":"t1d79196c24e143aa94371dfee49d87af"},{"TableName":"T1e058ffab15b4a6386c7bd4ebede17ab"},{"TableName":"t1eda7153fa8d4eab95f97575842cce54"},{"TableName":"t1eeb273ecfcd41b0be3c2db5275edc36"},{"TableName":"t1f13b22051c34ecfa86cfa2c54a460dd"},{"TableName":"T202b90f3d1b646a2abdbf2762dd158d3"},{"TableName":"t210bba068de14c83adfc9d8accdc54e9"},{"TableName":"t226f3597cb4840f5a163608200165f7e"},{"TableName":"t22ff30a42e304fc5aa04f2f8f4ca5720"},{"TableName":"t2322401054214fc3a418f475764acf67"},{"TableName":"t239c475ba4104834a67ead593ebabb11"},{"TableName":"t239fdf5026804cbcb7c14b09ac2fdbc0"},{"TableName":"t23c597ced1f3412c92513754a9aa1e6a"},{"TableName":"T2483038bc7694206ae1a99f644b13dfa"},{"TableName":"t24a991a33d6b4c5fa24c680f57622167"},{"TableName":"T24bf8de6a2be48d8acd01c327e3f77a7"},{"TableName":"t24e4a1806ecb4495ae8238c680218069"},{"TableName":"t2520c291fb53413985d3624a3fbb89cb"},{"TableName":"t25ac64dc7c4e4d89aaa44c98d93ad3d9"},{"TableName":"t2649d805c9bd418695e06819306aeb74"},{"TableName":"t268ede48e84a4eadb2adf667a9ef1c63"},{"TableName":"t2768a2c7f0184acf92481a8d2ae2ea5c"},{"TableName":"t279cddab984a40f7afc1e06bd42aae2a"},{"TableName":"t284869193e3c49c5921444ddbbc520f2"},{"TableName":"t289074fe5d88471f93b67498416d77e7"},{"TableName":"t2a808a43b1df42538f7d0e6528deb981"},{"TableName":"T2c064f7225e646ccb03d0aa773d4118e"},{"TableName":"T2c17828b990247e5843613f40b8f83fd"},{"TableName":"t2cd13915b2a34f27bdc41a62928af15b"},{"TableName":"t2d600d68aed5423eb1f45cc0b81451d8"},{"TableName":"t2dfe60179b2b45a6a1d9a787ef43a00c"},{"TableName":"t30146d92cf8843699a583e457a6371dd"},{"TableName":"T30385924e36641499738e07546aea50e"},{"TableName":"T3054f4f748834cab95768cee54fe0e9c"},{"TableName":"t311273edb2024ca6a84e97d3435f9f5b"},{"TableName":"t31a694ed5a3643e3a1043f022a1c8c36"},{"TableName":"t3210579cd44241e29d2113091739781a"},{"TableName":"t321ad756750340bfa89a52aa59483525"},{"TableName":"t353d025c335c4afb813fb5865ee15c94"},{"TableName":"t356b63d49c4a48c4b0920cc5e71b1c1e"},{"TableName":"T35a29d9c14ab4e1b88da732a81aaee90"},{"TableName":"t35e3e2a74268499abe912ee7040b061e"},{"TableName":"t3605f3775d72472bbe5f2c555a3337fd"},{"TableName":"t369261b3de074f178984f2c1f3f119ef"},{"TableName":"T373e0f31c2b941c6ab936b346b685442"},{"TableName":"t37d2bb67cd4347f8a4779f4ee7e80cf5"},{"TableName":"t382cd0a38b554a648166c036b9f9ca20"},{"TableName":"t396caf1032304f6a95f5ce410bc8a52f"},{"TableName":"T39d7379f916a4cc2890beee365c70a1f"},{"TableName":"t3abe5dcb8022415d9be471cdb03f049f"},{"TableName":"T3dddd798c85e455aa703caa086e68e14"},{"TableName":"t3f3e3e8ab1824c7488a399390467e0a9"},{"TableName":"t3facb27d75e94310b9a48ab2fc77666b"},{"TableName":"T431b4306bebe49949c20b23d670970b8"},{"TableName":"T4462b5289b13422ab679dbc462420699"},{"TableName":"t44b8d6ca247b4bbdbb14c745e993a59a"},{"TableName":"t45079372c0ec40a7b902b9529aac1697"},{"TableName":"t453fd7a0784046a48c8ed928c09b6f8d"},{"TableName":"t45b21c561b4040dcb2beabd809cd91b3"},{"TableName":"t47a49bafb9f640f4943cb3ba93eb409c"},{"TableName":"T493949ca50664a4db5468fa0e2390eb2"},{"TableName":"t4a9c71986f7c429b84a79b8fbdbd0df3"},{"TableName":"t4aba1d73f80e4c96b3c8b25cf7703d06"},{"TableName":"t4be1e227925a4c0ab74c17dd906b2feb"},{"TableName":"t511fa36357c54e55b09d26acfd95ac9d"},{"TableName":"t51310554d1e74db7bf00532c18e2295a"},{"TableName":"t53b7ef24d31f4e919150806b799df59b"},{"TableName":"t542d01077d6d47e498b1585a67e45c13"},{"TableName":"t548f026bbff8481d94d8aa221ed5f23f"},{"TableName":"t555d34b0ced641f4a227ece8a08c84b5"},{"TableName":"t55e8ca02f1524fbdb99ca2692f4e5e12"},{"TableName":"t56c67828e7d049168adbbcb26ead2c14"},{"TableName":"t57235838b0194a05b809271d11444c34"},{"TableName":"t577cb81f82414d1f8352a85afb1ff1ba"},{"TableName":"T590a53ba8aff41d7affeac5e4efc5593"},{"TableName":"t5a46703596f84649ab8c312a2eed92b1"},{"TableName":"t5e1ad56606a64d96b2718456750b2513"},{"TableName":"t5e3665cbb8e1401c968eab1465d57c00"},{"TableName":"T5e7c50920d164e52ad5bc44821e00f2b"},{"TableName":"T5eb0bb280d7340a2b3dc0267d752d3a9"},{"TableName":"T5ed3e70ac822466a8c141aa743e8dc65"},{"TableName":"t61b845ed4f8e4cff9badfcbcd3082a7e"},{"TableName":"t61e86f73b6c2455b81cb999b909f7f61"},{"TableName":"t6329124794cf4df09c8677cd32f9d067"},{"TableName":"t63d6f3c5f0b842bb978ad40b91047825"},{"TableName":"t675d26e2830a49cb8ecf614e9c4fdde1"},{"TableName":"t68b67dda5bc744bfbb35354087beb505"},{"TableName":"t6ae53578e96e4bd48c40b31a56dae2d6"},{"TableName":"t6b863737a073438cbc3c6798f6ecc854"},{"TableName":"t6ce27c3d3aa74568aeba3a95d9acb8e0"},{"TableName":"t6dd7b90432da494ebb0558a063f7816e"},{"TableName":"t6f268262f04843e6a55eeb8167218ebc"},{"TableName":"t6fe7d571364b4226ad68cf1f29a97146"},{"TableName":"t6ff0f70deded43229966de9b5ca786e0"},{"TableName":"T6ffecac0d10b40c4a4bc053d6ea3a5ca"},{"TableName":"t706ec073d02646d0b6c57e840fbbfa14"},{"TableName":"t72d7fed3dd234889bd1948913e3e7656"},{"TableName":"t734c858a2b9640109e3e140b9350438a"},{"TableName":"t74fd2e8d8c354acfac7f7a6501e3c5a9"},{"TableName":"t765f557c87454c15b26ff64ab0bc76dc"},{"TableName":"t77205a1d70c648ee86b8b1f05192acf3"},{"TableName":"t79963f4d52a64e559f71573826da3a7c"},{"TableName":"T7b2779d3af704a44a96783537577f746"},{"TableName":"t7d8b361486d44becaf62f8469dd188f8"},{"TableName":"t7e300b947a194e7794e05d103c54c78a"},{"TableName":"t7eb357cbe7b84ecc891b8a8f6aeb087d"},{"TableName":"t7f50cce2a10a49db879cccf58aaa581c"},{"TableName":"t7fd512ff4cfe47929c2fe50b7e7031ed"},{"TableName":"T7ff2cfac881c47f3a07cf75d347dce8a"},{"TableName":"t81f68ae476354d91a1789ea46d45aab5"},{"TableName":"t82d43e3d401142c894bc0198adf6caa6"},{"TableName":"t85152cd675784189bd53a6c71092f408"},{"TableName":"t8599ac762b1c4f1ab59b8d196e69b43c"},{"TableName":"T85db1fa2441644faabddc956b280a7f2"},{"TableName":"T85eac84d5b4e49b09082209fff382de7"},{"TableName":"t86436862f7644dcd907fe4137b195199"},{"TableName":"t87b60d612fdf43e19a1a9bc071aad2e0"},{"TableName":"t88f02fa7c8964c288cd1504553d13c8a"},{"TableName":"t890ffe96bd024382a1a42248e5849f57"},{"TableName":"t899d65a253a94846a3e6ce294a2afa58"},{"TableName":"t89a29b851d934a0e8451480573c514bd"},{"TableName":"T8a87309408874ebdb0bf79c047513321"},{"TableName":"T8af1ee954b58477f91b0397bdc397067"},{"TableName":"t8bb2e8c5498e4f8b9c11c3ea9a588ca1"},{"TableName":"t8d66fe617fc246dfb91773f3f66dc3c5"},{"TableName":"t8da2a859a73a457c8ee6464472110d95"},{"TableName":"t8dcdfba99dd6482380271aedf98af15e"},{"TableName":"t8f0da058f9944a3f891491e58ebbae5b"},{"TableName":"T8f890bca9f7c4e28b32e5dbc9bb556d0"},{"TableName":"t905ab23943424b79b21f9328bed4b7b4"},{"TableName":"t91f9034c55624947a819d2f22015c47f"},{"TableName":"t93a43796e9a34d2482f30ee0b3029499"},{"TableName":"t93d204249d744b1cad157eb4c16c2204"},{"TableName":"T954210538a4c48d6b9d445ee0e7a78ae"},{"TableName":"t957b2df1c8224a428a50831287be92e9"},{"TableName":"T962f4707d2a94b1c8a97cbe434910f2c"},{"TableName":"t967f39d0ae3442f7a8c3a46ae4fc5144"},{"TableName":"t9c7df29f73364e34be2d5e305a3755b1"},{"TableName":"t9c9556a6c9b040269d6edd9eabea24b6"},{"TableName":"t9c99f896e3a042b38652c11651a40228"},{"TableName":"t9d8311208d96439d88bd6080162d9d8a"},{"TableName":"t9e009d9c1b2d4861b0739b1dae859f1d"},{"TableName":"t9efd20a9ee7c423fbb2304bd84edd06e"},{"TableName":"t9ff6174fab9e4734b4c041f95c30a34f"},{"TableName":"Ta009ccc8e6014f1e98257cc9cac7f1ba"},{"TableName":"ta0c1ef135d6b4878b49e149a5c5fbe0e"},{"TableName":"Ta0e9e7db38d246238553573379cb977b"},{"TableName":"ta364010aa3ef49dbaa7d886a7a6120f8"},{"TableName":"Ta38a095e4a9346a0b72f5709638dde4e"},{"TableName":"ta3ff0eec988c47979568e82b9427b0bb"},{"TableName":"ta42aa2e01a4c426ab36c61ef208b9eba"},{"TableName":"ta511e453d9ed49e3898cda8a72b5a6d9"},{"TableName":"ta62e883698624762abab293af6c0a30c"},{"TableName":"ta7ab83d1cb6340bfaa3f7ab6a06550b9"},{"TableName":"ta7cf5249eac547a0a4bbf21bf3e98af6"},{"TableName":"Ta7db20ed615b4e919a1e22bbbde731f1"},{"TableName":"ta85b7b50521c4ce28d087d30aa9d2edc"},{"TableName":"ta8f22e668434424883761b07c8010721"},{"TableName":"taa6ad663d5c14dd38ef18065b15115b5"},{"TableName":"table21630f2d9b85c404aaf89e4164727addd"},{"TableName":"table22d62d92d0a4943109b3db56da5c64494"},{"TableName":"table4a2776ff8a6745649ef187562e43be05"},{"TableName":"tableb373389daa4b4d95809ee0b49f319461"},{"TableName":"tac0a7d4872884a81b683b8a8c0fab558"},{"TableName":"Tac2405d7922f4e028a2d5d141c1010da"},{"TableName":"tacef1340a5c74e52b9db4ffa187c47d2"},{"TableName":"tad8ca46eadd54c91b426d3430b501e79"},{"TableName":"taede7221b0c4450d821c9dd189aee51b"},{"TableName":"Taf6bc9e5872b4452bfdc5f0498963bf1"},{"TableName":"Taf9ec0abc3774d8184b57738cfb115ea"},{"TableName":"Tafc1105243e14b4e8a99357bb36faddb"},{"TableName":"tafeebf5ebb26414ea441d8c72b5d36bd"},{"TableName":"tb06ca3bc70f747ecafcaad0b03ba3306"},{"TableName":"tb072979191a944f5b038e2388307c721"},{"TableName":"tb0b2b6c1895949e688a9fd7c8509099d"},{"TableName":"tb2b2c8e9830c4ca7aa23ffdec8ceaa3a"},{"TableName":"tb31a2b4bc50f46148462bcbeb318f248"},{"TableName":"tb36cc2f734634127af837a6732af8cb8"},{"TableName":"tb40c81c918454b26a154ec32a7a039fa"},{"TableName":"tb4a84a7d225d44e09ea84d8aedadefdb"},{"TableName":"tb6135780875849a6b0559471d4fce527"},{"TableName":"tb8280eaa240b45d3a73d8d89a1a23abf"},{"TableName":"tb8bad8692d484baa8e9dce2a3160b409"},{"TableName":"Tb8d01a6fb7ff49729e31749b3b68feb8"},{"TableName":"tb90ab7b977094ee3b879c365fd1212d4"},{"TableName":"tbb3940ead90142f1bd1924b6ee766e83"},{"TableName":"tbce81459f8754c72b8b54e18f7b8917e"},{"TableName":"Tbd248e86f6be4014b0f979b521c9d2d8"},{"TableName":"tbdbe5b3de42243179dd89c32f4c1fcf1"},{"TableName":"tbec1c4c37d6140c294e1ddd2524d8a95"},{"TableName":"tbed01ddee57444a998104655e3d688f2"},{"TableName":"tbl000686f5e73b455081f27370ef8fa5f2"},{"TableName":"tbl0062d9ad6e3b4d55a46d868fbb656405"},{"TableName":"tbl00b2d2fffeca4828b0fac60517fb6aad"},{"TableName":"tbl00b31f1d3cb84e88a3b6ed6a4b3cdf41"},{"TableName":"tbl00e816e8850b4d6c931b55810fbf13c9"},{"TableName":"tbl00f63435a78b49ac82ffc05c4688cb11"},{"TableName":"tbl017a1c1d754447d294e8f267f96b5794"},{"TableName":"tbl01a0c6c00f5d44c7ae88c0bb1e8a2259"},{"TableName":"tbl01fe668f98014ffebc4af382f491ffa8"},{"TableName":"tbl02253db68e3e4197a560b7b0c122e38e"},{"TableName":"tbl025cc69fd70d4e458fe3dc50b24f4485"},{"TableName":"tbl02a1e807822a43a593091f422cd3e0b5"},{"TableName":"tbl0336ce478d4e42cdb3977f83c9c6bb2d"},{"TableName":"tbl0347101f08ca4a12942fb9acab029f9d"},{"TableName":"tbl03ee1a98ea57469ab582d0e254a6646b"},{"TableName":"tbl04abaa521c874037a3d33b588b6b62a6"},{"TableName":"tbl05ca8399c8274af5a6a7d51fe3a5e317"},{"TableName":"tbl0602a32f162a4380bbccfaa5b8fde60d"},{"TableName":"tbl062917b122de4ad2a3aa1097901755ad"},{"TableName":"tbl063ad89c7f284be5990471536f02fd82"},{"TableName":"tbl070e0a69af85489fb733043f3510fd79"},{"TableName":"tbl0761b43d82f94d5fa898a7a818e75558"},{"TableName":"tbl0866f37eaaca47b49261d7b67642720b"},{"TableName":"tbl0867b76ab27a4b12ad8350a1362130af"},{"TableName":"tbl086e9d54d5554641aef4ae7ba708b844"},{"TableName":"tbl088b12d9a2b54ad885c977f69c1bdd0e"},{"TableName":"tbl09247a02e70f482294897de91deb60b6"},{"TableName":"tbl0987f3c091124031905b1c0216ea5772"},{"TableName":"tbl099350c8341e4756a92b56a915b55820"},{"TableName":"tbl0a1b57a26c2243789f55350b005c2a95"},{"TableName":"tbl0aa378c8cbac4e84acaa6a956beee72d"},{"TableName":"tbl0b03168b578942fb8e456e431a68e401"},{"TableName":"tbl0b17bc70fb2c4a8f971ddb7a29c616e5"},{"TableName":"tbl0c840a50343245af8a5f9213dbaa33c3"},{"TableName":"tbl0c9f63b85b654089b27b397e379bd332"},{"TableName":"tbl0e5b1f4b46c842cda6bcbdc273c9d959"},{"TableName":"tbl0f6674e13e1a42ecbef25817ce5ac7db"},{"TableName":"tbl1129e83a15dd40afa6adcd78530a93a2"},{"TableName":"tbl11cf25acd7f045419e7a4254a8706bbb"},{"TableName":"tbl11f519a7b2dd42beab59d87ce79778f8"},{"TableName":"tbl129fece2b1e14eac8f5426afceec2fef"},{"TableName":"tbl12c089ca9bba45d988d48cdcbfcd7714"},{"TableName":"tbl1396fcecec3244a1971f1bfca86f4c3f"},{"TableName":"tbl13ebfd76f5a7457da09773af892026f4"},{"TableName":"tbl1464e550a2a740aeb921328c3b627a64"},{"TableName":"tbl149d25d5bac44a508ea877412162c1fb"},{"TableName":"tbl153ccbf1cd7a4d6a97b37ceae95198a8"},{"TableName":"tbl1543c4dc8a194b3795b3b5994414db0d"},{"TableName":"tbl15bcd127f4304589806064738ddfa48f"},{"TableName":"tbl15d1f2b96b584cdf9d82f0571918147f"},{"TableName":"tbl160e579c0ca44ca0837545bcc3d8baf2"},{"TableName":"tbl177fd5671a244bc0ac4f054b70e9929a"},{"TableName":"tbl17a2e79c12164ffca5b897d9e3566445"},{"TableName":"tbl17a7c97c0631462db8ad520371c60e9d"},{"TableName":"tbl17b699c464404eb584fb7d678c6458a8"},{"TableName":"tbl184df5fe1985430f8548fbb72cf77a02"},{"TableName":"tbl18c942f65d7f46058b70d1b3102f092b"},{"TableName":"tbl193fa418b54d473fb4d91002bc25b8b9"},{"TableName":"tbl194685be8fab4f5c84df5e4c2d1ce75b"},{"TableName":"tbl196b4ada11be490b9e49ef08393939c5"},{"TableName":"tbl19db8a26582f4002a6441800daf016b5"},{"TableName":"tbl19de788233084bc19064b130e8357643"},{"TableName":"tbl1a083f15a6cc4168bc4e812fdcc2d6c8"},{"TableName":"tbl1ab0b29ad1e445fb9fde751ef7258313"},{"TableName":"tbl1b3253d18ae946e9b58f30977e23a4aa"},{"TableName":"tbl1bb2bf6a3bef4949a858ec877aa3ceef"},{"TableName":"tbl1c19da3958714f25b9e96ea4c73fa6cb"},{"TableName":"tbl1c2a284431334e839fc9b819a664ed7c"},{"TableName":"tbl1d6bb4641a4740adb2a0670653254cd7"},{"TableName":"tbl1ea7e212f7b44ad0a5117caf9878309c"},{"TableName":"tbl1eaab3df395c42b888afcd97491e7c31"},{"TableName":"tbl1fa8959e558b4f88a0416355c66c192b"},{"TableName":"tbl2058344813354d5192d9d5141317b051"},{"TableName":"tbl21353ca572e84646a7d7eab5b98920b1"},{"TableName":"tbl21be34b2ab6b4069a7b9286d6aac5fd8"},{"TableName":"tbl2287cabe49554200b504cd71e4b70b24"},{"TableName":"tbl22b5163cd53646a6abf9bfc4f1e01529"},{"TableName":"tbl232753d1e1b14202bb23a1a987d68aef"},{"TableName":"tbl235b55030614434ea6eae4fbf1f30c5a"},{"TableName":"tbl235ce5ff71c240dfbaecd80bfebf9d73"},{"TableName":"tbl238f9d3cb88a4733a2a71681515e878b"},{"TableName":"tbl23ea4e8bd7ba496f9d0d394b3551cb17"},{"TableName":"tbl242064546b024e0db5b4ddf4b178b599"},{"TableName":"tbl24a874d7844b4d28bfb77b39df57abe5"},{"TableName":"tbl250dabf7345a482a904c9a2d742b37b4"},{"TableName":"tbl2522dfaf74ab499fae7ed23de2047800"},{"TableName":"tbl252b7288d41f4602875738c5b46902cd"},{"TableName":"tbl25943060f45c4fe2988fbe38dc0dc430"},{"TableName":"tbl25d68bbb565b49068252c4c3895fca10"},{"TableName":"tbl26738bdcde044248acb7bf2812cda71c"},{"TableName":"tbl2687b6a44ac04050bd69de37c7377cca"},{"TableName":"tbl269349b9757b4d51bf89321fef98e9c6"},{"TableName":"tbl26a13f11fa134160a0e5df0a4c233b61"},{"TableName":"tbl283353011e664b3c9f867cabfa9aa897"},{"TableName":"tbl28623fa19d1147d899b2bdc30e51f706"},{"TableName":"tbl28a3d0a7584a4cceb682121e36ef4dad"},{"TableName":"tbl28d33d42c95d4f2daad88154974bd5f3"},{"TableName":"tbl29e957d938ae40fea956741c5a2a085d"},{"TableName":"tbl29ee00badd95413b8de52b2e0641a278"},{"TableName":"tbl2a05aa88fcec4b60a9bf64e775cc4eef"},{"TableName":"tbl2c0dbd376b0c4704b9c91b256914ed09"},{"TableName":"tbl2ca29a822fff400da658f9173ed09c22"},{"TableName":"tbl2cc94ee6cea14ec0b7edd99d80769134"},{"TableName":"tbl2d569aafca99458c911ec0f77f3824d0"},{"TableName":"tbl2dfea7cf7f904b98ac3192bc70b97fb4"},{"TableName":"tbl2eb4a0ee48224f278eef1881cabd9b3e"},{"TableName":"tbl2f0b14b34e4349f18dbd6788594e03d8"},{"TableName":"tbl2f47f1af37eb4d0dada1b2411421ef69"},{"TableName":"tbl30415045a54b45e1b5234f0f2e0a7ea3"},{"TableName":"tbl30caacdaaafb4771a4a0d712bfb4db52"},{"TableName":"tbl30ef45fa80804f03a8ca21965713b7f2"},{"TableName":"tbl3109b53f9b634cc6a58d5e5dca87d86c"},{"TableName":"tbl311251759a9146ed839b0b97a3f79b40"},{"TableName":"tbl315e4502eaf8454d91c22de8d676dee3"},{"TableName":"tbl31bb6c083b06469796e2bb20e9a03d60"},{"TableName":"tbl31c7b1bf86144f498790c028d15e44aa"},{"TableName":"tbl3216977b1ab94e17b25b46120cd5e7a6"},{"TableName":"tbl32704a8c4c3847c19beabeb76ffdaf68"},{"TableName":"tbl33e60d15005541cfbd0d79ee571e504d"},{"TableName":"tbl3432d8ab403a4a72ab6c13afe74a9a79"},{"TableName":"tbl358e51c89bf34825b54024d6ad64424f"},{"TableName":"tbl35e53983f2ab4048a9bf6aab3094c277"},{"TableName":"tbl364ee7c62c18418683ecc3347871363d"},{"TableName":"tbl365adf56b556439ba1edabc7a3b151f9"},{"TableName":"tbl36c56d15551f4a899363fa598ca5270c"},{"TableName":"tbl3800688668f2484692b1ef88f9b7dbeb"},{"TableName":"tbl38aac9ba65a44841b46592f078ab6880"},{"TableName":"tbl38d00566ab644059b4f2e96f69d8fb5a"},{"TableName":"tbl397a3361ee8340869a84d274d04273da"},{"TableName":"tbl399171ae046d47fe8c908bd595464a51"},{"TableName":"tbl39a8d39ceb7a4940a11ff41e31dd9d26"},{"TableName":"tbl3a03de6e9d524a08a0eab6aec3752f56"},{"TableName":"tbl3a557984770d4a889af089c0ed662459"},{"TableName":"tbl3a798a2f17e9422f88335d8d14c8b06c"},{"TableName":"tbl3b24670192f24545950a373933e4fddd"},{"TableName":"tbl3bc7998a086c4c7484a140b0f7f192ee"},{"TableName":"tbl3bdd7628294c48299424aad871e44b28"},{"TableName":"tbl3be128b8bb5f4015a2fd867e629f85be"},{"TableName":"tbl3c410b1728144e8487c8b56ba1b9af83"},{"TableName":"tbl3d537ef691fc410aa7dda3646527e4e7"},{"TableName":"tbl3d64fe22decc424684d588554f6f75e5"},{"TableName":"tbl3d8d62a03bec4151aac85f4fbe9daa01"},{"TableName":"tbl3e885cc18775486f83bd1720b718a0fa"},{"TableName":"tbl3ee036273ec4419b9563208ca264203f"},{"TableName":"tbl3f6126816d5f442a9d46b516ce13c63f"},{"TableName":"tbl4006523f6459474f947d799749e347f0"},{"TableName":"tbl409e9679175b45f187717c1c085d7eb2"},{"TableName":"tbl40de65d1b3194b83b4c6b61e8a5c3836"},{"TableName":"tbl4180a4acb1d642c1baec348aac29f400"},{"TableName":"tbl41b3ccbf37ba4862b9446e3795a41f39"},{"TableName":"tbl41cc33b5514d4e368071d9e64c249864"},{"TableName":"tbl428d1377ace146d9b49b95b97718d16e"},{"TableName":"tbl433330a1eca94f6bbdd3aa86950200a8"},{"TableName":"tbl43bb74e873f44575997a7eb0ee78db77"},{"TableName":"tbl43d297ac83974678a99a005c621720ea"},{"TableName":"tbl43eb901812744abe9d1d18dfc1a7bac2"},{"TableName":"tbl440a6bcee011436b8e2de7f58c91b2d6"},{"TableName":"tbl44dbdcb273ad451685707ca3a0bda916"},{"TableName":"tbl44ed2f4580434261bcc7f2c69773ff3f"},{"TableName":"tbl45076da26a6d45f0bc5c50d66d562070"},{"TableName":"tbl45d5f8490eb746809d9692a222175ca9"},{"TableName":"tbl45ee6a55944045b2a226d0526b00f7d9"},{"TableName":"tbl46283514121447a6b4ab7e0ac3f8f334"},{"TableName":"tbl4636d4fca457423db2522b06056960a9"},{"TableName":"tbl46a86137604b4fc8acbb4317b6552386"},{"TableName":"tbl46ec40452ac24751a0d701ee2206d729"},{"TableName":"tbl472ee50446844245a1233928f09ca4f3"},{"TableName":"tbl4732966c1b814ae8ae9f2d254629c9d7"},{"TableName":"tbl47654d9e2c004e3ea2ae81f2d681b398"},{"TableName":"tbl47961e7eb59b461abb09cfa98e0cc12e"},{"TableName":"tbl49102c5b10924f06861ca884fccc3ca6"},{"TableName":"tbl4957b4fca29e4d3bba50854cf7a650ce"},{"TableName":"tbl495c13711c8645b3a8ccb9c7a7bb0982"},{"TableName":"tbl4970173963ca4772b875caa1d942eadb"},{"TableName":"tbl4972366b795345d39cf06a72225e4262"},{"TableName":"tbl49ab5be36b1f499092b8db18ccb782b6"},{"TableName":"tbl4a11f313d4984614b4e7e6828b20e645"},{"TableName":"tbl4a50ad77180941b5a8d11a7c031d21ad"},{"TableName":"tbl4a666cd4e3464d7aa31323831f6f8ceb"},{"TableName":"tbl4ab8422d2aa14695b92229c2341bc80d"},{"TableName":"tbl4b1fbe3f7d1643abaed5ac9a041510cf"},{"TableName":"tbl4b95a88b912f44be90904698aec94771"},{"TableName":"tbl4c08f733bcae4737b0f1165cc8be7ada"},{"TableName":"tbl4c291024a22e4e4fa256a7dfd700e584"},{"TableName":"tbl4c5aa3cece36476fa0963ebeba9b3097"},{"TableName":"tbl4cbee75578ab40a4afbab3ec3a5de2ca"},{"TableName":"tbl4d60d971d54540e58a753ac6004bcc24"},{"TableName":"tbl4dc8de20fc47456a9194920c1e0c8934"},{"TableName":"tbl4de3a029c8d1477e84aca3e1195198c0"},{"TableName":"tbl4e53247bf9934abda381e0d641f334b5"},{"TableName":"tbl4e6176b107f2443fbbec930384d117c1"},{"TableName":"tbl4f0e7268e4c2436f8475e52b03e4d35e"},{"TableName":"tbl4f2ce8d76d6e4ff3bab5ac8bbda73592"},{"TableName":"tbl4f9b05f1cfe0489bb6af4d83ad67bcc2"},{"TableName":"tbl4fb78cdbfe0e4d519c67b53b0c900d22"},{"TableName":"tbl50de9ba6afc8445f8ffd1a4eaf92fb2d"},{"TableName":"tbl50e8dcc9a01449af9736f93c4f419be9"},{"TableName":"tbl51a8eea6cc324c579422ca0b8b168c0c"},{"TableName":"tbl51f5a3fbaabe42f4aead734a88d8262e"},{"TableName":"tbl520a16ddb53c4717a9254300ddb28cb3"},{"TableName":"tbl5210ccde7f7647928f6e78f6eac8afe1"},{"TableName":"tbl52d730e6910f4186a7b5ce1333f1a981"},{"TableName":"tbl532224413f0e4224bcbb318d7d5030f1"},{"TableName":"tbl545fec4dff134c5089fc4da535143c10"},{"TableName":"tbl55b42258b4a14d34bf74832a5832f764"},{"TableName":"tbl5799738a394343c0a9c90dcf649cba5e"},{"TableName":"tbl58314157c3c542ea930faf4de154ad70"},{"TableName":"tbl58599d817c224b75ba33c6268458b099"},{"TableName":"tbl586b85dba22e4dfeaff1ea29f186c27a"},{"TableName":"tbl587723096c544735bfb0d0da21ee22ac"},{"TableName":"tbl5884d57712b648e08288f86253db892c"},{"TableName":"tbl588b7c84383041c2a6b5e0a2d50e3b9b"},{"TableName":"tbl5984166ffc844196ae2b077e20365196"},{"TableName":"tbl59a098c3922e40409b0254a3858a45bf"},{"TableName":"tbl5b057a22cf694c2fbe887c44127a0368"},{"TableName":"tbl5b459448994f4e73af123d102ae7fb5f"},{"TableName":"tbl5b5dbcfe2df54964acc46c1d911687a9"},{"TableName":"tbl5b773e664a9c453a9aa70cd33e9948a4"},{"TableName":"tbl5b95331c604c4365ac859b765f389537"},{"TableName":"tbl5bdb8b2aa56246d69ff24cdc94c397ba"},{"TableName":"tbl5c82747f89114cc29d5caf423d8cd62d"},{"TableName":"tbl5cc3b6835ec04995805b6de6a2e536bc"},{"TableName":"tbl5cc40aa24cc7408a9d0d3db5e51bca7e"},{"TableName":"tbl5d8a046b856a4aeba7c07db2b8361c26"},{"TableName":"tbl5d9fcee1d0d043d0b1339024bd445434"},{"TableName":"tbl5e63aa37bac245729ee3184e286de23d"},{"TableName":"tbl5e74225d83084f61b6a06aa86c334a48"},{"TableName":"tbl5ec485defde24b1f99a3ddcfe40e3e23"},{"TableName":"tbl6026d803fd7a4d3d82852528cb74b494"},{"TableName":"tbl603ceb9e79cc4d4992b84c4183b7aaee"},{"TableName":"tbl6058b6f5f30e432e94881befae4bf154"},{"TableName":"tbl60e7eb2a48274b57bc5ff5eea61a385c"},{"TableName":"tbl60edc9ee02ca49689af7d58d69db816f"},{"TableName":"tbl60f4afb4228c4348b4c0065cddc95c74"},{"TableName":"tbl612314d7ffd545cf9b10bfb2a73b186b"},{"TableName":"tbl612961478ccf4289be7ef49816f68e7a"},{"TableName":"tbl615633100b1c4970896a703af027199e"},{"TableName":"tbl61a55ffa7c9a4afab711668c8005860b"},{"TableName":"tbl62ac44b6c62e48f1b6764eaa3aa436a2"},{"TableName":"tbl62e40b6b9d4a42f6a6e8ea4150365209"},{"TableName":"tbl6326f0a71c5e4c7b9e76d1884ddeac2c"},{"TableName":"tbl6356911923f144718ad862e8d3db283d"},{"TableName":"tbl63664f190d7e4cc88191487feddf007e"},{"TableName":"tbl63b71d4d4cfe4acdb6dfb8e7e9ccc2bf"},{"TableName":"tbl63c6c1534b6346b59e5acf95bf7623f5"},{"TableName":"tbl63cd6482f9c54c6bb52189dcddc9724b"},{"TableName":"tbl63dc7ae20cf44113ae9c59ddf889e61a"},{"TableName":"tbl6485837c60544280a1f04c3b832fad33"},{"TableName":"tbl64d70af300354851805f612594c3e311"},{"TableName":"tbl653b3cbc070e40bfb9ea9747baefe6fb"},{"TableName":"tbl65ba33068ef64b9f95c1038e22b720d9"},{"TableName":"tbl661839bb54174e2d92c5e20d3d6b6d5f"},{"TableName":"tbl665a3a7f18584abe8d13967a6db39434"},{"TableName":"tbl668ea4354635458c98a402950bd8d949"},{"TableName":"tbl66d93ebd92604bbca059de6e1d477674"},{"TableName":"tbl67ae3f7e8df4419a9a8c193aa217d479"},{"TableName":"tbl67b6a9410d1943b5b035adb9473a62d6"},{"TableName":"tbl67d852962d9243a5aed0628e640b152d"},{"TableName":"tbl68981bba1a8b4d46a9e1c3b18ebc46e2"},{"TableName":"tbl692477f37f1447748ddf7dde9ec5709a"},{"TableName":"tbl695a3961c0eb414384c6336b4aaf804b"},{"TableName":"tbl695ac752444e4f3481d9a9ffba8b5638"},{"TableName":"tbl697420bd1bb8431f8e45b32ddf305e19"},{"TableName":"tbl6a3a88221adc4025b19b61159bc61f05"},{"TableName":"tbl6a6e1bd351e648c799f1ea0acbd387c3"},{"TableName":"tbl6af8f29120434f82b5f850c3b6c38412"},{"TableName":"tbl6b20729646464684b7c34e4e8e897ce9"},{"TableName":"tbl6dbb137a974d425f8dc8b1aca1652c0a"},{"TableName":"tbl6dd05d032c464667bdf2490ac45061f4"},{"TableName":"tbl6e8d8497d0e843b7b17c2341c3311167"},{"TableName":"tbl6ebc55c855f5461d8dc3eb391e4a83e2"},{"TableName":"tbl70a4ad03faba477b9f9e850d56cde4a2"},{"TableName":"tbl70c34fbd74ee407ea8b38035f5f4dd2e"},{"TableName":"tbl71ebff1580bd4f0fa88e7da2a7f4777d"},{"TableName":"tbl71ed15e557e44cff85ea96a8d9c8367a"},{"TableName":"tbl7287b263a07844c29cc39d4d5695dbc0"},{"TableName":"tbl7383c9debc234f12a30d79da3a3be57b"},{"TableName":"tbl73b4e67479e64a0789137d24085d8f72"},{"TableName":"tbl73d7c83e67a14db9bd4717126d99e0b1"},{"TableName":"tbl748205f7e9404748ba8afdbb225be01f"},{"TableName":"tbl748adc61d2f04856a07fecb44d493791"},{"TableName":"tbl74db9c051c1441609388b4137b0f809e"},{"TableName":"tbl75f2fd99c12e492fa37ddb3704387033"},{"TableName":"tbl75fec2302b914989bc14e2c34afe9389"},{"TableName":"tbl7626ed6fb2e74eb6a424003e5779ba50"},{"TableName":"tbl7793ec943a1f43268de1cca77f120f18"},{"TableName":"tbl779bfdc1d99f44aebc9cdeaf4cf64360"},{"TableName":"tbl77fa62f38fe14dce843e1271ab6d51f1"},{"TableName":"tbl78e320b08e0a4cc58a50e86f08c76871"},{"TableName":"tbl78ff6308d71f4835bc8dc3e921c8f25c"},{"TableName":"tbl797eceba1fb2437f83c3fb1cd2365639"},{"TableName":"tbl79c5f0ad27214c02b75da570942baef9"},{"TableName":"tbl7a229e3e15db4993b0475ed42afde8b6"},{"TableName":"tbl7b2b085727554320aa110653d531dbc2"},{"TableName":"tbl7b47a2ea35764287992045e737f6ede4"},{"TableName":"tbl7ba70546599444dc8557bd13e8e5c345"},{"TableName":"tbl7c81165257824096944b82f5978faa3f"},{"TableName":"tbl7ce670ab029b420c94b16a7dbaa9571f"},{"TableName":"tbl7deeb7a3934e43d5a7d92f3bfbdeeaa3"},{"TableName":"tbl7e22c37f3152474282606de7e65d1680"},{"TableName":"tbl7eefbbe8cbe549d79e9fd3cf362e086a"},{"TableName":"tbl7f1336488e534479a093239887ac714d"},{"TableName":"tbl7f55ffde39a84cf3be454c3286b4f96e"},{"TableName":"tbl8044e77c75024812b9f328d1beaff52f"},{"TableName":"tbl80f5cc8302b0470ba5c2a050d4e8e9d2"},{"TableName":"tbl811383723ea34ef7aec2c8a697f2776a"},{"TableName":"tbl819b89cdd71a488e8a935cf7be17160d"},{"TableName":"tbl81ceca3e6fa24f46842b9e4306056a55"},{"TableName":"tbl832f0ab2d9f24bac939863d7c5523232"},{"TableName":"tbl8351e529ceb54a6c84d9efa3ed99f701"},{"TableName":"tbl849f86644fa3421e9f79fbe4a02d7107"},{"TableName":"tbl85ad7eebe7c644469f6a3189c24026af"},{"TableName":"tbl85e2f8f8756143188298050a3b4ec997"},{"TableName":"tbl8628341ef7824e84916048e7ae8093f3"},{"TableName":"tbl8645329745a34ba4878764749db9ae26"},{"TableName":"tbl87a9e0e8c30c40508e9e734f6649cf85"},{"TableName":"tbl87d855d1d4394f109368199cd63e0c66"},{"TableName":"tbl88283307f9e643fba5c45309bbda262e"},{"TableName":"tbl88f447f6d3d240f8876c365c5174c83b"},{"TableName":"tbl8918127646d8478e83e2b15314847347"},{"TableName":"tbl895cc8252e9344c18db16b88454c4da9"},{"TableName":"tbl89ed661e89394f27a139742a3e85bb4c"},{"TableName":"tbl89fe90a023ad4bfdb12699747e3d68fe"},{"TableName":"tbl8a3051b4251c43b6b43dc02a730f63ee"},{"TableName":"tbl8c24cc0b9808455cb7091f1f9f60c28c"},{"TableName":"tbl8c32dae36609489d9e2809e20d183c73"},{"TableName":"tbl8d0e302d942d44328d026987a4af9c90"},{"TableName":"tbl8d2524071d704f51965b60bd72eca8c8"},{"TableName":"tbl8d39da6b2385424c99bddffb3c2f72e8"},{"TableName":"tbl8d43d663113d4094b5e846ac924dd3ec"},{"TableName":"tbl8d45fc6295134b9b97d5d46c3b537d6b"},{"TableName":"tbl8dc4cbba93484e14898727fc2150ee9b"},{"TableName":"tbl8ecb8980a98449d5845554df5807f464"},{"TableName":"tbl9013a8b8c4c54c7587fd88661bad25ad"},{"TableName":"tbl907c66fb68d24c5ba5bde349bc88bd49"},{"TableName":"tbl90e29e13dc6845bf9fad72c069b586a1"},{"TableName":"tbl90e9b2a1307348e0b4f55da0607b7706"},{"TableName":"tbl91db25754a1f45d89d96c5ef25d7f223"},{"TableName":"tbl922f77f33adb43c38e549f26272beb19"},{"TableName":"tbl9246be10378743f0aa13be1a5cd35756"},{"TableName":"tbl93232305a9dc49f78f05c9f92528b817"},{"TableName":"tbl939f8900c5ae4936b7503dae6dd1cef9"},{"TableName":"tbl940c529980c54a54ad2a9a1f11632e84"},{"TableName":"tbl943dba6e3e944dfd8f1bab67e17ef004"},{"TableName":"tbl94e79d35c8214bca8dfb78d6907cd85b"},{"TableName":"tbl950df5d086b64bd5876fe7a03b1f9e24"},{"TableName":"tbl95926d3fa6f242b9bb43bcec516ae6c7"},{"TableName":"tbl95f57655a58043efb1faf177a53337e7"},{"TableName":"tbl96f3b984012f4fd9a7d1d98873b48452"},{"TableName":"tbl97c7aa5e6f6843b4bad8d16e97cc983a"},{"TableName":"tbl9816b487e74b4306bc829906ea523755"},{"TableName":"tbl981a8316cd154cb4a61fb1e23262cd1e"},{"TableName":"tbl9822ee4a74bb4df4ac969b76b7d0bc83"},{"TableName":"tbl9916631c7207455690d156d0d98c50fd"},{"TableName":"tbl99caef9bd210437cb754fbe2ccc4d51d"},{"TableName":"tbl9b75dc68d573487b97edfbd8c5a50837"},{"TableName":"tbl9d01714014d44c9c825a50ec5fd9c421"},{"TableName":"tbl9d0b8f5537a940b99809609ed3e276a1"},{"TableName":"tbl9d8ed3ae1f9b4aa7a7ed7bb6d1c845a7"},{"TableName":"tbl9da103ebdbed4b109ac4e373b9c779b6"},{"TableName":"tbl9dad282fe3354275964f84a79c590782"},{"TableName":"tbl9db8bec0c84e4b899d40b4597ebbd27e"},{"TableName":"tbl9dbcfe05a0e84a549cd7b85901613d34"},{"TableName":"tbl9e301801c6654f18aeea41b92e0f1c84"},{"TableName":"tbl9edd36a91f4b4c4aa85e4749f43d5be9"},{"TableName":"tbl9f2118b2c08e4fb18a211619220aeb56"},{"TableName":"tbl9fb368e02bf743488aa4746bae31b437"},{"TableName":"tbl9ff44348007441c7938965aa91389c71"},{"TableName":"tbla00cccaad49d44b39499378f8942a5d1"},{"TableName":"tbla0152bb1715448509bd87571d091f827"},{"TableName":"tbla0bd41d53d7a4793a699e8559ccacdbd"},{"TableName":"tbla1e00da0fe454b28b240f14ddbd90510"},{"TableName":"tbla1e6362f56f64a51babe0933cf98d8c5"},{"TableName":"tbla22312a85ccc4df5b1259ffab9ce7b18"},{"TableName":"tbla24a36b3c60c4e86adac7f1639edb456"},{"TableName":"tbla2adc64faea0494480f0a2b02cc93c75"},{"TableName":"tbla2b3655c27bd4bd684f2a450602a0a6b"},{"TableName":"tbla327fa460a8a4366a3d69064c68e680d"},{"TableName":"tbla3a4ef84e2b14a8e8f3e44383c50ce00"},{"TableName":"tbla3b780dc60ce42da801c87882299775a"},{"TableName":"tbla4053977a7024857be5a8467339ece02"},{"TableName":"tbla4304ef551d341928c99729d176d6126"},{"TableName":"tbla4be01548a074240bb0fe3cb61c1e2c5"},{"TableName":"tbla529550480554158a0c126e1923d4510"},{"TableName":"tbla52c050d27b44a6dab5b6e8154d8e4a6"},{"TableName":"tbla548bb240ba54036a6ecfca53e03e88e"},{"TableName":"tbla588edd2230c4d9aa960a198a6d610a2"},{"TableName":"tbla66beb7f5f354b01963c1affa3f4c9c2"},{"TableName":"tbla673d82ae8754222961b576cbdd873cb"},{"TableName":"tbla6ad17e79b3d4020ad369623f4d22d2f"},{"TableName":"tbla6cda3ffdab64e8b8f59e5523c78efdb"},{"TableName":"tbla7a886b95a3e4184aaba0a0c765eadd0"},{"TableName":"tbla8307fe6a848468799109501730afef4"},{"TableName":"tbla8b00d5dc9a04ac5ba15fc92d71110bc"},{"TableName":"tbla8c0118e0f3943509ba9ca1dae4da3e9"},{"TableName":"tbla928edff8f784005b33e75e0f13d244a"},{"TableName":"tbla93c46d213ce40aa9faddf7fc2da8bbd"},{"TableName":"tbla97662c8d3ff4d73abc4720f284a7603"},{"TableName":"tbla9b00156c43c49aa9edc2065f2faa359"},{"TableName":"tbla9f42aad3d4045f1a9dc1a1645b27522"},{"TableName":"tblaa79ed457ca4489388ea7fbffd6a523e"},{"TableName":"tblab8d2cf34b984848896f4cc805d7db11"},{"TableName":"tblabf72d56d6c94d218b7140ada1e2ad4e"},{"TableName":"tblac04d4f7cfe645e7a74e7bdc435160a5"},{"TableName":"tblac44753d77b545f7853b62b6bdb810ea"},{"TableName":"tblac80c9e6fb8346b2b7f3828245bbde41"},{"TableName":"tblad74689d72974cc5b7de30816fa367ca"},{"TableName":"tblad85067aaa0749d69f6cb54ffd1b85ca"},{"TableName":"tblae0e731fb98746b48f4974a9abff0161"},{"TableName":"tblae408fed8afe46268d009057cd49ec60"},{"TableName":"tblae61d3ce6d4441239a62982fed3ec771"},{"TableName":"tblaed2ee48e8b24a3caefa680d4bdc88fb"},{"TableName":"tblaed4f8338c9c40b5a064a2a8e4de769b"},{"TableName":"tblaf0835297f364a259e60a7a976afb533"},{"TableName":"tblaf154a7844304949a4c10ae9ce6ae26a"},{"TableName":"tblaf2cd676583f4e7ba16f8f98b469b8c4"},{"TableName":"tblaf668b7b47d448ccbc449cd0193cd9e7"},{"TableName":"tblaf7d5c4f327e4e4f87863ec4f43610eb"},{"TableName":"tblaf992a780d55488fa478a3b9a3689ff1"},{"TableName":"tblb06e2cd2f2ca44c78649e85c579ec145"},{"TableName":"tblb0ca34e062044b478d532ba2918cc553"},{"TableName":"tblb0d464adfabf4bdb952ea17df9b59f15"},{"TableName":"tblb0d710065aae49a58e2710fbc12ab05f"},{"TableName":"tblb0facbe36bb74ef4a53a8e305e932449"},{"TableName":"tblb0fbe53650294bfc8c780b76edd0cd7d"},{"TableName":"tblb1d464cecf5345ec84923caa55cfdc94"},{"TableName":"tblb1e3c24c16fa465098541a4ab68901ca"},{"TableName":"tblb28526c80886411c912988d332c85fd6"},{"TableName":"tblb3086ecd0b1d40e08d2f3ddf919ef334"},{"TableName":"tblb3110ed97cf7489689a83fccd0ab1b2e"},{"TableName":"tblb35477c4d91047a0b4800716b90f3822"},{"TableName":"tblb3badfdc4a2a49aa8886a3d07b8f6bc3"},{"TableName":"tblb3c022544cdc4cd8bbed0e494f8b4343"},{"TableName":"tblb4a3595bbbff48419e59310483ceb13b"},{"TableName":"tblb4c11d1a365046f78d24233799cd055f"},{"TableName":"tblb524096f774347599f572cde624fe83e"},{"TableName":"tblb677d5fd14ea46d58d872fe218fb934a"},{"TableName":"tblb6fb13a4e64c45d2823e76d0f71cc406"},{"TableName":"tblb783bfcb178a4f86a301718f82eea5a8"},{"TableName":"tblb7af1e3dbba0459eacb30f26c887952f"},{"TableName":"tblb87d96bdac2f41fe8db4b34a76194338"},{"TableName":"tblb883bdfe250840f8bbed580d009919ec"},{"TableName":"tblb8f3166dd6cf4aca8db3a9faff96f4f0"},{"TableName":"tblb973716f82c4477e8d4d144bc8136af6"},{"TableName":"tblb9dbea5933254daab4a069d3e14b436c"},{"TableName":"tblba003f099d0f45408422254a4492ff1d"},{"TableName":"tblba680f8669c04d9c81e55ca561d5139b"},{"TableName":"tblbabd06408f2f40edbb48160a1822c347"},{"TableName":"tblbb25f58edc1e489f82f2836472b046fd"},{"TableName":"tblbbb3dcc6411a4597a4a7ee879bf9adb7"},{"TableName":"tblbbdc3a8870954ab88d5a0e953e0e0519"},{"TableName":"tblbca9a9b915f84734b1f6cf444d4210a6"},{"TableName":"tblbcda6e16b80a4cc09337665b6fb54afa"},{"TableName":"tblbd5ea3cc250442bea868a633fba6ec9b"},{"TableName":"tblbd7185081777410b81ab9b8a00887ec4"},{"TableName":"tblbdfb77f749254674936c1345f5cf89c0"},{"TableName":"tblbef7715fea5d4364a50a1eecc6c3d908"},{"TableName":"tblbf7b57faa00a43209d7e290b89d64701"},{"TableName":"tblc0359086919e4f3ba75a3e3be4dc93ef"},{"TableName":"tblc0e0ed7f342a4bd1b4c35a54dba6269a"},{"TableName":"tblc105950447774436b0f1857575064398"},{"TableName":"tblc1ba5103237645f78ecc765d44a12a20"},{"TableName":"tblc22325111e3f4f12b702f70f2118fdcf"},{"TableName":"tblc243782315ce4dc9a113d608dd06286f"},{"TableName":"tblc27dca19c5854a0b92c838b3d502b339"},{"TableName":"tblc29e5fb075f144348726527b00526b2d"},{"TableName":"tblc30a541803504b5db75ac8e51b3c7bed"},{"TableName":"tblc4417b8e3afb4f1f83aa6f786ce6429f"},{"TableName":"tblc44cb09bdbe949e080c2a2b11aa332af"},{"TableName":"tblc458d4ac05be48d297efabc36586ae21"},{"TableName":"tblc4d5a3c552cf407aa2095b3654115ddc"},{"TableName":"tblc4e7a83dfddd459fa5e35ee9c046c3db"},{"TableName":"tblc5686dabfcc64ded887342c39904b7d7"},{"TableName":"tblc572fa1756de4189aebd2b6a816c33d5"},{"TableName":"tblc5d2bb46092a4fb3a87ee054e2922a28"},{"TableName":"tblc6261f052dc442fda333b32c69ede321"},{"TableName":"tblc69b0a2263664056b05cad9896074a08"},{"TableName":"tblc6bdf19a534e4b328a4f26e99f146f41"},{"TableName":"tblc723348989234f0e8163782784b47e70"},{"TableName":"tblc742d56cf8fc45b5913a0920f71e8125"},{"TableName":"tblc76acadb11e443fb88a1641af81a94d7"},{"TableName":"tblc786674298f5461dacc6be5bcea6167f"},{"TableName":"tblc79dac2d437f4d9ea63f3dfcfe870902"},{"TableName":"tblc855944446b94d698202bf8d85f4a7a4"},{"TableName":"tblc89eb1164f19487a9b9e900c6bfab786"},{"TableName":"tblc8ace17b9fd04759a17529a06f7046c8"},{"TableName":"tblc8d253d06f7a4bbeb344dde90a374c43"},{"TableName":"tblc8e963245555476fbdc2865a481240ba"},{"TableName":"tblca02458fed974f07a67876ff6d659ce4"},{"TableName":"tblca1ef18a6fde4d57a8b005c9a1e17317"},{"TableName":"tblca5b6fb234f643a19f045147eb183e89"},{"TableName":"tblcafcbc41541f4f73b9a66b282d66c3ff"},{"TableName":"tblcb4cd1fccbbb4da0a254427082318cab"},{"TableName":"tblcb606f18ac74403ab462e454af9ad650"},{"TableName":"tblcb74b83143af4cbf95d86325c9de385d"},{"TableName":"tblcbfc1839624d4241b93005298e3eab4f"},{"TableName":"tblcce73519d3ce4c8f8ef679580509c5e2"},{"TableName":"tblccfc5e750d154c6a9015a8bd7fbb074a"},{"TableName":"tblcd6b9c3945d34d79a410e812113fe9ce"},{"TableName":"tblcda480b1ab854665b9dd0257bc4eb3ef"},{"TableName":"tblce3df078203446dd91911af850c59629"},{"TableName":"tblce7b654b12d24133aa80861590f6ba65"},{"TableName":"tblced6f78aa4b14f7b985a548bd3b0ec9e"},{"TableName":"tblcf0b0bf49f014dbeb5444591d334ebaf"},{"TableName":"tblcf45b54aa2d7471696a5a90d0c542f50"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:44 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:41 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-continuation-NextTableName: [1!72!dGJsZDBhMmUyMDFiZDZiNDMyNTk3YmRmMGI1NDg3MzQwODABMDFkMjU1YTNjMTJmYmMxZg--] - x-ms-request-id: [f40ca53f-0002-0023-2f09-fc3b1f000000] + x-ms-continuation-NextTableName: [1!72!dGJsY2Y3NDBjZWNiN2Q3NDA5Y2E4ZTg0ZmVlNDhjOWY1N2YBMDFkMmExYjVkZThhMWNkNg--] + x-ms-request-id: [82d37508-0002-00f5-0403-fd70c5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -87,22 +87,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [99668f46-67fc-11e7-8661-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9e81fe2-68f6-11e7-8fb4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:41 GMT'] x-ms-version: ['2017-04-17'] method: GET - uri: https://storagename.table.core.windows.net/Tables?NextTableName=1%2172%21dGJsZDBhMmUyMDFiZDZiNDMyNTk3YmRmMGI1NDg3MzQwODABMDFkMjU1YTNjMTJmYmMxZg-- + uri: https://storagename.table.core.windows.net/Tables?NextTableName=1%2172%21dGJsY2Y3NDBjZWNiN2Q3NDA5Y2E4ZTg0ZmVlNDhjOWY1N2YBMDFkMmExYjVkZThhMWNkNg-- response: - body: {string: '{"value":[{"TableName":"tbld0a2e201bd6b432597bdf0b548734080"},{"TableName":"tbld0d9f8a25527458f99578c2328355325"},{"TableName":"tbld139f20f3c6c41a08aabe8bada41f66f"},{"TableName":"tbld1557aacf6654a398f59562e1ee3a3c5"},{"TableName":"tbld233852eadcf4026b2aed77c92c5ddd7"},{"TableName":"tbld3b05eeae80e4a7e8d8896ddddd27d0d"},{"TableName":"tbld466d4964b894ea68bebc7927b53dc0c"},{"TableName":"tbld53f561d227b488498e93e4132c04590"},{"TableName":"tbld67c3c6989ec440d8923d2f554d0d70a"},{"TableName":"tbld6e0b661a0344162ad35907a5bf6c16a"},{"TableName":"tbld713caaef1e24258ba67ccb451d72270"},{"TableName":"tbld749bb48cc4b4f389d99743afbfb49fa"},{"TableName":"tbld7580fb2a74a44fb91315062501358e6"},{"TableName":"tbld81b9a1555604d23b76720fab44d5ff0"},{"TableName":"tbld82f7e3e7c104aad9681b109e266fd08"},{"TableName":"tbld9b405d020ad4775978d6ab877c291fd"},{"TableName":"tblda7b3a6e8c2f4d9abc5dbd741f0a644d"},{"TableName":"tblda9f4588583f43f98efc517c012ff93e"},{"TableName":"tbldabe5494ded3412ca8910a149283d401"},{"TableName":"tbldac5bd20ba3e477b860753a6a985804d"},{"TableName":"tbldafae619f568484eac2c72045f3e271d"},{"TableName":"tbldbc2f0930cea49108caf9b0c8587923e"},{"TableName":"tbldd5e6c64172a47daad8dcaef3725ab64"},{"TableName":"tblddba1310f8c94eca97f7857cda67d3e9"},{"TableName":"tbldddf2b00c33846a4b7579452ed2f03c0"},{"TableName":"tbldde775431a5542ba92d204b70426897a"},{"TableName":"tblddf1d23ea3a54f9baca424537e917fbf"},{"TableName":"tblde8b656497f24cf7ac119873ab053073"},{"TableName":"tbldfb2893f657f41649273393e09336940"},{"TableName":"tble0c4f5a5692641acb2e775f3338fc24f"},{"TableName":"tble12bbd1539254e399231832071b5af27"},{"TableName":"tble169dd9d7cdb48d19195759afc8b6da2"},{"TableName":"tble185d5c633644b4081e7205bbda3707f"},{"TableName":"tble1adce3cebae47d4bf2e7d1141fb5dd1"},{"TableName":"tble1d33848c0314d75b08db686eb82fab5"},{"TableName":"tble1eb3f37873f4362acc5e3fce7c3157b"},{"TableName":"tble28b124b1eaf48b8a804f275988e8187"},{"TableName":"tble35f110c6d474217a45ca9f1e8c926da"},{"TableName":"tble4db5e35454f41ada2eb83f096d2b00d"},{"TableName":"tble571f021cd5742ad81310606fa6481fb"},{"TableName":"tble5ccc0f3454048eba161d8be93fcce7f"},{"TableName":"tble5eb6f854ab04694acfe645ca68eec36"},{"TableName":"tble6d71d02d2e246dd8b51cca1c62ac0d2"},{"TableName":"tble7aa728f0c744b68967ecb032288a11c"},{"TableName":"tble7afd16629b9412a8e95495d3233d418"},{"TableName":"tble7eb33ec657e4178b3204f0e24b6a955"},{"TableName":"tble8722dcc905c46bfa7b678b559909e6f"},{"TableName":"tble98ad279928f4db1abe6536939f6fcc6"},{"TableName":"tblea1c1a3316d749aebb7cc1dac25591a1"},{"TableName":"tblea5817925e2545c2933dceec09fdd66d"},{"TableName":"tbleaab3e5193a34eca99a0048c3cb1e080"},{"TableName":"tblead0b1f6d4da4c0ea1efac8254bcd075"},{"TableName":"tbleb1067bc8cd64c3eaf1dc029cd37a1ae"},{"TableName":"tbleb3adcf89bea411dba025bb48ac62a21"},{"TableName":"tbleba920a84a5b4fbcb1a5b3b6801cedc4"},{"TableName":"tblebf2efe7e7af40218e7244589155fb7a"},{"TableName":"tblec2342c1136f4ba196dbb5b297a545bd"},{"TableName":"tblec798b253ce241dea3dc80d02da349d7"},{"TableName":"tbledcc55c88d3f4de183830e1450b45749"},{"TableName":"tblee23651036274002a50bd465a674073c"},{"TableName":"tblee2e6428cb194677986f182089f5650f"},{"TableName":"tblee549b11ecb449f2b944942b9b2a30ab"},{"TableName":"tbleea33735e2ad4277ab68e56a6caf0291"},{"TableName":"tblef1c1522d51e4c67947394499a35ef82"},{"TableName":"tblef3d2bf1b19b4c53ade544858ae31f59"},{"TableName":"tblef6086dabf1f4f0da9006cce0b2f01d6"},{"TableName":"tblefdffe44d1aa43f3a60b84e54f476ac2"},{"TableName":"tblf033517d612a41e298f6048cd0bd6496"},{"TableName":"tblf0495838532f49d5a67adb9582074ac0"},{"TableName":"tblf0efbd89fb204f45aabbb1ef66b46b41"},{"TableName":"tblf1354e08adf94b4a992d831fdd36b1a8"},{"TableName":"tblf13d75694be44fb6bad2b7f7fc038edd"},{"TableName":"tblf201b3655ed7434a9a1d774e1188c61e"},{"TableName":"tblf20e8341cfe944da8a9f615d29d16043"},{"TableName":"tblf24e31cc5bf84d96ae80506db4fa0a47"},{"TableName":"tblf2a3fb7fddaf448aab7dc8e89606fb78"},{"TableName":"tblf2d9d8c8a0cb4403b4e71c278055929b"},{"TableName":"tblf2df94d744b44aa1bf93b3d1c88bf4ac"},{"TableName":"tblf3b11ae38c034bf98dfda713a32a9fce"},{"TableName":"tblf40bb499741b4511a5d86136c74f859d"},{"TableName":"tblf4121aa3f11b466dabeff25612c73129"},{"TableName":"tblf4b702ba9a0047c18baed8fad2adfa72"},{"TableName":"tblf5091efe9c02491a927fa98e926f0ae3"},{"TableName":"tblf5216227dfd34e6fb761546e6d38e4e8"},{"TableName":"tblf574d07a882f4b409319b3075bfd5f50"},{"TableName":"tblf58c376fd08c434289404139ecfd0505"},{"TableName":"tblf5f5b9a054b6422d9a9e816bc8e6eeb0"},{"TableName":"tblf6a66f18d6e6459ebb0da96341050bfa"},{"TableName":"tblf7d950839e1a427b97a401ac6cd8933e"},{"TableName":"tblf81f0872556944528748609fb7ca2b49"},{"TableName":"tblf87dfacd199b475381f696081af4c1a1"},{"TableName":"tblf962d96005c64eff97823904d17ffbac"},{"TableName":"tblfafcaa82853e4ee8837273d4c1716106"},{"TableName":"tblfb24d5bca2a947f9b0b37b1c7d9eae0e"},{"TableName":"tblfbf0417f489b4000bd3fe5792d9de1c1"},{"TableName":"tblfc4b59dbc32a48599771c876ea10c530"},{"TableName":"tblfdb306f3576941059ea61c5d74b5db80"},{"TableName":"tblfddb2fbd576e4c9890d49ec2f5e760b9"},{"TableName":"tblfdf5aa6c7d68412f80d4838ec323cb8b"},{"TableName":"tblfe70485407dd4cd18cc5d73e27a23173"},{"TableName":"tblfeb034a12e9b43afb065b0f4f3a292d0"},{"TableName":"tblfeccdb4b02354087a9247758d6678d1f"},{"TableName":"tblfee8a8f30a4742caa227e9916ca70442"},{"TableName":"Tc03609224ea141359aa23b3a7a545ec1"},{"TableName":"tc3a6dfc248a94ff886ff55065164f587"},{"TableName":"tc4257c2c050249df921cc55b9d06ef61"},{"TableName":"tc469f4b8bef347999a225bb4a16db41a"},{"TableName":"tc4f0d5e1cadd46cfbe72fba2c94bfc66"},{"TableName":"tc69de9cec4a24d10928ee322457ca420"},{"TableName":"Tc7355f7e91c14b6cbe01e3205536c302"},{"TableName":"tc99fe76513c84482b416fb1b800c72cf"},{"TableName":"tca3103bb04554fd2b2502a7ef49d54d5"},{"TableName":"tca8be91d2b9140198c3f2e14091c23e0"},{"TableName":"tcb20fc7d94c64a758339474d60321672"},{"TableName":"tcb9717788f9e4c818f8ac1b1e27984d2"},{"TableName":"Tcce7c028adfd452c98e733a0da6e1f41"},{"TableName":"Tcd1fd83945534ac4af8472817e3d4697"},{"TableName":"tce841ce28cc5494ab71a0498fb1a63bd"},{"TableName":"tceae84a5580842a9b6167b711ed6684f"},{"TableName":"Td05c1f9fe9334841a944aa34cc2f3ab1"},{"TableName":"td10b393602c147d8ba1f02a20c16fb01"},{"TableName":"td240846e3fdd40bc87b5c457bb6dae5b"},{"TableName":"td2aea76be443494498e6b5fc6c95d483"},{"TableName":"td42c35dbb8b34aef97df68061c434760"},{"TableName":"td5edfdcd2ce147658c5c37c9c2b00ba3"},{"TableName":"td6e52c6f7e8847929d44b940ded8c440"},{"TableName":"Td71d425df49a46faa4722060b2b5acf0"},{"TableName":"td9683cc6df5645acbf0fff23e96bb333"},{"TableName":"td9a2809ba7ad475bbd3b3138eeeb3b16"},{"TableName":"tdc3d7ce781f9424f8f588dc9072ca520"},{"TableName":"tdd27360a165b434ebcb12525844603dc"},{"TableName":"tdea9ec7014d242c6b4b7e169f8c182b3"},{"TableName":"tdf698da2642e4b45bee686c4328d07d1"},{"TableName":"tdf9b66eaf89040bf95461302dca50bac"},{"TableName":"te0a4a855af1044b99da80545231890c6"},{"TableName":"te0ec4e9276ed4dbbb4a4375b05b0ff81"},{"TableName":"te15e17122c5a4c7f9b0b6b86e35e5017"},{"TableName":"te44c86227815425cb6005afabcd49c3d"},{"TableName":"te52ac36078ba48aea5f095838d98ce04"},{"TableName":"te56b26d1f29d4eb6b8bb169cb9dc35f0"},{"TableName":"te67702f3732d4bc7a875cef40439dfd9"},{"TableName":"te88400787fcf471da0f3ca107437bdc7"},{"TableName":"te96d4736f8564e2997eb13b473badada"},{"TableName":"Te97fa48dc4ec4039a3af649e659e5e40"},{"TableName":"te99ec2d5f1c44cc3ad330c4a98330953"},{"TableName":"Tead0e8a84fe5454884c4b113d896f840"},{"TableName":"teb97c4ad7041421fbc52a8c75e0e7281"},{"TableName":"tec2afa9a40e2420e899417b36b590c77"},{"TableName":"ted33b88df1884cde86ce3210e20a2c3d"},{"TableName":"ted7c307f049e4fa69719f00aeeb31752"},{"TableName":"test"},{"TableName":"test5"},{"TableName":"TestTable"},{"TableName":"Tf063f0d9ad624161907fb36906ad6881"},{"TableName":"tf1900f23dda9404ca4b8a34ecef2c44b"},{"TableName":"tf2078facdb0944f59858bff58a1aee49"},{"TableName":"tf21665cabd1f47868309111884bdfe6f"},{"TableName":"tf272073eb34b4a14b5c7455c5f9d55cb"},{"TableName":"tf2c82d7148ea4f84bb1e75918ac9bcd6"},{"TableName":"tf358b6831d8d49238b4afac169a994c9"},{"TableName":"tf49c752e047b43c2890276299670b6c7"},{"TableName":"tf4c610ffcdba4fbfb49805b0d9fe4c43"},{"TableName":"Tf61a5071c3cc4d648021207406088d4b"},{"TableName":"tf6516afa9bb44978af70d9b0e1d6f8f8"},{"TableName":"tf6a18ec940a747f8915aab7129a7433d"},{"TableName":"tf76822d364ea42b28e3ef17c9f3a82ce"},{"TableName":"tf836b2d51d6340ed899dd0ccf37dc3c3"},{"TableName":"tf8fc1c26d5e74d9eaaeb5caf7d0281dc"},{"TableName":"tf9b171aa158d4980a62b2d097e436a93"},{"TableName":"tf9d4511135394ee285b5d69a4d49b22e"},{"TableName":"tfafa6d903d594a0cae08d9e145b1c8f3"},{"TableName":"tfb7c7517bf6343e8950977e16ae8105d"},{"TableName":"tfdae40659cb7443b82f728924449ede9"},{"TableName":"tfebcd4988b5643fbb5a6e7104be8387a"},{"TableName":"Tff00e9043e504729b8ded696d6a7f094"},{"TableName":"tffb444547f224eaf80654d8a6dab56c8"},{"TableName":"tffce2ff958d64e68a9481639b973c073"},{"TableName":"tffd14cfe34b24dbc808eede5231a08a4"},{"TableName":"uttable65551665"}]}'} + body: {string: '{"value":[{"TableName":"tblcf740cecb7d7409ca8e84fee48c9f57f"},{"TableName":"tbld06ed131de3743a19611f60c5790e272"},{"TableName":"tbld0a2e201bd6b432597bdf0b548734080"},{"TableName":"tbld0d9f8a25527458f99578c2328355325"},{"TableName":"tbld139f20f3c6c41a08aabe8bada41f66f"},{"TableName":"tbld1557aacf6654a398f59562e1ee3a3c5"},{"TableName":"tbld233852eadcf4026b2aed77c92c5ddd7"},{"TableName":"tbld3b05eeae80e4a7e8d8896ddddd27d0d"},{"TableName":"tbld466d4964b894ea68bebc7927b53dc0c"},{"TableName":"tbld53f561d227b488498e93e4132c04590"},{"TableName":"tbld67c3c6989ec440d8923d2f554d0d70a"},{"TableName":"tbld6e0b661a0344162ad35907a5bf6c16a"},{"TableName":"tbld713caaef1e24258ba67ccb451d72270"},{"TableName":"tbld749bb48cc4b4f389d99743afbfb49fa"},{"TableName":"tbld7580fb2a74a44fb91315062501358e6"},{"TableName":"tbld81b9a1555604d23b76720fab44d5ff0"},{"TableName":"tbld82f7e3e7c104aad9681b109e266fd08"},{"TableName":"tbld9b405d020ad4775978d6ab877c291fd"},{"TableName":"tblda7b3a6e8c2f4d9abc5dbd741f0a644d"},{"TableName":"tblda9f4588583f43f98efc517c012ff93e"},{"TableName":"tbldabe5494ded3412ca8910a149283d401"},{"TableName":"tbldac5bd20ba3e477b860753a6a985804d"},{"TableName":"tbldafae619f568484eac2c72045f3e271d"},{"TableName":"tbldbc2f0930cea49108caf9b0c8587923e"},{"TableName":"tbldd5e6c64172a47daad8dcaef3725ab64"},{"TableName":"tblddba1310f8c94eca97f7857cda67d3e9"},{"TableName":"tbldddf2b00c33846a4b7579452ed2f03c0"},{"TableName":"tbldde775431a5542ba92d204b70426897a"},{"TableName":"tblddf1d23ea3a54f9baca424537e917fbf"},{"TableName":"tblde8b656497f24cf7ac119873ab053073"},{"TableName":"tbldfb2893f657f41649273393e09336940"},{"TableName":"tble0c4f5a5692641acb2e775f3338fc24f"},{"TableName":"tble12bbd1539254e399231832071b5af27"},{"TableName":"tble169dd9d7cdb48d19195759afc8b6da2"},{"TableName":"tble185d5c633644b4081e7205bbda3707f"},{"TableName":"tble1adce3cebae47d4bf2e7d1141fb5dd1"},{"TableName":"tble1d33848c0314d75b08db686eb82fab5"},{"TableName":"tble1eb3f37873f4362acc5e3fce7c3157b"},{"TableName":"tble28b124b1eaf48b8a804f275988e8187"},{"TableName":"tble35f110c6d474217a45ca9f1e8c926da"},{"TableName":"tble4db5e35454f41ada2eb83f096d2b00d"},{"TableName":"tble571f021cd5742ad81310606fa6481fb"},{"TableName":"tble5ccc0f3454048eba161d8be93fcce7f"},{"TableName":"tble5eb6f854ab04694acfe645ca68eec36"},{"TableName":"tble6d71d02d2e246dd8b51cca1c62ac0d2"},{"TableName":"tble7aa728f0c744b68967ecb032288a11c"},{"TableName":"tble7afd16629b9412a8e95495d3233d418"},{"TableName":"tble7eb33ec657e4178b3204f0e24b6a955"},{"TableName":"tble8722dcc905c46bfa7b678b559909e6f"},{"TableName":"tble98ad279928f4db1abe6536939f6fcc6"},{"TableName":"tblea1c1a3316d749aebb7cc1dac25591a1"},{"TableName":"tblea5817925e2545c2933dceec09fdd66d"},{"TableName":"tbleaab3e5193a34eca99a0048c3cb1e080"},{"TableName":"tblead0b1f6d4da4c0ea1efac8254bcd075"},{"TableName":"tbleb1067bc8cd64c3eaf1dc029cd37a1ae"},{"TableName":"tbleb3adcf89bea411dba025bb48ac62a21"},{"TableName":"tbleba920a84a5b4fbcb1a5b3b6801cedc4"},{"TableName":"tblebf2efe7e7af40218e7244589155fb7a"},{"TableName":"tblec2342c1136f4ba196dbb5b297a545bd"},{"TableName":"tblec798b253ce241dea3dc80d02da349d7"},{"TableName":"tbledcc55c88d3f4de183830e1450b45749"},{"TableName":"tblee23651036274002a50bd465a674073c"},{"TableName":"tblee2e6428cb194677986f182089f5650f"},{"TableName":"tblee549b11ecb449f2b944942b9b2a30ab"},{"TableName":"tbleea33735e2ad4277ab68e56a6caf0291"},{"TableName":"tblef1c1522d51e4c67947394499a35ef82"},{"TableName":"tblef3d2bf1b19b4c53ade544858ae31f59"},{"TableName":"tblef6086dabf1f4f0da9006cce0b2f01d6"},{"TableName":"tblefdffe44d1aa43f3a60b84e54f476ac2"},{"TableName":"tblf033517d612a41e298f6048cd0bd6496"},{"TableName":"tblf0495838532f49d5a67adb9582074ac0"},{"TableName":"tblf0efbd89fb204f45aabbb1ef66b46b41"},{"TableName":"tblf1354e08adf94b4a992d831fdd36b1a8"},{"TableName":"tblf13d75694be44fb6bad2b7f7fc038edd"},{"TableName":"tblf201b3655ed7434a9a1d774e1188c61e"},{"TableName":"tblf20e8341cfe944da8a9f615d29d16043"},{"TableName":"tblf24e31cc5bf84d96ae80506db4fa0a47"},{"TableName":"tblf27d981223f446029f30cc90138fa1e3"},{"TableName":"tblf2a3fb7fddaf448aab7dc8e89606fb78"},{"TableName":"tblf2d9d8c8a0cb4403b4e71c278055929b"},{"TableName":"tblf2df94d744b44aa1bf93b3d1c88bf4ac"},{"TableName":"tblf3b11ae38c034bf98dfda713a32a9fce"},{"TableName":"tblf40bb499741b4511a5d86136c74f859d"},{"TableName":"tblf4121aa3f11b466dabeff25612c73129"},{"TableName":"tblf4b702ba9a0047c18baed8fad2adfa72"},{"TableName":"tblf5091efe9c02491a927fa98e926f0ae3"},{"TableName":"tblf5216227dfd34e6fb761546e6d38e4e8"},{"TableName":"tblf574d07a882f4b409319b3075bfd5f50"},{"TableName":"tblf58c376fd08c434289404139ecfd0505"},{"TableName":"tblf5f5b9a054b6422d9a9e816bc8e6eeb0"},{"TableName":"tblf6a66f18d6e6459ebb0da96341050bfa"},{"TableName":"tblf7d950839e1a427b97a401ac6cd8933e"},{"TableName":"tblf81f0872556944528748609fb7ca2b49"},{"TableName":"tblf87dfacd199b475381f696081af4c1a1"},{"TableName":"tblf962d96005c64eff97823904d17ffbac"},{"TableName":"tblfafcaa82853e4ee8837273d4c1716106"},{"TableName":"tblfb24d5bca2a947f9b0b37b1c7d9eae0e"},{"TableName":"tblfbf0417f489b4000bd3fe5792d9de1c1"},{"TableName":"tblfc4b59dbc32a48599771c876ea10c530"},{"TableName":"tblfdb306f3576941059ea61c5d74b5db80"},{"TableName":"tblfddb2fbd576e4c9890d49ec2f5e760b9"},{"TableName":"tblfdf5aa6c7d68412f80d4838ec323cb8b"},{"TableName":"tblfe70485407dd4cd18cc5d73e27a23173"},{"TableName":"tblfeb034a12e9b43afb065b0f4f3a292d0"},{"TableName":"tblfeccdb4b02354087a9247758d6678d1f"},{"TableName":"tblfee8a8f30a4742caa227e9916ca70442"},{"TableName":"Tc03609224ea141359aa23b3a7a545ec1"},{"TableName":"tc3a6dfc248a94ff886ff55065164f587"},{"TableName":"tc4257c2c050249df921cc55b9d06ef61"},{"TableName":"tc469f4b8bef347999a225bb4a16db41a"},{"TableName":"tc4f0d5e1cadd46cfbe72fba2c94bfc66"},{"TableName":"tc69de9cec4a24d10928ee322457ca420"},{"TableName":"Tc7355f7e91c14b6cbe01e3205536c302"},{"TableName":"tc99fe76513c84482b416fb1b800c72cf"},{"TableName":"tca3103bb04554fd2b2502a7ef49d54d5"},{"TableName":"tca8be91d2b9140198c3f2e14091c23e0"},{"TableName":"tcb20fc7d94c64a758339474d60321672"},{"TableName":"tcb9717788f9e4c818f8ac1b1e27984d2"},{"TableName":"Tcce7c028adfd452c98e733a0da6e1f41"},{"TableName":"Tcd1fd83945534ac4af8472817e3d4697"},{"TableName":"tce841ce28cc5494ab71a0498fb1a63bd"},{"TableName":"tceae84a5580842a9b6167b711ed6684f"},{"TableName":"Td05c1f9fe9334841a944aa34cc2f3ab1"},{"TableName":"td10b393602c147d8ba1f02a20c16fb01"},{"TableName":"td240846e3fdd40bc87b5c457bb6dae5b"},{"TableName":"td2aea76be443494498e6b5fc6c95d483"},{"TableName":"td42c35dbb8b34aef97df68061c434760"},{"TableName":"td5edfdcd2ce147658c5c37c9c2b00ba3"},{"TableName":"td6e52c6f7e8847929d44b940ded8c440"},{"TableName":"Td71d425df49a46faa4722060b2b5acf0"},{"TableName":"td9683cc6df5645acbf0fff23e96bb333"},{"TableName":"td9a2809ba7ad475bbd3b3138eeeb3b16"},{"TableName":"tdc3d7ce781f9424f8f588dc9072ca520"},{"TableName":"tdd27360a165b434ebcb12525844603dc"},{"TableName":"tdea9ec7014d242c6b4b7e169f8c182b3"},{"TableName":"tdf698da2642e4b45bee686c4328d07d1"},{"TableName":"tdf9b66eaf89040bf95461302dca50bac"},{"TableName":"te0a4a855af1044b99da80545231890c6"},{"TableName":"te0ec4e9276ed4dbbb4a4375b05b0ff81"},{"TableName":"te15e17122c5a4c7f9b0b6b86e35e5017"},{"TableName":"te44c86227815425cb6005afabcd49c3d"},{"TableName":"te52ac36078ba48aea5f095838d98ce04"},{"TableName":"te56b26d1f29d4eb6b8bb169cb9dc35f0"},{"TableName":"te67702f3732d4bc7a875cef40439dfd9"},{"TableName":"te88400787fcf471da0f3ca107437bdc7"},{"TableName":"te96d4736f8564e2997eb13b473badada"},{"TableName":"Te97fa48dc4ec4039a3af649e659e5e40"},{"TableName":"te99ec2d5f1c44cc3ad330c4a98330953"},{"TableName":"Tead0e8a84fe5454884c4b113d896f840"},{"TableName":"teb97c4ad7041421fbc52a8c75e0e7281"},{"TableName":"tec2afa9a40e2420e899417b36b590c77"},{"TableName":"ted33b88df1884cde86ce3210e20a2c3d"},{"TableName":"ted7c307f049e4fa69719f00aeeb31752"},{"TableName":"test"},{"TableName":"test5"},{"TableName":"TestTable"},{"TableName":"Tf063f0d9ad624161907fb36906ad6881"},{"TableName":"tf1900f23dda9404ca4b8a34ecef2c44b"},{"TableName":"tf2078facdb0944f59858bff58a1aee49"},{"TableName":"tf21665cabd1f47868309111884bdfe6f"},{"TableName":"tf272073eb34b4a14b5c7455c5f9d55cb"},{"TableName":"tf2c82d7148ea4f84bb1e75918ac9bcd6"},{"TableName":"tf358b6831d8d49238b4afac169a994c9"},{"TableName":"tf49c752e047b43c2890276299670b6c7"},{"TableName":"tf4c610ffcdba4fbfb49805b0d9fe4c43"},{"TableName":"Tf61a5071c3cc4d648021207406088d4b"},{"TableName":"tf6516afa9bb44978af70d9b0e1d6f8f8"},{"TableName":"tf6a18ec940a747f8915aab7129a7433d"},{"TableName":"tf76822d364ea42b28e3ef17c9f3a82ce"},{"TableName":"tf836b2d51d6340ed899dd0ccf37dc3c3"},{"TableName":"tf8fc1c26d5e74d9eaaeb5caf7d0281dc"},{"TableName":"tf9b171aa158d4980a62b2d097e436a93"},{"TableName":"tf9d4511135394ee285b5d69a4d49b22e"},{"TableName":"tfafa6d903d594a0cae08d9e145b1c8f3"},{"TableName":"tfb7c7517bf6343e8950977e16ae8105d"},{"TableName":"tfdae40659cb7443b82f728924449ede9"},{"TableName":"tfebcd4988b5643fbb5a6e7104be8387a"},{"TableName":"Tff00e9043e504729b8ded696d6a7f094"},{"TableName":"tffb444547f224eaf80654d8a6dab56c8"},{"TableName":"tffce2ff958d64e68a9481639b973c073"},{"TableName":"tffd14cfe34b24dbc808eede5231a08a4"},{"TableName":"uttable65551665"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:41 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f40ca559-0002-0023-4809-fc3b1f000000] + x-ms-request-id: [82d37563-0002-00f5-5303-fd70c5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -111,9 +111,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [996fc5e8-67fc-11e7-bf8d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [c9f13454-68f6-11e7-b856-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:41 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/EncryptionTableOps65551665?comp=acl @@ -122,10 +122,10 @@ interactions: \ />"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:42 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f40ca565-0002-0023-5309-fc3b1f000000] + x-ms-request-id: [82d37578-0002-00f5-6403-fd70c5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -137,9 +137,9 @@ interactions: Content-Length: ['228'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9986f312-67fc-11e7-8ddc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ca670bd4-68f6-11e7-8e54-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:42 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.table.core.windows.net/EncryptionTableOps65551665?comp=acl @@ -147,9 +147,9 @@ interactions: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:53:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:43 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] - x-ms-request-id: [f40ca57c-0002-0023-6809-fc3b1f000000] + x-ms-request-id: [82d37619-0002-00f5-7703-fd70c5000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -158,9 +158,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [99db9734-67fc-11e7-bb1c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [caa1e768-68f6-11e7-841c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:42 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/EncryptionTableOps65551665?comp=acl @@ -168,10 +168,10 @@ interactions: body: {string: "\uFEFFsamplePolicy2017-09-09T00:00:00.0000000Zr"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:43 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f40ca5c9-0002-0023-2f09-fc3b1f000000] + x-ms-request-id: [82d376a8-0002-00f5-7903-fd70c5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -180,9 +180,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [99e14b34-67fc-11e7-80d4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [caa82100-68f6-11e7-9ad2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:42 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/EncryptionTableOps65551665?comp=acl @@ -190,10 +190,10 @@ interactions: body: {string: "\uFEFFsamplePolicy2017-09-09T00:00:00.0000000Zr"} headers: Content-Type: [application/xml] - Date: ['Thu, 13 Jul 2017 18:53:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:43 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] - x-ms-request-id: [f40ca5cc-0002-0023-3209-fc3b1f000000] + x-ms-request-id: [82d376b5-0002-00f5-0203-fd70c5000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -204,9 +204,9 @@ interactions: Content-Length: ['0'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [99e63480-67fc-11e7-ac54-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [caad1606-68f6-11e7-a820-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:42 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.table.core.windows.net/Tables('EncryptionTableOps65551665') @@ -215,10 +215,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:53:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:43 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f40ca5d4-0002-0023-3809-fc3b1f000000] + x-ms-request-id: [82d376bb-0002-00f5-0703-fd70c5000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -228,23 +228,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [99ec2b06-67fc-11e7-a84a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:46 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cab59902-68f6-11e7-b9ee-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:43 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/Tables('EncryptionTableOps65551665') response: body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:f40ca5dd-0002-0023-4109-fc3b1f000000\nTime:2017-07-13T18:53:46.7014410Z"}}}'} + specified resource does not exist.\nRequestId:82d376c7-0002-00f5-1203-fd70c5000000\nTime:2017-07-15T00:44:43.7767729Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:43 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f40ca5dd-0002-0023-4109-fc3b1f000000] + x-ms-request-id: [82d376c7-0002-00f5-1203-fd70c5000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: Not Found} - request: @@ -255,23 +255,23 @@ interactions: Content-Length: ['0'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [99f13038-67fc-11e7-b12a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cabb2586-68f6-11e7-8133-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:43 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.table.core.windows.net/Tables('EncryptionTableOps65551665') response: body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:f40ca5e4-0002-0023-4709-fc3b1f000000\nTime:2017-07-13T18:53:46.7354654Z"}}}'} + specified resource does not exist.\nRequestId:82d376d2-0002-00f5-1b03-fd70c5000000\nTime:2017-07-15T00:44:43.8117980Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:43 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f40ca5e4-0002-0023-4709-fc3b1f000000] + x-ms-request-id: [82d376d2-0002-00f5-1b03-fd70c5000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: Not Found} version: 1 diff --git a/tests/recordings/test_table_encryption.test_validate_encryption.yaml b/tests/recordings/test_table_encryption.test_validate_encryption.yaml index 20c11786..605cb9ac 100644 --- a/tests/recordings/test_table_encryption.test_validate_encryption.yaml +++ b/tests/recordings/test_table_encryption.test_validate_encryption.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pkbede1313", "RowKey": "rkbede1313", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "7asFqICyyIrwQDr1O9Y7WQ==", "sex@odata.type": "Edm.Binary", - "name": "t7UouZadjNsW1i1b92X6vA==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "f3d0u0+KokE5gC0c38oo1w==", "sex@odata.type": "Edm.Binary", + "name": "4Qo4avLMaopRb7Y/CAh69g==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "j+CD3itu3GUKAKxk4e1F8w==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "3rTaVth6X7TIOFwiBu65xg==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"pYvOWlAmGv1Jh00K8RjRJp3kRmH4bQG9rwcGbE6wAaS9u6znfTr0Gg==\", + \"key1\", \"EncryptedKey\": \"R1IQRFdagI2dNV6cjWMlX/3b88ISF86LHft/7dgN6oXUOj3HwU7q8A==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"+QAhOwdJL1txcc/F4itMbA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"CygP2FOiocYFulykbi4jKw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9a356582-67fc-11e7-a038-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cb083f86-68f6-11e7-9983-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:43 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablebede1313 @@ -34,13 +34,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablebede1313(PartitionKey=''pkbede1313'',RowKey=''rkbede1313'')'] - Date: ['Thu, 13 Jul 2017 18:53:47 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A47.5515145Z'"] + Date: ['Sat, 15 Jul 2017 00:44:44 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A44.6414247Z'"] Location: ['https://storagename.table.core.windows.net/uttablebede1313(PartitionKey=''pkbede1313'',RowKey=''rkbede1313'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [395119e4-0002-0031-1309-fc0f03000000] + x-ms-request-id: [28af9d6a-0002-0100-4103-fd1281000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -50,27 +50,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9a495f38-67fc-11e7-911f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cb1d2ea8-68f6-11e7-8535-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:43 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablebede1313(PartitionKey='pkbede1313',RowKey='rkbede1313') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablebede1313/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A47.5515145Z''\"","PartitionKey":"pkbede1313","RowKey":"rkbede1313","Timestamp":"2017-07-13T18:53:47.5515145Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"7asFqICyyIrwQDr1O9Y7WQ==","name@odata.type":"Edm.Binary","name":"t7UouZadjNsW1i1b92X6vA==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"j+CD3itu3GUKAKxk4e1F8w==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"pYvOWlAmGv1Jh00K8RjRJp3kRmH4bQG9rwcGbE6wAaS9u6znfTr0Gg==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablebede1313/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A44.6414247Z''\"","PartitionKey":"pkbede1313","RowKey":"rkbede1313","Timestamp":"2017-07-15T00:44:44.6414247Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"f3d0u0+KokE5gC0c38oo1w==","name@odata.type":"Edm.Binary","name":"4Qo4avLMaopRb7Y/CAh69g==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"3rTaVth6X7TIOFwiBu65xg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"R1IQRFdagI2dNV6cjWMlX/3b88ISF86LHft/7dgN6oXUOj3HwU7q8A==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"+QAhOwdJL1txcc/F4itMbA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"CygP2FOiocYFulykbi4jKw==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:47 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A47.5515145Z'"] + Date: ['Sat, 15 Jul 2017 00:44:44 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A44.6414247Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [395119f1-0002-0031-1e09-fc0f03000000] + x-ms-request-id: [28af9d77-0002-0100-4a03-fd1281000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_encryption.test_validate_swapping_properties_fails.yaml b/tests/recordings/test_table_encryption.test_validate_swapping_properties_fails.yaml index a4d71583..020bd608 100644 --- a/tests/recordings/test_table_encryption.test_validate_swapping_properties_fails.yaml +++ b/tests/recordings/test_table_encryption.test_validate_swapping_properties_fails.yaml @@ -1,19 +1,19 @@ interactions: - request: body: '{"PartitionKey": "pkf00194b", "RowKey": "entity1", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "zQR892iTtlnHzZY1rtpV0w==", "sex@odata.type": "Edm.Binary", - "name": "qfLMHRcuBNcF1uusEfH2DA==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "YYXjlp4mS6BpxbSrhRGP/g==", "sex@odata.type": "Edm.Binary", + "name": "lFNglL3rlmyFsWBf3d3hqQ==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "vS0xet1T2ohwGbIRiwEEEA==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "xiXpCmyhVy0YprygxBOdTg==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"F03zgH7pvBPP+GKwkgk1PL0bsbL9RYz05kf1hGcXIzkZAIEOhVurAQ==\", + \"key1\", \"EncryptedKey\": \"I9OKFBQl5RVWPQLd9/qOwkZHoxfTTT3QRnHVaV13F2qkMErHf/YH6Q==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"NbzMdjNfyKB4ZwU6iITlpw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"46GZyIfA7TvvUBY/7m/ptQ==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -22,9 +22,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9a77470c-67fc-11e7-98aa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cb4f27d4-68f6-11e7-9bfa-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:44 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablef00194b @@ -34,30 +34,30 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablef00194b(PartitionKey=''pkf00194b'',RowKey=''entity1'')'] - Date: ['Thu, 13 Jul 2017 18:53:47 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A47.6295692Z'"] + Date: ['Sat, 15 Jul 2017 00:44:45 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A45.5468892Z'"] Location: ['https://storagename.table.core.windows.net/uttablef00194b(PartitionKey=''pkf00194b'',RowKey=''entity1'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [a68e97ba-0002-0003-2b09-fc57d3000000] + x-ms-request-id: [c906ac2f-0002-0072-5403-fd25ea000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: body: '{"PartitionKey": "pkf00194b", "RowKey": "entity2", "age": "39", "age@odata.type": - "Edm.Int64", "sex": "Jq3CprnanufBmIInV+G8GQ==", "sex@odata.type": "Edm.Binary", - "name": "RJwXaNaiRkkezXCdWEEOYw==", "name@odata.type": "Edm.Binary", "married": + "Edm.Int64", "sex": "Yc1tfz7r6IzH7WdIQbjUdg==", "sex@odata.type": "Edm.Binary", + "name": "+4lOUYQPuPNvwrxeJakicw==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "optional": null, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", "clsid@odata.type": "Edm.Guid", - "_ClientEncryptionMetadata2": "q/65v1Xqq/PSzq8LsrNgRA==", "_ClientEncryptionMetadata2@odata.type": + "_ClientEncryptionMetadata2": "P1d171Pubo0jWNMt9wzz1Q==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": "{\"WrappedContentKey\": {\"KeyId\": - \"key1\", \"EncryptedKey\": \"svebVoFSjXHfyW8020qLCcCEKXeKdsGT02FIDqyj8LevGMDPjk7rlQ==\", + \"key1\", \"EncryptedKey\": \"yK8FKCuKLf7D0b0lT4zyIqcWe6GZnnnZpLnwkfo1ROuVM494mliDfA==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"Cpphh83F6QEkpGv2PgMqnA==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"AHX8zr6DHcnjWBtAwehpoQ==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -66,9 +66,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9a8b6b46-67fc-11e7-b2e5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cb655006-68f6-11e7-94d1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:44 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablef00194b @@ -78,13 +78,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablef00194b(PartitionKey=''pkf00194b'',RowKey=''entity2'')'] - Date: ['Thu, 13 Jul 2017 18:53:47 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A47.6685997Z'"] + Date: ['Sat, 15 Jul 2017 00:44:45 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A45.6009271Z'"] Location: ['https://storagename.table.core.windows.net/uttablef00194b(PartitionKey=''pkf00194b'',RowKey=''entity2'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [a68e97c6-0002-0003-3509-fc57d3000000] + x-ms-request-id: [c906ac3f-0002-0072-6103-fd25ea000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -94,44 +94,44 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9a9177fa-67fc-11e7-92d2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cb6a5358-68f6-11e7-9ca0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:44 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablef00194b(PartitionKey='pkf00194b',RowKey='entity1') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablef00194b/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A47.6295692Z''\"","PartitionKey":"pkf00194b","RowKey":"entity1","Timestamp":"2017-07-13T18:53:47.6295692Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"zQR892iTtlnHzZY1rtpV0w==","name@odata.type":"Edm.Binary","name":"qfLMHRcuBNcF1uusEfH2DA==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"vS0xet1T2ohwGbIRiwEEEA==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"F03zgH7pvBPP+GKwkgk1PL0bsbL9RYz05kf1hGcXIzkZAIEOhVurAQ==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablef00194b/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A45.5468892Z''\"","PartitionKey":"pkf00194b","RowKey":"entity1","Timestamp":"2017-07-15T00:44:45.5468892Z","age@odata.type":"Edm.Int64","age":"39","sex@odata.type":"Edm.Binary","sex":"YYXjlp4mS6BpxbSrhRGP/g==","name@odata.type":"Edm.Binary","name":"lFNglL3rlmyFsWBf3d3hqQ==","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"xiXpCmyhVy0YprygxBOdTg==","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"I9OKFBQl5RVWPQLd9/qOwkZHoxfTTT3QRnHVaV13F2qkMErHf/YH6Q==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"NbzMdjNfyKB4ZwU6iITlpw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}"}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"46GZyIfA7TvvUBY/7m/ptQ==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:47 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A47.6295692Z'"] + Date: ['Sat, 15 Jul 2017 00:44:45 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A45.5468892Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [a68e97df-0002-0003-4b09-fc57d3000000] + x-ms-request-id: [c906ac49-0002-0072-6b03-fd25ea000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: - body: '{"PartitionKey": "pkf00194b", "RowKey": "entity2", "Timestamp": "2017-07-13T18:53:47Z", + body: '{"PartitionKey": "pkf00194b", "RowKey": "entity2", "Timestamp": "2017-07-15T00:44:45Z", "Timestamp@odata.type": "Edm.DateTime", "age": "39", "age@odata.type": "Edm.Int64", - "sex": "zQR892iTtlnHzZY1rtpV0w==", "sex@odata.type": "Edm.Binary", "name": "qfLMHRcuBNcF1uusEfH2DA==", + "sex": "YYXjlp4mS6BpxbSrhRGP/g==", "sex@odata.type": "Edm.Binary", "name": "lFNglL3rlmyFsWBf3d3hqQ==", "name@odata.type": "Edm.Binary", "married": true, "deceased": false, "evenratio": 3.0, "ratio": 3.1, "large": "933311100", "large@odata.type": "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", - "clsid@odata.type": "Edm.Guid", "_ClientEncryptionMetadata2": "vS0xet1T2ohwGbIRiwEEEA==", + "clsid@odata.type": "Edm.Guid", "_ClientEncryptionMetadata2": "xiXpCmyhVy0YprygxBOdTg==", "_ClientEncryptionMetadata2@odata.type": "Edm.Binary", "_ClientEncryptionMetadata1": - "{\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"F03zgH7pvBPP+GKwkgk1PL0bsbL9RYz05kf1hGcXIzkZAIEOhVurAQ==\", + "{\"WrappedContentKey\": {\"KeyId\": \"key1\", \"EncryptedKey\": \"I9OKFBQl5RVWPQLd9/qOwkZHoxfTTT3QRnHVaV13F2qkMErHf/YH6Q==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"NbzMdjNfyKB4ZwU6iITlpw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}", "etag": "W/\"datetime''2017-07-13T18%3A53%3A47.6295692Z''\""}' + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"46GZyIfA7TvvUBY/7m/ptQ==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}", "etag": "W/\"datetime''2017-07-15T00%3A44%3A45.5468892Z''\""}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -140,9 +140,9 @@ interactions: DataServiceVersion: [3.0;NetFx] If-Match: ['*'] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9a96c4b4-67fc-11e7-919f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cb6f3c22-68f6-11e7-83bc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:44 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.table.core.windows.net/uttablef00194b(PartitionKey='pkf00194b',RowKey='entity2') @@ -151,11 +151,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:53:47 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A47.7685576Z'"] + Date: ['Sat, 15 Jul 2017 00:44:45 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A45.6019271Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [a68e97ef-0002-0003-5a09-fc57d3000000] + x-ms-request-id: [c906ac50-0002-0072-7103-fd25ea000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -165,27 +165,27 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9a9df124-67fc-11e7-bbe7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cb745e34-68f6-11e7-994c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:44 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablef00194b(PartitionKey='pkf00194b',RowKey='entity2') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablef00194b/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A47.7685576Z''\"","PartitionKey":"pkf00194b","RowKey":"entity2","Timestamp":"2017-07-13T18:53:47.7685576Z","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": - {\"KeyId\": \"key1\", \"EncryptedKey\": \"F03zgH7pvBPP+GKwkgk1PL0bsbL9RYz05kf1hGcXIzkZAIEOhVurAQ==\", + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablef00194b/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A45.6019271Z''\"","PartitionKey":"pkf00194b","RowKey":"entity2","Timestamp":"2017-07-15T00:44:45.6019271Z","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","_ClientEncryptionMetadata1":"{\"WrappedContentKey\": + {\"KeyId\": \"key1\", \"EncryptedKey\": \"I9OKFBQl5RVWPQLd9/qOwkZHoxfTTT3QRnHVaV13F2qkMErHf/YH6Q==\", \"Algorithm\": \"A256KW\"}, \"EncryptionAgent\": {\"Protocol\": \"1.0\", \"EncryptionAlgorithm\": - \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"NbzMdjNfyKB4ZwU6iITlpw==\", \"KeyWrappingMetadata\": - {\"EncryptionLibrary\": \"Python 0.35.0\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"vS0xet1T2ohwGbIRiwEEEA==","age@odata.type":"Edm.Int64","age":"39","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","deceased":false,"etag":"W/\"datetime''2017-07-13T18%3A53%3A47.6295692Z''\"","evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","married":true,"name@odata.type":"Edm.Binary","name":"qfLMHRcuBNcF1uusEfH2DA==","other":20,"ratio":3.1,"sex@odata.type":"Edm.Binary","sex":"zQR892iTtlnHzZY1rtpV0w=="}'} + \"AES_CBC_256\"}, \"ContentEncryptionIV\": \"46GZyIfA7TvvUBY/7m/ptQ==\", \"KeyWrappingMetadata\": + {\"EncryptionLibrary\": \"Python 0.35.1\"}}","_ClientEncryptionMetadata2@odata.type":"Edm.Binary","_ClientEncryptionMetadata2":"xiXpCmyhVy0YprygxBOdTg==","age@odata.type":"Edm.Int64","age":"39","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","deceased":false,"etag":"W/\"datetime''2017-07-15T00%3A44%3A45.5468892Z''\"","evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","married":true,"name@odata.type":"Edm.Binary","name":"lFNglL3rlmyFsWBf3d3hqQ==","other":20,"ratio":3.1,"sex@odata.type":"Edm.Binary","sex":"YYXjlp4mS6BpxbSrhRGP/g=="}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:47 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A47.7685576Z'"] + Date: ['Sat, 15 Jul 2017 00:44:45 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A45.6019271Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [a68e980a-0002-0003-7309-fc57d3000000] + x-ms-request-id: [c906ac57-0002-0072-7803-fd25ea000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_binary_property_value.yaml b/tests/recordings/test_table_entity.test_binary_property_value.yaml index cc3c594d..b4d38bfe 100644 --- a/tests/recordings/test_table_entity.test_binary_property_value.yaml +++ b/tests/recordings/test_table_entity.test_binary_property_value.yaml @@ -10,9 +10,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9ad18976-67fc-11e7-88ea-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cbfed88c-68f6-11e7-9159-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:45 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable99fe1256 @@ -22,13 +22,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable99fe1256(PartitionKey=''pk99fe1256'',RowKey=''rk99fe1256'')'] - Date: ['Thu, 13 Jul 2017 18:53:48 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A48.795111Z'"] + Date: ['Sat, 15 Jul 2017 00:44:45 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A46.1016598Z'"] Location: ['https://storagename.table.core.windows.net/uttable99fe1256(PartitionKey=''pk99fe1256'',RowKey=''rk99fe1256'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [be3c117f-0002-0026-6d09-fccf60000000] + x-ms-request-id: [aedc13ec-0002-005d-4f03-fda4d0000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -38,23 +38,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9ae5b39c-67fc-11e7-94bd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cc132a94-68f6-11e7-99ef-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:45 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable99fe1256(PartitionKey='pk99fe1256',RowKey='rk99fe1256') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable99fe1256/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A48.795111Z''\"","PartitionKey":"pk99fe1256","RowKey":"rk99fe1256","Timestamp":"2017-07-13T18:53:48.795111Z","binary@odata.type":"Edm.Binary","binary":"AQIDBAUGBwgJCg=="}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable99fe1256/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A46.1016598Z''\"","PartitionKey":"pk99fe1256","RowKey":"rk99fe1256","Timestamp":"2017-07-15T00:44:46.1016598Z","binary@odata.type":"Edm.Binary","binary":"AQIDBAUGBwgJCg=="}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:48 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A48.795111Z'"] + Date: ['Sat, 15 Jul 2017 00:44:45 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A46.1016598Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [be3c1191-0002-0026-7b09-fccf60000000] + x-ms-request-id: [aedc13fb-0002-005d-5c03-fda4d0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_delete_entity.yaml b/tests/recordings/test_table_entity.test_delete_entity.yaml index bf1073d0..e36bdefc 100644 --- a/tests/recordings/test_table_entity.test_delete_entity.yaml +++ b/tests/recordings/test_table_entity.test_delete_entity.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9b13f006-67fc-11e7-8e6b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cc42a546-68f6-11e7-bd7b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:45 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable12440ee0 @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable12440ee0(PartitionKey=''pk12440ee0'',RowKey=''rk12440ee0'')'] - Date: ['Thu, 13 Jul 2017 18:53:48 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A49.1551711Z'"] + Date: ['Sat, 15 Jul 2017 00:44:45 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A46.5382299Z'"] Location: ['https://storagename.table.core.windows.net/uttable12440ee0(PartitionKey=''pk12440ee0'',RowKey=''rk12440ee0'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [9ada700b-0002-0048-0809-fc6649000000] + x-ms-request-id: [c3e38747-0002-001b-1603-fd7a46000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -45,9 +45,9 @@ interactions: DataServiceVersion: [3.0;NetFx] If-Match: ['*'] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9b281a86-67fc-11e7-9985-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cc571146-68f6-11e7-83a8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:45 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.table.core.windows.net/uttable12440ee0(PartitionKey='pk12440ee0',RowKey='rk12440ee0') @@ -56,10 +56,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:53:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:45 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [9ada701a-0002-0048-1509-fc6649000000] + x-ms-request-id: [c3e38753-0002-001b-1f03-fd7a46000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -69,23 +69,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9b2d6a18-67fc-11e7-997a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cc5c1a62-68f6-11e7-841f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:45 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable12440ee0(PartitionKey='pk12440ee0',RowKey='rk12440ee0') response: body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:9ada7036-0002-0048-2e09-fc6649000000\nTime:2017-07-13T18:53:49.2582324Z"}}}'} + specified resource does not exist.\nRequestId:c3e38766-0002-001b-3003-fd7a46000000\nTime:2017-07-15T00:44:46.6383043Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:45 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [9ada7036-0002-0048-2e09-fc6649000000] + x-ms-request-id: [c3e38766-0002-001b-3003-fd7a46000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: Not Found} version: 1 diff --git a/tests/recordings/test_table_entity.test_delete_entity_not_existing.yaml b/tests/recordings/test_table_entity.test_delete_entity_not_existing.yaml index 7c6f4834..23e370bf 100644 --- a/tests/recordings/test_table_entity.test_delete_entity_not_existing.yaml +++ b/tests/recordings/test_table_entity.test_delete_entity_not_existing.yaml @@ -8,23 +8,23 @@ interactions: DataServiceVersion: [3.0;NetFx] If-Match: ['*'] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9b610dd0-67fc-11e7-9777-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cc972a74-68f6-11e7-9815-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:46 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.table.core.windows.net/uttablef9b6145a(PartitionKey='pkf9b6145a',RowKey='rkf9b6145a') response: body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:050b755d-0002-011e-0509-fcc86c000000\nTime:2017-07-13T18:53:49.7261390Z"}}}'} + specified resource does not exist.\nRequestId:8d8cd4d4-0002-010a-7603-fd0b08000000\nTime:2017-07-15T00:44:47.2871334Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:47 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [050b755d-0002-011e-0509-fcc86c000000] + x-ms-request-id: [8d8cd4d4-0002-010a-7603-fd0b08000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: Not Found} version: 1 diff --git a/tests/recordings/test_table_entity.test_delete_entity_with_if_doesnt_match.yaml b/tests/recordings/test_table_entity.test_delete_entity_with_if_doesnt_match.yaml index fa5affff..e6a82a0a 100644 --- a/tests/recordings/test_table_entity.test_delete_entity_with_if_doesnt_match.yaml +++ b/tests/recordings/test_table_entity.test_delete_entity_with_if_doesnt_match.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9b9d9926-67fc-11e7-b246-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ccf70fc0-68f6-11e7-8133-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:46 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablea99a1781 @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablea99a1781(PartitionKey=''pka99a1781'',RowKey=''rka99a1781'')'] - Date: ['Thu, 13 Jul 2017 18:53:49 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A50.0820751Z'"] + Date: ['Sat, 15 Jul 2017 00:44:47 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A47.7328392Z'"] Location: ['https://storagename.table.core.windows.net/uttablea99a1781(PartitionKey=''pka99a1781'',RowKey=''rka99a1781'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [298dbbff-0002-0064-0609-fce474000000] + x-ms-request-id: [1a6de13b-0002-002c-2d03-fdd6e9000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -45,23 +45,23 @@ interactions: DataServiceVersion: [3.0;NetFx] If-Match: [W/"datetime'2012-06-15T22%3A51%3A44.9662825Z'"] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9bb29380-67fc-11e7-918c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cd0c1d18-68f6-11e7-a50e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:46 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.table.core.windows.net/uttablea99a1781(PartitionKey='pka99a1781',RowKey='rka99a1781') response: body: {string: '{"odata.error":{"code":"UpdateConditionNotSatisfied","message":{"lang":"en-US","value":"The - update condition specified in the request was not satisfied.\nRequestId:298dbc08-0002-0064-0c09-fce474000000\nTime:2017-07-13T18:53:50.1201024Z"}}}'} + update condition specified in the request was not satisfied.\nRequestId:1a6de144-0002-002c-3403-fdd6e9000000\nTime:2017-07-15T00:44:47.7678644Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:47 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [298dbc08-0002-0064-0c09-fce474000000] + x-ms-request-id: [1a6de144-0002-002c-3403-fdd6e9000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: Precondition Failed} version: 1 diff --git a/tests/recordings/test_table_entity.test_delete_entity_with_if_matches.yaml b/tests/recordings/test_table_entity.test_delete_entity_with_if_matches.yaml index e00d5b0b..4c1b728d 100644 --- a/tests/recordings/test_table_entity.test_delete_entity_with_if_matches.yaml +++ b/tests/recordings/test_table_entity.test_delete_entity_with_if_matches.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9be1bb88-67fc-11e7-9d78-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cd54db5a-68f6-11e7-87b9-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:47 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable3801156d @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable3801156d(PartitionKey=''pk3801156d'',RowKey=''rk3801156d'')'] - Date: ['Thu, 13 Jul 2017 18:53:49 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A50.7146172Z'"] + Date: ['Sat, 15 Jul 2017 00:44:48 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A48.6659299Z'"] Location: ['https://storagename.table.core.windows.net/uttable3801156d(PartitionKey=''pk3801156d'',RowKey=''rk3801156d'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [76980c57-0002-009a-3c09-fcd811000000] + x-ms-request-id: [52d5a443-0002-00b6-7303-fd5a2c000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -43,11 +43,11 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] DataServiceVersion: [3.0;NetFx] - If-Match: [W/"datetime'2017-07-13T18%3A53%3A50.7146172Z'"] + If-Match: [W/"datetime'2017-07-15T00%3A44%3A48.6659299Z'"] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9c03983e-67fc-11e7-95e8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cd6a7968-68f6-11e7-82cb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:47 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.table.core.windows.net/uttable3801156d(PartitionKey='pk3801156d',RowKey='rk3801156d') @@ -56,10 +56,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:53:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:48 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [76980c7e-0002-009a-5e09-fcd811000000] + x-ms-request-id: [52d5a44d-0002-00b6-7903-fd5a2c000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -69,23 +69,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9c08e118-67fc-11e7-a94d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cd7061fe-68f6-11e7-9340-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:47 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable3801156d(PartitionKey='pk3801156d',RowKey='rk3801156d') response: body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:76980c8b-0002-009a-6809-fcd811000000\nTime:2017-07-13T18:53:50.8647259Z"}}}'} + specified resource does not exist.\nRequestId:52d5a453-0002-00b6-7e03-fd5a2c000000\nTime:2017-07-15T00:44:48.7489846Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:48 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [76980c8b-0002-009a-6809-fcd811000000] + x-ms-request-id: [52d5a453-0002-00b6-7e03-fd5a2c000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: Not Found} version: 1 diff --git a/tests/recordings/test_table_entity.test_empty_and_spaces_property_value.yaml b/tests/recordings/test_table_entity.test_empty_and_spaces_property_value.yaml index d308945b..3afab581 100644 --- a/tests/recordings/test_table_entity.test_empty_and_spaces_property_value.yaml +++ b/tests/recordings/test_table_entity.test_empty_and_spaces_property_value.yaml @@ -13,9 +13,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9c384e4c-67fc-11e7-a5e2-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cda28f80-68f6-11e7-af94-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:47 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable66111670 @@ -25,13 +25,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable66111670(PartitionKey=''pk66111670'',RowKey=''rk66111670'')'] - Date: ['Thu, 13 Jul 2017 18:53:50 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A50.6186668Z'"] + Date: ['Sat, 15 Jul 2017 00:44:47 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A48.6835665Z'"] Location: ['https://storagename.table.core.windows.net/uttable66111670(PartitionKey=''pk66111670'',RowKey=''rk66111670'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2e6420ee-0002-0030-4309-fc0efe000000] + x-ms-request-id: [4799aa35-0002-00dd-3803-fd077a000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -41,23 +41,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9c4cf9c0-67fc-11e7-8af6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cdb56150-68f6-11e7-bb77-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:48 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable66111670(PartitionKey='pk66111670',RowKey='rk66111670') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable66111670/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A50.6186668Z''\"","PartitionKey":"pk66111670","RowKey":"rk66111670","Timestamp":"2017-07-13T18:53:50.6186668Z","EmptyByte":"","EmptyUnicode":"","SpacesOnlyByte":" ","SpacesOnlyUnicode":" ","SpacesBeforeByte":" Text","SpacesBeforeUnicode":" Text","SpacesAfterByte":"Text ","SpacesAfterUnicode":"Text ","SpacesBeforeAndAfterByte":" Text ","SpacesBeforeAndAfterUnicode":" Text "}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable66111670/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A48.6835665Z''\"","PartitionKey":"pk66111670","RowKey":"rk66111670","Timestamp":"2017-07-15T00:44:48.6835665Z","EmptyByte":"","EmptyUnicode":"","SpacesOnlyByte":" ","SpacesOnlyUnicode":" ","SpacesBeforeByte":" Text","SpacesBeforeUnicode":" Text","SpacesAfterByte":"Text ","SpacesAfterUnicode":"Text ","SpacesBeforeAndAfterByte":" Text ","SpacesBeforeAndAfterUnicode":" Text "}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:50 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A50.6186668Z'"] + Date: ['Sat, 15 Jul 2017 00:44:47 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A48.6835665Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2e6420ff-0002-0030-5209-fc0efe000000] + x-ms-request-id: [4799aa3d-0002-00dd-3e03-fd077a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_get_entity.yaml b/tests/recordings/test_table_entity.test_get_entity.yaml index ba41a80b..d999050b 100644 --- a/tests/recordings/test_table_entity.test_get_entity.yaml +++ b/tests/recordings/test_table_entity.test_get_entity.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9c8289f0-67fc-11e7-872b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cde417d4-68f6-11e7-b998-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:48 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablee7730dad @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablee7730dad(PartitionKey=''pke7730dad'',RowKey=''rke7730dad'')'] - Date: ['Thu, 13 Jul 2017 18:53:50 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A51.1541077Z'"] + Date: ['Sat, 15 Jul 2017 00:44:48 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A49.7355914Z'"] Location: ['https://storagename.table.core.windows.net/uttablee7730dad(PartitionKey=''pke7730dad'',RowKey=''rke7730dad'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [e4827e52-0002-00a3-1009-fc98b5000000] + x-ms-request-id: [aa696fa1-0002-004f-6303-fd90cc000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -43,23 +43,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9ca0f192-67fc-11e7-bea1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cdfebbe8-68f6-11e7-a11e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:48 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablee7730dad(PartitionKey='pke7730dad',RowKey='rke7730dad') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee7730dad/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A51.1541077Z''\"","PartitionKey":"pke7730dad","RowKey":"rke7730dad","Timestamp":"2017-07-13T18:53:51.1541077Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablee7730dad/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A49.7355914Z''\"","PartitionKey":"pke7730dad","RowKey":"rke7730dad","Timestamp":"2017-07-15T00:44:49.7355914Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:50 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A51.1541077Z'"] + Date: ['Sat, 15 Jul 2017 00:44:48 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A49.7355914Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [e4827e72-0002-00a3-2909-fc98b5000000] + x-ms-request-id: [aa696fb2-0002-004f-7003-fd90cc000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_get_entity_full_metadata.yaml b/tests/recordings/test_table_entity.test_get_entity_full_metadata.yaml index c48334cf..ca62566c 100644 --- a/tests/recordings/test_table_entity.test_get_entity_full_metadata.yaml +++ b/tests/recordings/test_table_entity.test_get_entity_full_metadata.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9ccf261e-67fc-11e7-a480-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ce4d6a18-68f6-11e7-ae7a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:49 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttabled1cb135f @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttabled1cb135f(PartitionKey=''pkd1cb135f'',RowKey=''rkd1cb135f'')'] - Date: ['Thu, 13 Jul 2017 18:53:50 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A51.7227229Z'"] + Date: ['Sat, 15 Jul 2017 00:44:49 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A49.840342Z'"] Location: ['https://storagename.table.core.windows.net/uttabled1cb135f(PartitionKey=''pkd1cb135f'',RowKey=''rkd1cb135f'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [ae58d306-0002-005b-1e09-fc53a8000000] + x-ms-request-id: [259ba37a-0002-004e-7c03-fd9131000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -43,23 +43,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9ce32a12-67fc-11e7-a087-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ce627b74-68f6-11e7-ac1f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:49 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttabled1cb135f(PartitionKey='pkd1cb135f',RowKey='rkd1cb135f') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttabled1cb135f/@Element","odata.type":"storagename.uttabled1cb135f","odata.id":"https://storagename.table.core.windows.net/uttabled1cb135f(PartitionKey=''pkd1cb135f'',RowKey=''rkd1cb135f'')","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A51.7227229Z''\"","odata.editLink":"uttabled1cb135f(PartitionKey=''pkd1cb135f'',RowKey=''rkd1cb135f'')","PartitionKey":"pkd1cb135f","RowKey":"rkd1cb135f","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2017-07-13T18:53:51.7227229Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttabled1cb135f/@Element","odata.type":"storagename.uttabled1cb135f","odata.id":"https://storagename.table.core.windows.net/uttabled1cb135f(PartitionKey=''pkd1cb135f'',RowKey=''rkd1cb135f'')","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A49.840342Z''\"","odata.editLink":"uttabled1cb135f(PartitionKey=''pkd1cb135f'',RowKey=''rkd1cb135f'')","PartitionKey":"pkd1cb135f","RowKey":"rkd1cb135f","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2017-07-15T00:44:49.840342Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=fullmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:50 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A51.7227229Z'"] + Date: ['Sat, 15 Jul 2017 00:44:49 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A49.840342Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [ae58d31a-0002-005b-2d09-fc53a8000000] + x-ms-request-id: [259ba386-0002-004e-0403-fd9131000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_get_entity_if_match.yaml b/tests/recordings/test_table_entity.test_get_entity_if_match.yaml index 74d8683f..6067efd5 100644 --- a/tests/recordings/test_table_entity.test_get_entity_if_match.yaml +++ b/tests/recordings/test_table_entity.test_get_entity_if_match.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9d11bc06-67fc-11e7-8fb3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ce9494c6-68f6-11e7-b69f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:49 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable74691147 @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable74691147(PartitionKey=''pk74691147'',RowKey=''rk74691147'')'] - Date: ['Thu, 13 Jul 2017 18:53:51 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A51.6562872Z'"] + Date: ['Sat, 15 Jul 2017 00:44:50 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A50.4752295Z'"] Location: ['https://storagename.table.core.windows.net/uttable74691147(PartitionKey=''pk74691147'',RowKey=''rk74691147'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b8673074-0002-0069-7509-fc0b78000000] + x-ms-request-id: [1b159fc9-0002-0038-2a03-fd158d000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -43,23 +43,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9d2576ec-67fc-11e7-bb00-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cea8c4da-68f6-11e7-9911-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:49 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable74691147(PartitionKey='pk74691147',RowKey='rk74691147') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable74691147/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A51.6562872Z''\"","PartitionKey":"pk74691147","RowKey":"rk74691147","Timestamp":"2017-07-13T18:53:51.6562872Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable74691147/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A50.4752295Z''\"","PartitionKey":"pk74691147","RowKey":"rk74691147","Timestamp":"2017-07-15T00:44:50.4752295Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:51 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A51.6562872Z'"] + Date: ['Sat, 15 Jul 2017 00:44:50 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A50.4752295Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b867307e-0002-0069-7b09-fc0b78000000] + x-ms-request-id: [1b159fcf-0002-0038-2e03-fd158d000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -69,11 +69,11 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] DataServiceVersion: [3.0;NetFx] - If-Match: [W/"datetime'2017-07-13T18%3A53%3A51.6562872Z'"] + If-Match: [W/"datetime'2017-07-15T00%3A44%3A50.4752295Z'"] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9d2a3330-67fc-11e7-86c6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [ceae7d26-68f6-11e7-8749-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:49 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://storagename.table.core.windows.net/uttable74691147(PartitionKey='pk74691147',RowKey='rk74691147') @@ -82,10 +82,10 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:53:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:50 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b8673083-0002-0069-8009-fc0b78000000] + x-ms-request-id: [1b159fd6-0002-0038-3503-fd158d000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} version: 1 diff --git a/tests/recordings/test_table_entity.test_get_entity_no_metadata.yaml b/tests/recordings/test_table_entity.test_get_entity_no_metadata.yaml index 1de9899d..50d787aa 100644 --- a/tests/recordings/test_table_entity.test_get_entity_no_metadata.yaml +++ b/tests/recordings/test_table_entity.test_get_entity_no_metadata.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9d57f8cc-67fc-11e7-be0e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cf16e582-68f6-11e7-a8ac-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:50 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttableab3d1289 @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttableab3d1289(PartitionKey=''pkab3d1289'',RowKey=''rkab3d1289'')'] - Date: ['Thu, 13 Jul 2017 18:53:52 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A52.8735457Z'"] + Date: ['Sat, 15 Jul 2017 00:44:50 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A51.2779899Z'"] Location: ['https://storagename.table.core.windows.net/uttableab3d1289(PartitionKey=''pkab3d1289'',RowKey=''rkab3d1289'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [d107232b-0002-004f-6209-fc90cc000000] + x-ms-request-id: [05355567-0002-0036-2003-fdf986000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -43,23 +43,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9d6f95cc-67fc-11e7-9c79-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cf2ad9ac-68f6-11e7-8f9f-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:50 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttableab3d1289(PartitionKey='pkab3d1289',RowKey='rkab3d1289') response: - body: {string: '{"PartitionKey":"pkab3d1289","RowKey":"rkab3d1289","Timestamp":"2017-07-13T18:53:52.8735457Z","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large":"933311100","Birthday":"1973-10-04T00:00:00Z","birthday":"1970-10-04T00:00:00Z","binary":"YmluYXJ5","other":20,"clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} + body: {string: '{"PartitionKey":"pkab3d1289","RowKey":"rkab3d1289","Timestamp":"2017-07-15T00:44:51.2779899Z","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large":"933311100","Birthday":"1973-10-04T00:00:00Z","birthday":"1970-10-04T00:00:00Z","binary":"YmluYXJ5","other":20,"clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:52 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A52.8735457Z'"] + Date: ['Sat, 15 Jul 2017 00:44:50 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A51.2779899Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [d1072332-0002-004f-6609-fc90cc000000] + x-ms-request-id: [05355575-0002-0036-2b03-fdf986000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_get_entity_not_existing.yaml b/tests/recordings/test_table_entity.test_get_entity_not_existing.yaml index 72e59293..3df0f73d 100644 --- a/tests/recordings/test_table_entity.test_get_entity_not_existing.yaml +++ b/tests/recordings/test_table_entity.test_get_entity_not_existing.yaml @@ -6,23 +6,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9dbe6d3e-67fc-11e7-9e33-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cf5d20ba-68f6-11e7-965c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:50 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablebf5d1327(PartitionKey='pkbf5d1327',RowKey='rkbf5d1327') response: body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:3b9067c8-0002-0085-1609-fc0301000000\nTime:2017-07-13T18:53:53.3186172Z"}}}'} + specified resource does not exist.\nRequestId:416e1d40-0002-0099-5503-fddb16000000\nTime:2017-07-15T00:44:51.8051313Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:53 GMT'] + Date: ['Sat, 15 Jul 2017 00:44:51 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [3b9067c8-0002-0085-1609-fc0301000000] + x-ms-request-id: [416e1d40-0002-0099-5503-fddb16000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: Not Found} version: 1 diff --git a/tests/recordings/test_table_entity.test_get_entity_with_property_resolver.yaml b/tests/recordings/test_table_entity.test_get_entity_with_property_resolver.yaml index 200f3d05..5aae55c9 100644 --- a/tests/recordings/test_table_entity.test_get_entity_with_property_resolver.yaml +++ b/tests/recordings/test_table_entity.test_get_entity_with_property_resolver.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9df87d46-67fc-11e7-a6b0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cf9cf958-68f6-11e7-892e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:51 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable9727177d @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable9727177d(PartitionKey=''pk9727177d'',RowKey=''rk9727177d'')'] - Date: ['Thu, 13 Jul 2017 18:53:52 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A53.5909287Z'"] + Date: ['Sat, 15 Jul 2017 00:44:52 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A53.0425734Z'"] Location: ['https://storagename.table.core.windows.net/uttable9727177d(PartitionKey=''pk9727177d'',RowKey=''rk9727177d'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [59fc46ee-0002-0134-2309-fcbd29000000] + x-ms-request-id: [f7737586-0002-0097-4203-fd371d000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -43,23 +43,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9e0be870-67fc-11e7-ae73-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cfb1b792-68f6-11e7-8fb3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:51 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable9727177d(PartitionKey='pk9727177d',RowKey='rk9727177d') response: - body: {string: '{"PartitionKey":"pk9727177d","RowKey":"rk9727177d","Timestamp":"2017-07-13T18:53:53.5909287Z","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large":"933311100","Birthday":"1973-10-04T00:00:00Z","birthday":"1970-10-04T00:00:00Z","binary":"YmluYXJ5","other":20,"clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} + body: {string: '{"PartitionKey":"pk9727177d","RowKey":"rk9727177d","Timestamp":"2017-07-15T00:44:53.0425734Z","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large":"933311100","Birthday":"1973-10-04T00:00:00Z","birthday":"1970-10-04T00:00:00Z","binary":"YmluYXJ5","other":20,"clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:52 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A53.5909287Z'"] + Date: ['Sat, 15 Jul 2017 00:44:52 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A53.0425734Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [59fc46fa-0002-0134-2c09-fcbd29000000] + x-ms-request-id: [f773758d-0002-0097-4603-fd371d000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_get_entity_with_property_resolver_invalid.yaml b/tests/recordings/test_table_entity.test_get_entity_with_property_resolver_invalid.yaml index e067b0e1..ef6edf36 100644 --- a/tests/recordings/test_table_entity.test_get_entity_with_property_resolver_invalid.yaml +++ b/tests/recordings/test_table_entity.test_get_entity_with_property_resolver_invalid.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9e3a46c0-67fc-11e7-8b38-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cfe1ba1e-68f6-11e7-ba3c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:51 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable61d51ac3 @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable61d51ac3(PartitionKey=''pk61d51ac3'',RowKey=''rk61d51ac3'')'] - Date: ['Thu, 13 Jul 2017 18:53:53 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A54.041243Z'"] + Date: ['Sat, 15 Jul 2017 00:44:52 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A53.0049384Z'"] Location: ['https://storagename.table.core.windows.net/uttable61d51ac3(PartitionKey=''pk61d51ac3'',RowKey=''rk61d51ac3'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [7cd6313b-0002-0106-6709-fce5f9000000] + x-ms-request-id: [03fd7732-0002-0082-4403-fdf584000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -43,23 +43,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9e591028-67fc-11e7-a7c4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:53:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cff4e63e-68f6-11e7-a1d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:44:51 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable61d51ac3(PartitionKey='pk61d51ac3',RowKey='rk61d51ac3') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable61d51ac3/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A54.041243Z''\"","PartitionKey":"pk61d51ac3","RowKey":"rk61d51ac3","Timestamp":"2017-07-13T18:53:54.041243Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable61d51ac3/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A53.0049384Z''\"","PartitionKey":"pk61d51ac3","RowKey":"rk61d51ac3","Timestamp":"2017-07-15T00:44:53.0049384Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:53:53 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A54.041243Z'"] + Date: ['Sat, 15 Jul 2017 00:44:52 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A53.0049384Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [7cd63164-0002-0106-0d09-fce5f9000000] + x-ms-request-id: [03fd7741-0002-0082-5003-fdf584000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -69,23 +69,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9e591028-67fc-11e7-a7c4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:54:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cff4e63e-68f6-11e7-a1d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:45:09 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable61d51ac3(PartitionKey='pk61d51ac3',RowKey='rk61d51ac3') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable61d51ac3/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A54.041243Z''\"","PartitionKey":"pk61d51ac3","RowKey":"rk61d51ac3","Timestamp":"2017-07-13T18:53:54.041243Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable61d51ac3/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A53.0049384Z''\"","PartitionKey":"pk61d51ac3","RowKey":"rk61d51ac3","Timestamp":"2017-07-15T00:44:53.0049384Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:54:11 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A54.041243Z'"] + Date: ['Sat, 15 Jul 2017 00:45:10 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A53.0049384Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [7cd643c1-0002-0106-7f09-fce5f9000000] + x-ms-request-id: [03fd94e6-0002-0082-6803-fdf584000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -95,23 +95,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9e591028-67fc-11e7-a7c4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:54:36 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cff4e63e-68f6-11e7-a1d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:45:33 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable61d51ac3(PartitionKey='pk61d51ac3',RowKey='rk61d51ac3') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable61d51ac3/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A54.041243Z''\"","PartitionKey":"pk61d51ac3","RowKey":"rk61d51ac3","Timestamp":"2017-07-13T18:53:54.041243Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable61d51ac3/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A53.0049384Z''\"","PartitionKey":"pk61d51ac3","RowKey":"rk61d51ac3","Timestamp":"2017-07-15T00:44:53.0049384Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:54:35 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A54.041243Z'"] + Date: ['Sat, 15 Jul 2017 00:45:34 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A53.0049384Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [7cd65ee9-0002-0106-7309-fce5f9000000] + x-ms-request-id: [03fdbb5a-0002-0082-7a03-fdf584000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -121,23 +121,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [9e591028-67fc-11e7-a7c4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:55:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [cff4e63e-68f6-11e7-a1d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:46:15 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable61d51ac3(PartitionKey='pk61d51ac3',RowKey='rk61d51ac3') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable61d51ac3/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A53%3A54.041243Z''\"","PartitionKey":"pk61d51ac3","RowKey":"rk61d51ac3","Timestamp":"2017-07-13T18:53:54.041243Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable61d51ac3/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A44%3A53.0049384Z''\"","PartitionKey":"pk61d51ac3","RowKey":"rk61d51ac3","Timestamp":"2017-07-15T00:44:53.0049384Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:55:17 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A53%3A54.041243Z'"] + Date: ['Sat, 15 Jul 2017 00:46:16 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A44%3A53.0049384Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [7cd69169-0002-0106-2909-fce5f9000000] + x-ms-request-id: [03fdfed1-0002-0082-3803-fdf584000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_get_entity_with_property_resolver_not_supported.yaml b/tests/recordings/test_table_entity.test_get_entity_with_property_resolver_not_supported.yaml index c42d1745..5d38037a 100644 --- a/tests/recordings/test_table_entity.test_get_entity_with_property_resolver_not_supported.yaml +++ b/tests/recordings/test_table_entity.test_get_entity_with_property_resolver_not_supported.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d0baed34-67fc-11e7-93ec-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:55:18 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [024f147e-68f7-11e7-9656-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:46:16 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttableca91d72 @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttableca91d72(PartitionKey=''pkca91d72'',RowKey=''rkca91d72'')'] - Date: ['Thu, 13 Jul 2017 18:55:18 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A55%3A19.1426833Z'"] + Date: ['Sat, 15 Jul 2017 00:46:16 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A46%3A17.1304941Z'"] Location: ['https://storagename.table.core.windows.net/uttableca91d72(PartitionKey=''pkca91d72'',RowKey=''rkca91d72'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [361d4bf9-0002-009f-7b09-fc2c6e000000] + x-ms-request-id: [976f6a5a-0002-0003-7603-fd57d3000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -43,23 +43,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d0d3331c-67fc-11e7-953f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:55:19 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [026a2c14-68f7-11e7-b539-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:46:16 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttableca91d72(PartitionKey='pkca91d72',RowKey='rkca91d72') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableca91d72/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A55%3A19.1426833Z''\"","PartitionKey":"pkca91d72","RowKey":"rkca91d72","Timestamp":"2017-07-13T18:55:19.1426833Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableca91d72/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A46%3A17.1304941Z''\"","PartitionKey":"pkca91d72","RowKey":"rkca91d72","Timestamp":"2017-07-15T00:46:17.1304941Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:55:18 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A55%3A19.1426833Z'"] + Date: ['Sat, 15 Jul 2017 00:46:16 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A46%3A17.1304941Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [361d4c0c-0002-009f-0a09-fc2c6e000000] + x-ms-request-id: [976f6a74-0002-0003-0803-fd57d3000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -69,23 +69,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d0d3331c-67fc-11e7-953f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:55:37 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [026a2c14-68f7-11e7-b539-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:46:35 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttableca91d72(PartitionKey='pkca91d72',RowKey='rkca91d72') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableca91d72/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A55%3A19.1426833Z''\"","PartitionKey":"pkca91d72","RowKey":"rkca91d72","Timestamp":"2017-07-13T18:55:19.1426833Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableca91d72/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A46%3A17.1304941Z''\"","PartitionKey":"pkca91d72","RowKey":"rkca91d72","Timestamp":"2017-07-15T00:46:17.1304941Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:55:36 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A55%3A19.1426833Z'"] + Date: ['Sat, 15 Jul 2017 00:46:34 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A46%3A17.1304941Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [361d589d-0002-009f-4809-fc2c6e000000] + x-ms-request-id: [976f79b2-0002-0003-0903-fd57d3000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -95,23 +95,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d0d3331c-67fc-11e7-953f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:01 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [026a2c14-68f7-11e7-b539-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:46:59 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttableca91d72(PartitionKey='pkca91d72',RowKey='rkca91d72') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableca91d72/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A55%3A19.1426833Z''\"","PartitionKey":"pkca91d72","RowKey":"rkca91d72","Timestamp":"2017-07-13T18:55:19.1426833Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableca91d72/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A46%3A17.1304941Z''\"","PartitionKey":"pkca91d72","RowKey":"rkca91d72","Timestamp":"2017-07-15T00:46:17.1304941Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:00 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A55%3A19.1426833Z'"] + Date: ['Sat, 15 Jul 2017 00:46:58 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A46%3A17.1304941Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [361d69c5-0002-009f-4c09-fc2c6e000000] + x-ms-request-id: [976f8b17-0002-0003-5d03-fd57d3000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -121,23 +121,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [d0d3331c-67fc-11e7-953f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [026a2c14-68f7-11e7-b539-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:41 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttableca91d72(PartitionKey='pkca91d72',RowKey='rkca91d72') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableca91d72/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A55%3A19.1426833Z''\"","PartitionKey":"pkca91d72","RowKey":"rkca91d72","Timestamp":"2017-07-13T18:55:19.1426833Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableca91d72/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A46%3A17.1304941Z''\"","PartitionKey":"pkca91d72","RowKey":"rkca91d72","Timestamp":"2017-07-15T00:46:17.1304941Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:43 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A55%3A19.1426833Z'"] + Date: ['Sat, 15 Jul 2017 00:47:40 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A46%3A17.1304941Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [361d86da-0002-009f-1009-fc2c6e000000] + x-ms-request-id: [976fade2-0002-0003-4903-fd57d3000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_get_entity_with_select.yaml b/tests/recordings/test_table_entity.test_get_entity_with_select.yaml index 1218cf35..0214fac1 100644 --- a/tests/recordings/test_table_entity.test_get_entity_with_select.yaml +++ b/tests/recordings/test_table_entity.test_get_entity_with_select.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [034b4c62-67fd-11e7-9fcc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:43 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [356fe39c-68f7-11e7-a01d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:42 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttableabfa12a7 @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttableabfa12a7(PartitionKey=''pkabfa12a7'',RowKey=''rkabfa12a7'')'] - Date: ['Thu, 13 Jul 2017 18:56:43 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A43.5184404Z'"] + Date: ['Sat, 15 Jul 2017 00:47:42 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A42.2762493Z'"] Location: ['https://storagename.table.core.windows.net/uttableabfa12a7(PartitionKey=''pkabfa12a7'',RowKey=''rkabfa12a7'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [3fa0605d-0002-00bf-6909-fc40a2000000] + x-ms-request-id: [3868a2dd-0002-00da-2103-fdf1ff000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -43,23 +43,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [036e5b08-67fd-11e7-9678-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [358c6fb4-68f7-11e7-823d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:42 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttableabfa12a7(PartitionKey='pkabfa12a7',RowKey='rkabfa12a7')?%24select=age%2Csex%2Cxyz response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableabfa12a7/@Element&$select=age,sex,xyz","odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A43.5184404Z''\"","age@odata.type":"Edm.Int64","age":"39","sex":"male","xyz":null}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableabfa12a7/@Element&$select=age,sex,xyz","odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A42.2762493Z''\"","age@odata.type":"Edm.Int64","age":"39","sex":"male","xyz":null}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:43 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A43.5184404Z'"] + Date: ['Sat, 15 Jul 2017 00:47:42 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A42.2762493Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [3fa06081-0002-00bf-0809-fc40a2000000] + x-ms-request-id: [3868a2e3-0002-00da-2503-fdf1ff000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_get_entity_with_special_doubles.yaml b/tests/recordings/test_table_entity.test_get_entity_with_special_doubles.yaml index a33acf83..74f028d5 100644 --- a/tests/recordings/test_table_entity.test_get_entity_with_special_doubles.yaml +++ b/tests/recordings/test_table_entity.test_get_entity_with_special_doubles.yaml @@ -11,9 +11,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [039b5c48-67fd-11e7-957c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [35bd9e66-68f7-11e7-9be7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:42 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable65ff1655 @@ -23,13 +23,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable65ff1655(PartitionKey=''pk65ff1655'',RowKey=''rk65ff1655'')'] - Date: ['Thu, 13 Jul 2017 18:56:43 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A44.0109491Z'"] + Date: ['Sat, 15 Jul 2017 00:47:42 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A42.8327866Z'"] Location: ['https://storagename.table.core.windows.net/uttable65ff1655(PartitionKey=''pk65ff1655'',RowKey=''rk65ff1655'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [cfb74f9f-0002-00ba-3809-fcb4dd000000] + x-ms-request-id: [59ad469c-0002-000a-7c03-fd4d5d000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -39,23 +39,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [03aec99a-67fd-11e7-a681-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [35d12bb6-68f7-11e7-a292-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:42 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable65ff1655(PartitionKey='pk65ff1655',RowKey='rk65ff1655') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable65ff1655/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A44.0109491Z''\"","PartitionKey":"pk65ff1655","RowKey":"rk65ff1655","Timestamp":"2017-07-13T18:56:44.0109491Z","inf@odata.type":"Edm.Double","inf":"Infinity","negativeinf@odata.type":"Edm.Double","negativeinf":"-Infinity","nan@odata.type":"Edm.Double","nan":"NaN"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable65ff1655/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A42.8327866Z''\"","PartitionKey":"pk65ff1655","RowKey":"rk65ff1655","Timestamp":"2017-07-15T00:47:42.8327866Z","inf@odata.type":"Edm.Double","inf":"Infinity","negativeinf@odata.type":"Edm.Double","negativeinf":"-Infinity","nan@odata.type":"Edm.Double","nan":"NaN"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:43 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A44.0109491Z'"] + Date: ['Sat, 15 Jul 2017 00:47:42 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A42.8327866Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [cfb74fc3-0002-00ba-5a09-fcb4dd000000] + x-ms-request-id: [59ad46a6-0002-000a-0303-fd4d5d000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_insert_entity_class_instance.yaml b/tests/recordings/test_table_entity.test_insert_entity_class_instance.yaml index 8330d1bf..39b4cc4b 100644 --- a/tests/recordings/test_table_entity.test_insert_entity_class_instance.yaml +++ b/tests/recordings/test_table_entity.test_insert_entity_class_instance.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [03dca5ae-67fd-11e7-8d95-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:44 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [360c37f6-68f7-11e7-a8ad-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:43 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable25d3152b @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable25d3152b(PartitionKey=''pk25d3152b'',RowKey=''rk25d3152b'')'] - Date: ['Thu, 13 Jul 2017 18:56:44 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A45.0582962Z'"] + Date: ['Sat, 15 Jul 2017 00:47:42 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A42.9136819Z'"] Location: ['https://storagename.table.core.windows.net/uttable25d3152b(PartitionKey=''pk25d3152b'',RowKey=''rk25d3152b'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [d89cca3a-0002-00b5-1d09-fc592b000000] + x-ms-request-id: [e41c95ab-0002-0094-3903-fd341a000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} version: 1 diff --git a/tests/recordings/test_table_entity.test_insert_entity_conflict.yaml b/tests/recordings/test_table_entity.test_insert_entity_conflict.yaml index 039f4bcf..98923e9d 100644 --- a/tests/recordings/test_table_entity.test_insert_entity_conflict.yaml +++ b/tests/recordings/test_table_entity.test_insert_entity_conflict.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [041c6054-67fd-11e7-bfb4-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3649d426-68f7-11e7-b765-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:43 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttableace512b3 @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttableace512b3(PartitionKey=''pkace512b3'',RowKey=''rkace512b3'')'] - Date: ['Thu, 13 Jul 2017 18:56:45 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A45.3416028Z'"] + Date: ['Sat, 15 Jul 2017 00:47:43 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A43.5141044Z'"] Location: ['https://storagename.table.core.windows.net/uttableace512b3(PartitionKey=''pkace512b3'',RowKey=''rkace512b3'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f11ba340-0002-00a8-6809-fc80c1000000] + x-ms-request-id: [3d6f1872-0002-0043-7c03-fd7e3d000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -43,7 +43,7 @@ interactions: "Edm.Int64", "Birthday": "1973-10-04T00:00:00Z", "Birthday@odata.type": "Edm.DateTime", "birthday": "1970-10-04T00:00:00Z", "birthday@odata.type": "Edm.DateTime", "binary": "YmluYXJ5", "binary@odata.type": "Edm.Binary", "other": 20, "clsid": "c9da6455-213d-42c9-9a79-3e9149a57833", - "clsid@odata.type": "Edm.Guid", "etag": "W/\"datetime''2017-07-13T18%3A56%3A45.3416028Z''\""}' + "clsid@odata.type": "Edm.Guid", "etag": "W/\"datetime''2017-07-15T00%3A47%3A43.5141044Z''\""}' headers: Accept: [application/json;odata=minimalmetadata] Connection: [keep-alive] @@ -52,24 +52,24 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0431424c-67fd-11e7-bfa1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [36601eca-68f7-11e7-ad47-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:43 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttableace512b3 response: body: {string: '{"odata.error":{"code":"EntityAlreadyExists","message":{"lang":"en-US","value":"The - specified entity already exists.\nRequestId:f11ba355-0002-00a8-7909-fc80c1000000\nTime:2017-07-13T18:56:45.3816317Z"}}}'} + specified entity already exists.\nRequestId:3d6f187b-0002-0043-0203-fd7e3d000000\nTime:2017-07-15T00:47:43.5551340Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:45 GMT'] + Date: ['Sat, 15 Jul 2017 00:47:43 GMT'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f11ba355-0002-00a8-7909-fc80c1000000] + x-ms-request-id: [3d6f187b-0002-0043-0203-fd7e3d000000] x-ms-version: ['2017-04-17'] status: {code: 409, message: Conflict} version: 1 diff --git a/tests/recordings/test_table_entity.test_insert_entity_dictionary.yaml b/tests/recordings/test_table_entity.test_insert_entity_dictionary.yaml index 8b43944b..1731ea12 100644 --- a/tests/recordings/test_table_entity.test_insert_entity_dictionary.yaml +++ b/tests/recordings/test_table_entity.test_insert_entity_dictionary.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [045fc8ee-67fd-11e7-9d1f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:45 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [368f864c-68f7-11e7-be80-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:43 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttabled3851397 @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttabled3851397(PartitionKey=''pkd3851397'',RowKey=''rkd3851397'')'] - Date: ['Thu, 13 Jul 2017 18:56:44 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A45.4116909Z'"] + Date: ['Sat, 15 Jul 2017 00:47:43 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A43.8463306Z'"] Location: ['https://storagename.table.core.windows.net/uttabled3851397(PartitionKey=''pkd3851397'',RowKey=''rkd3851397'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [fec8f61c-0002-0018-2b09-fc7941000000] + x-ms-request-id: [336301a0-0002-007d-0503-fdc81c000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} version: 1 diff --git a/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_existing_entity.yaml b/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_existing_entity.yaml index f9448e07..b689375d 100644 --- a/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_existing_entity.yaml +++ b/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_existing_entity.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [054ef130-67fd-11e7-bb93-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3798c634-68f7-11e7-9083-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:45 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable95761b92 @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable95761b92(PartitionKey=''pk95761b92'',RowKey=''rk95761b92'')'] - Date: ['Thu, 13 Jul 2017 18:56:45 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A46.8652274Z'"] + Date: ['Sat, 15 Jul 2017 00:47:43 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A44.6420908Z'"] Location: ['https://storagename.table.core.windows.net/uttable95761b92(PartitionKey=''pk95761b92'',RowKey=''rk95761b92'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [eb05a6c1-0002-0098-5a09-fcdaeb000000] + x-ms-request-id: [da37035f-0002-008c-7003-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -47,9 +47,9 @@ interactions: Content-Type: [application/json] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0563d4e2-67fd-11e7-9df0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [37af52a8-68f7-11e7-83ec-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:45 GMT'] x-ms-version: ['2017-04-17'] method: MERGE uri: https://storagename.table.core.windows.net/uttable95761b92(PartitionKey='pk95761b92',RowKey='rk95761b92') @@ -58,11 +58,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:56:45 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A46.9515307Z'"] + Date: ['Sat, 15 Jul 2017 00:47:43 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A45.5605368Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [eb05a6cf-0002-0098-6409-fcdaeb000000] + x-ms-request-id: [da37036c-0002-008c-7a03-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -72,23 +72,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0569a9b4-67fd-11e7-8058-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [37b4e80a-68f7-11e7-809e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:45 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable95761b92(PartitionKey='pk95761b92',RowKey='rk95761b92') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable95761b92/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A46.9515307Z''\"","PartitionKey":"pk95761b92","RowKey":"rk95761b92","Timestamp":"2017-07-13T18:56:46.9515307Z","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","age":"abc","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","deceased":false,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","married":true,"other":20,"ratio":3.1,"sex":"female","sign":"aquarius"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable95761b92/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A45.5605368Z''\"","PartitionKey":"pk95761b92","RowKey":"rk95761b92","Timestamp":"2017-07-15T00:47:45.5605368Z","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","age":"abc","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","deceased":false,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","married":true,"other":20,"ratio":3.1,"sex":"female","sign":"aquarius"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:45 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A46.9515307Z'"] + Date: ['Sat, 15 Jul 2017 00:47:43 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A45.5605368Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [eb05a6da-0002-0098-6f09-fcdaeb000000] + x-ms-request-id: [da370371-0002-008c-7f03-fd198f000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_non_existing_entity.yaml b/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_non_existing_entity.yaml index 9a809e16..70cda33f 100644 --- a/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_non_existing_entity.yaml +++ b/tests/recordings/test_table_entity.test_insert_or_merge_entity_with_non_existing_entity.yaml @@ -10,9 +10,9 @@ interactions: Content-Type: [application/json] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [059df35c-67fd-11e7-a96e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [37e4e1f4-68f7-11e7-b969-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:46 GMT'] x-ms-version: ['2017-04-17'] method: MERGE uri: https://storagename.table.core.windows.net/uttable7671d3c(PartitionKey='pk7671d3c',RowKey='rk7671d3c') @@ -21,11 +21,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:56:47 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A47.4258593Z'"] + Date: ['Sat, 15 Jul 2017 00:47:45 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A46.0118658Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [85c906ea-0002-00bc-5609-fc43a5000000] + x-ms-request-id: [260c3b66-0002-003b-3403-fd168a000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -35,23 +35,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [05b1afbe-67fd-11e7-8bc1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:47 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [37f9c9fa-68f7-11e7-88ff-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:46 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable7671d3c(PartitionKey='pk7671d3c',RowKey='rk7671d3c') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable7671d3c/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A47.4258593Z''\"","PartitionKey":"pk7671d3c","RowKey":"rk7671d3c","Timestamp":"2017-07-13T18:56:47.4258593Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable7671d3c/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A46.0118658Z''\"","PartitionKey":"pk7671d3c","RowKey":"rk7671d3c","Timestamp":"2017-07-15T00:47:46.0118658Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:47 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A47.4258593Z'"] + Date: ['Sat, 15 Jul 2017 00:47:45 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A46.0118658Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [85c90703-0002-00bc-6b09-fc43a5000000] + x-ms-request-id: [260c3b6a-0002-003b-3603-fd168a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_existing_entity.yaml b/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_existing_entity.yaml index 3df45dfe..6b36d54e 100644 --- a/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_existing_entity.yaml +++ b/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_existing_entity.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [05e040ae-67fd-11e7-82ee-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [382a5dec-68f7-11e7-bf78-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:46 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablecc7c1c5e @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablecc7c1c5e(PartitionKey=''pkcc7c1c5e'',RowKey=''rkcc7c1c5e'')'] - Date: ['Thu, 13 Jul 2017 18:56:47 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A47.9825899Z'"] + Date: ['Sat, 15 Jul 2017 00:47:45 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A46.2457245Z'"] Location: ['https://storagename.table.core.windows.net/uttablecc7c1c5e(PartitionKey=''pkcc7c1c5e'',RowKey=''rkcc7c1c5e'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [8f4dfe1e-0002-0090-5509-fcc198000000] + x-ms-request-id: [b9756322-0002-0129-1003-fd64c3000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -47,9 +47,9 @@ interactions: Content-Type: [application/json] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [05f471be-67fd-11e7-970c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [383da73a-68f7-11e7-9500-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:46 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.table.core.windows.net/uttablecc7c1c5e(PartitionKey='pkcc7c1c5e',RowKey='rkcc7c1c5e') @@ -58,11 +58,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:56:47 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A47.9835899Z'"] + Date: ['Sat, 15 Jul 2017 00:47:45 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A46.4912157Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [8f4dfe25-0002-0090-5a09-fcc198000000] + x-ms-request-id: [b9756329-0002-0129-1503-fd64c3000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -72,23 +72,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [05fa0ed0-67fd-11e7-8019-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3842ea2e-68f7-11e7-b51e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:46 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablecc7c1c5e(PartitionKey='pkcc7c1c5e',RowKey='rkcc7c1c5e') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablecc7c1c5e/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A47.9835899Z''\"","PartitionKey":"pkcc7c1c5e","RowKey":"rkcc7c1c5e","Timestamp":"2017-07-13T18:56:47.9835899Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablecc7c1c5e/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A46.4912157Z''\"","PartitionKey":"pkcc7c1c5e","RowKey":"rkcc7c1c5e","Timestamp":"2017-07-15T00:47:46.4912157Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:47 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A47.9835899Z'"] + Date: ['Sat, 15 Jul 2017 00:47:45 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A46.4912157Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [8f4dfe2a-0002-0090-5f09-fcc198000000] + x-ms-request-id: [b9756330-0002-0129-1b03-fd64c3000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_non_existing_entity.yaml b/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_non_existing_entity.yaml index 313f75d5..7cf782dd 100644 --- a/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_non_existing_entity.yaml +++ b/tests/recordings/test_table_entity.test_insert_or_replace_entity_with_non_existing_entity.yaml @@ -10,9 +10,9 @@ interactions: Content-Type: [application/json] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [062a250c-67fd-11e7-bdfa-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [38719c98-68f7-11e7-84d0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:47 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.table.core.windows.net/uttable419d1e08(PartitionKey='pk419d1e08',RowKey='rk419d1e08') @@ -21,11 +21,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:56:48 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A48.3424935Z'"] + Date: ['Sat, 15 Jul 2017 00:47:46 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A46.9225326Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [75d37301-0002-0077-1b09-fcd195000000] + x-ms-request-id: [7877a2a9-0002-00ff-6f03-fd694c000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -35,23 +35,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [063f18d8-67fd-11e7-9fed-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:48 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3884ad62-68f7-11e7-aea1-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:47 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable419d1e08(PartitionKey='pk419d1e08',RowKey='rk419d1e08') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable419d1e08/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A48.3424935Z''\"","PartitionKey":"pk419d1e08","RowKey":"rk419d1e08","Timestamp":"2017-07-13T18:56:48.3424935Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable419d1e08/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A46.9225326Z''\"","PartitionKey":"pk419d1e08","RowKey":"rk419d1e08","Timestamp":"2017-07-15T00:47:46.9225326Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:48 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A48.3424935Z'"] + Date: ['Sat, 15 Jul 2017 00:47:46 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A46.9225326Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [75d3731a-0002-0077-3009-fcd195000000] + x-ms-request-id: [7877a2b4-0002-00ff-7803-fd694c000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_merge_entity.yaml b/tests/recordings/test_table_entity.test_merge_entity.yaml index e8e4c41f..03d1e9c4 100644 --- a/tests/recordings/test_table_entity.test_merge_entity.yaml +++ b/tests/recordings/test_table_entity.test_merge_entity.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [066cbd2c-67fd-11e7-85f6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [38b4e462-68f7-11e7-8769-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:47 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable3df0e7d @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable3df0e7d(PartitionKey=''pk3df0e7d'',RowKey=''rk3df0e7d'')'] - Date: ['Thu, 13 Jul 2017 18:56:48 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A48.7417175Z'"] + Date: ['Sat, 15 Jul 2017 00:47:47 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A48.0371082Z'"] Location: ['https://storagename.table.core.windows.net/uttable3df0e7d(PartitionKey=''pk3df0e7d'',RowKey=''rk3df0e7d'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [919204de-0002-00ff-7609-fc694c000000] + x-ms-request-id: [e7cd2c55-0002-0086-0703-fd0006000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -48,9 +48,9 @@ interactions: DataServiceVersion: [3.0;NetFx] If-Match: ['*'] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [06830d86-67fd-11e7-8672-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [38ca3254-68f7-11e7-bbb0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:47 GMT'] x-ms-version: ['2017-04-17'] method: MERGE uri: https://storagename.table.core.windows.net/uttable3df0e7d(PartitionKey='pk3df0e7d',RowKey='rk3df0e7d') @@ -59,11 +59,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:56:48 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A48.8328324Z'"] + Date: ['Sat, 15 Jul 2017 00:47:47 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A48.0381082Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [919204e9-0002-00ff-7d09-fc694c000000] + x-ms-request-id: [e7cd2c64-0002-0086-1403-fd0006000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -73,23 +73,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0688f5a8-67fd-11e7-b403-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [38cfc836-68f7-11e7-8277-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:47 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable3df0e7d(PartitionKey='pk3df0e7d',RowKey='rk3df0e7d') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3df0e7d/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A48.8328324Z''\"","PartitionKey":"pk3df0e7d","RowKey":"rk3df0e7d","Timestamp":"2017-07-13T18:56:48.8328324Z","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","age":"abc","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","deceased":false,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","married":true,"other":20,"ratio":3.1,"sex":"female","sign":"aquarius"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable3df0e7d/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A48.0381082Z''\"","PartitionKey":"pk3df0e7d","RowKey":"rk3df0e7d","Timestamp":"2017-07-15T00:47:48.0381082Z","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","age":"abc","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","deceased":false,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","married":true,"other":20,"ratio":3.1,"sex":"female","sign":"aquarius"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:48 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A48.8328324Z'"] + Date: ['Sat, 15 Jul 2017 00:47:47 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A48.0381082Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [919204ee-0002-00ff-0109-fc694c000000] + x-ms-request-id: [e7cd2c6f-0002-0086-1f03-fd0006000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_merge_entity_not_existing.yaml b/tests/recordings/test_table_entity.test_merge_entity_not_existing.yaml index af3834b1..2eef1dd0 100644 --- a/tests/recordings/test_table_entity.test_merge_entity_not_existing.yaml +++ b/tests/recordings/test_table_entity.test_merge_entity_not_existing.yaml @@ -11,23 +11,23 @@ interactions: DataServiceVersion: [3.0;NetFx] If-Match: ['*'] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [06b9038a-67fd-11e7-a6b3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [39119afe-68f7-11e7-a40c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:48 GMT'] x-ms-version: ['2017-04-17'] method: MERGE uri: https://storagename.table.core.windows.net/uttablee64a13f7(PartitionKey='pke64a13f7',RowKey='rke64a13f7') response: body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:a996e43c-0002-0097-7909-fc371d000000\nTime:2017-07-13T18:56:49.6396431Z"}}}'} + specified resource does not exist.\nRequestId:86d1af30-0002-00fc-4e03-fd6a4b000000\nTime:2017-07-15T00:47:48.5873621Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:48 GMT'] + Date: ['Sat, 15 Jul 2017 00:47:47 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [a996e43c-0002-0097-7909-fc371d000000] + x-ms-request-id: [86d1af30-0002-00fc-4e03-fd6a4b000000] x-ms-version: ['2017-04-17'] status: {code: 404, message: Not Found} version: 1 diff --git a/tests/recordings/test_table_entity.test_merge_entity_with_if_doesnt_match.yaml b/tests/recordings/test_table_entity.test_merge_entity_with_if_doesnt_match.yaml index 8dc4fd8d..4c678cfb 100644 --- a/tests/recordings/test_table_entity.test_merge_entity_with_if_doesnt_match.yaml +++ b/tests/recordings/test_table_entity.test_merge_entity_with_if_doesnt_match.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0701110c-67fd-11e7-91a6-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:49 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [394f9cfa-68f7-11e7-92a0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:48 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable9316171e @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable9316171e(PartitionKey=''pk9316171e'',RowKey=''rk9316171e'')'] - Date: ['Thu, 13 Jul 2017 18:56:49 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A49.9865614Z'"] + Date: ['Sat, 15 Jul 2017 00:47:48 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A48.9689775Z'"] Location: ['https://storagename.table.core.windows.net/uttable9316171e(PartitionKey=''pk9316171e'',RowKey=''rk9316171e'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [7eac343e-0002-0007-5d09-fca251000000] + x-ms-request-id: [8a4a82e1-0002-00e7-5a03-fd44d9000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -48,23 +48,23 @@ interactions: DataServiceVersion: [3.0;NetFx] If-Match: [W/"datetime'2012-06-15T22%3A51%3A44.9662825Z'"] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [07166eda-67fd-11e7-8eba-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3965e3f4-68f7-11e7-b538-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:48 GMT'] x-ms-version: ['2017-04-17'] method: MERGE uri: https://storagename.table.core.windows.net/uttable9316171e(PartitionKey='pk9316171e',RowKey='rk9316171e') response: body: {string: '{"odata.error":{"code":"UpdateConditionNotSatisfied","message":{"lang":"en-US","value":"The - update condition specified in the request was not satisfied.\nRequestId:7eac3448-0002-0007-6409-fca251000000\nTime:2017-07-13T18:56:50.0265904Z"}}}'} + update condition specified in the request was not satisfied.\nRequestId:8a4a82eb-0002-00e7-6103-fd44d9000000\nTime:2017-07-15T00:47:49.0290193Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:49 GMT'] + Date: ['Sat, 15 Jul 2017 00:47:48 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [7eac3448-0002-0007-6409-fca251000000] + x-ms-request-id: [8a4a82eb-0002-00e7-6103-fd44d9000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: Precondition Failed} version: 1 diff --git a/tests/recordings/test_table_entity.test_merge_entity_with_if_matches.yaml b/tests/recordings/test_table_entity.test_merge_entity_with_if_matches.yaml index 29716cc1..a450d279 100644 --- a/tests/recordings/test_table_entity.test_merge_entity_with_if_matches.yaml +++ b/tests/recordings/test_table_entity.test_merge_entity_with_if_matches.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0746c13e-67fd-11e7-a10e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3997b0a8-68f7-11e7-b2a5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:49 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable236c150a @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable236c150a(PartitionKey=''pk236c150a'',RowKey=''rk236c150a'')'] - Date: ['Thu, 13 Jul 2017 18:56:49 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A50.2489818Z'"] + Date: ['Sat, 15 Jul 2017 00:47:48 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A49.0707821Z'"] Location: ['https://storagename.table.core.windows.net/uttable236c150a(PartitionKey=''pk236c150a'',RowKey=''rk236c150a'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b3674953-0002-007b-7709-fc3f64000000] + x-ms-request-id: [0785c5c9-0002-0121-0b03-fd7fb0000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -46,11 +46,11 @@ interactions: Content-Length: ['180'] Content-Type: [application/json] DataServiceVersion: [3.0;NetFx] - If-Match: [W/"datetime'2017-07-13T18%3A56%3A50.2489818Z'"] + If-Match: [W/"datetime'2017-07-15T00%3A47%3A49.0707821Z'"] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [075cfd0a-67fd-11e7-b28c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [39ab9514-68f7-11e7-9424-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:49 GMT'] x-ms-version: ['2017-04-17'] method: MERGE uri: https://storagename.table.core.windows.net/uttable236c150a(PartitionKey='pk236c150a',RowKey='rk236c150a') @@ -59,11 +59,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:56:50 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A50.2598214Z'"] + Date: ['Sat, 15 Jul 2017 00:47:48 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A49.0717821Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b3674958-0002-007b-7a09-fc3f64000000] + x-ms-request-id: [0785c5d5-0002-0121-1503-fd7fb0000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -73,23 +73,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [07629012-67fd-11e7-bbd1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:50 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [39b415e8-68f7-11e7-a02e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:49 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable236c150a(PartitionKey='pk236c150a',RowKey='rk236c150a') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable236c150a/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A50.2598214Z''\"","PartitionKey":"pk236c150a","RowKey":"rk236c150a","Timestamp":"2017-07-13T18:56:50.2598214Z","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","age":"abc","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","deceased":false,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","married":true,"other":20,"ratio":3.1,"sex":"female","sign":"aquarius"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable236c150a/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A49.0717821Z''\"","PartitionKey":"pk236c150a","RowKey":"rk236c150a","Timestamp":"2017-07-15T00:47:49.0717821Z","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","age":"abc","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833","deceased":false,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","married":true,"other":20,"ratio":3.1,"sex":"female","sign":"aquarius"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:50 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A50.2598214Z'"] + Date: ['Sat, 15 Jul 2017 00:47:48 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A49.0717821Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b3674967-0002-007b-0909-fc3f64000000] + x-ms-request-id: [0785c5f8-0002-0121-3803-fd7fb0000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_none_property_value.yaml b/tests/recordings/test_table_entity.test_none_property_value.yaml index 8a8729e3..959ed636 100644 --- a/tests/recordings/test_table_entity.test_none_property_value.yaml +++ b/tests/recordings/test_table_entity.test_none_property_value.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [079dc718-67fd-11e7-a473-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [39f19528-68f7-11e7-8c1a-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:49 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable76561181 @@ -21,13 +21,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable76561181(PartitionKey=''pk76561181'',RowKey=''rk76561181'')'] - Date: ['Thu, 13 Jul 2017 18:56:50 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A51.5305605Z'"] + Date: ['Sat, 15 Jul 2017 00:47:50 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A50.2564681Z'"] Location: ['https://storagename.table.core.windows.net/uttable76561181(PartitionKey=''pk76561181'',RowKey=''rk76561181'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [71cdd857-0002-00db-4009-fcf002000000] + x-ms-request-id: [8d54f213-0002-00f7-3b03-fd723f000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -37,23 +37,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [07b1e00c-67fd-11e7-ba9c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3a06103e-68f7-11e7-b6de-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:49 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable76561181(PartitionKey='pk76561181',RowKey='rk76561181') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable76561181/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A51.5305605Z''\"","PartitionKey":"pk76561181","RowKey":"rk76561181","Timestamp":"2017-07-13T18:56:51.5305605Z"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable76561181/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A50.2564681Z''\"","PartitionKey":"pk76561181","RowKey":"rk76561181","Timestamp":"2017-07-15T00:47:50.2564681Z"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:50 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A56%3A51.5305605Z'"] + Date: ['Sat, 15 Jul 2017 00:47:50 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A47%3A50.2564681Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [71cdd862-0002-00db-4909-fcf002000000] + x-ms-request-id: [8d54f21b-0002-00f7-4003-fd723f000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_query_entities.yaml b/tests/recordings/test_table_entity.test_query_entities.yaml index 7e938e83..781adcb8 100644 --- a/tests/recordings/test_table_entity.test_query_entities.yaml +++ b/tests/recordings/test_table_entity.test_query_entities.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [07e19998-67fd-11e7-a7f1-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3a4b3062-68f7-11e7-8c5c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:50 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,21 +21,21 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''querytable23930f6b'')'] - Date: ['Thu, 13 Jul 2017 18:56:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:47:49 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''querytable23930f6b'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [413317b1-0002-004b-6609-fc654e000000] + x-ms-request-id: [440c3256-0002-007e-2c03-fdcb1b000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_07fb82d8-67fd-11e7-a82e-b8e8564491f6 + body: '--batch_3a71e662-68f7-11e7-b371-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_07fb839e-67fd-11e7-b84d-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3a71e71e-68f7-11e7-bfc2-b8e8564491f6 - --changeset_07fb839e-67fd-11e7-b84d-b8e8564491f6 + --changeset_3a71e71e-68f7-11e7-bfc2-b8e8564491f6 Content-Type: application/http @@ -64,7 +64,7 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_07fb839e-67fd-11e7-b84d-b8e8564491f6 + --changeset_3a71e71e-68f7-11e7-bfc2-b8e8564491f6 Content-Type: application/http @@ -93,46 +93,46 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_07fb839e-67fd-11e7-b84d-b8e8564491f6-- + --changeset_3a71e71e-68f7-11e7-bfc2-b8e8564491f6-- - --batch_07fb82d8-67fd-11e7-a82e-b8e8564491f6--' + --batch_3a71e662-68f7-11e7-b371-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['1923'] - Content-Type: [multipart/mixed; boundary=batch_07fb82d8-67fd-11e7-a82e-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3a71e662-68f7-11e7-b371-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [07fb86d2-67fd-11e7-ac05-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3a71eade-68f7-11e7-b88b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:50 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_71cfc0de-e50c-412b-be49-e588373bd248\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_ffe40ae9-8556-484c-b47f-7f6a60485cbc\r\ - \n\r\n--changesetresponse_ffe40ae9-8556-484c-b47f-7f6a60485cbc\r\nContent-Type:\ + body: {string: "--batchresponse_f6a904b5-dd27-432b-88d2-c990d8256478\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_2bb0a13e-2eee-4b24-b7a1-804dca7c5a28\r\ + \n\r\n--changesetresponse_2bb0a13e-2eee-4b24-b7a1-804dca7c5a28\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable23930f6b(PartitionKey='pk23930f6b',RowKey='rk23930f6b1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable23930f6b(PartitionKey='pk23930f6b',RowKey='rk23930f6b1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A51.2391339Z'\"\r\n\r\n\r\n--changesetresponse_ffe40ae9-8556-484c-b47f-7f6a60485cbc\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A50.7295522Z'\"\r\n\r\n\r\n--changesetresponse_2bb0a13e-2eee-4b24-b7a1-804dca7c5a28\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable23930f6b(PartitionKey='pk23930f6b',RowKey='rk23930f6b12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable23930f6b(PartitionKey='pk23930f6b',RowKey='rk23930f6b12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A51.2391339Z'\"\r\n\r\n\r\n--changesetresponse_ffe40ae9-8556-484c-b47f-7f6a60485cbc--\r\ - \n--batchresponse_71cfc0de-e50c-412b-be49-e588373bd248--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A50.7295522Z'\"\r\n\r\n\r\n--changesetresponse_2bb0a13e-2eee-4b24-b7a1-804dca7c5a28--\r\ + \n--batchresponse_f6a904b5-dd27-432b-88d2-c990d8256478--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_71cfc0de-e50c-412b-be49-e588373bd248] - Date: ['Thu, 13 Jul 2017 18:56:50 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_f6a904b5-dd27-432b-88d2-c990d8256478] + Date: ['Sat, 15 Jul 2017 00:47:50 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [413317b9-0002-004b-6c09-fc654e000000] + x-ms-request-id: [440c3265-0002-007e-3903-fdcb1b000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -142,22 +142,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0807b47a-67fd-11e7-a01c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:51 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3a7cc8be-68f7-11e7-b0c4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:50 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/querytable23930f6b() response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable23930f6b","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A51.2391339Z''\"","PartitionKey":"pk23930f6b","RowKey":"rk23930f6b1","Timestamp":"2017-07-13T18:56:51.2391339Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A51.2391339Z''\"","PartitionKey":"pk23930f6b","RowKey":"rk23930f6b12","Timestamp":"2017-07-13T18:56:51.2391339Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable23930f6b","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A50.7295522Z''\"","PartitionKey":"pk23930f6b","RowKey":"rk23930f6b1","Timestamp":"2017-07-15T00:47:50.7295522Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A50.7295522Z''\"","PartitionKey":"pk23930f6b","RowKey":"rk23930f6b12","Timestamp":"2017-07-15T00:47:50.7295522Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:50 GMT'] + Date: ['Sat, 15 Jul 2017 00:47:50 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [413317c1-0002-004b-7409-fc654e000000] + x-ms-request-id: [440c3270-0002-007e-4203-fdcb1b000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_query_entities_full_metadata.yaml b/tests/recordings/test_table_entity.test_query_entities_full_metadata.yaml index f1ef3683..ac59f84a 100644 --- a/tests/recordings/test_table_entity.test_query_entities_full_metadata.yaml +++ b/tests/recordings/test_table_entity.test_query_entities_full_metadata.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0842b048-67fd-11e7-b75a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3ab751c8-68f7-11e7-9935-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:50 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,21 +21,21 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''querytable264f151d'')'] - Date: ['Thu, 13 Jul 2017 18:56:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:47:50 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''querytable264f151d'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [a7421cd4-0002-001f-6a09-fc8fc4000000] + x-ms-request-id: [55d0f740-0002-0130-7a03-fd48ab000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_085a5130-67fd-11e7-95ce-b8e8564491f6 + body: '--batch_3acc8fd4-68f7-11e7-8421-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_085a51b4-67fd-11e7-8e11-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3acc9042-68f7-11e7-8a5f-b8e8564491f6 - --changeset_085a51b4-67fd-11e7-8e11-b8e8564491f6 + --changeset_3acc9042-68f7-11e7-8a5f-b8e8564491f6 Content-Type: application/http @@ -64,7 +64,7 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_085a51b4-67fd-11e7-8e11-b8e8564491f6 + --changeset_3acc9042-68f7-11e7-8a5f-b8e8564491f6 Content-Type: application/http @@ -93,46 +93,46 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_085a51b4-67fd-11e7-8e11-b8e8564491f6-- + --changeset_3acc9042-68f7-11e7-8a5f-b8e8564491f6-- - --batch_085a5130-67fd-11e7-95ce-b8e8564491f6--' + --batch_3acc8fd4-68f7-11e7-8421-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['1923'] - Content-Type: [multipart/mixed; boundary=batch_085a5130-67fd-11e7-95ce-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3acc8fd4-68f7-11e7-8421-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [085a5446-67fd-11e7-83a3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3acc925e-68f7-11e7-93c0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:51 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_fb55bd6e-e2d2-4d8a-a366-1b1e3759e0ef\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_0b3727b9-0d17-4c78-a4b5-2cb3649105f6\r\ - \n\r\n--changesetresponse_0b3727b9-0d17-4c78-a4b5-2cb3649105f6\r\nContent-Type:\ + body: {string: "--batchresponse_c27676e9-2a03-4b97-ad9e-126e758a0b32\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_e6769e81-8fcd-4b6d-8700-5e99db34bf14\r\ + \n\r\n--changesetresponse_e6769e81-8fcd-4b6d-8700-5e99db34bf14\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable264f151d(PartitionKey='pk264f151d',RowKey='rk264f151d1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable264f151d(PartitionKey='pk264f151d',RowKey='rk264f151d1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A51.947461Z'\"\r\n\r\n\r\n--changesetresponse_0b3727b9-0d17-4c78-a4b5-2cb3649105f6\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A50.8146414Z'\"\r\n\r\n\r\n--changesetresponse_e6769e81-8fcd-4b6d-8700-5e99db34bf14\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable264f151d(PartitionKey='pk264f151d',RowKey='rk264f151d12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable264f151d(PartitionKey='pk264f151d',RowKey='rk264f151d12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A51.947461Z'\"\r\n\r\n\r\n--changesetresponse_0b3727b9-0d17-4c78-a4b5-2cb3649105f6--\r\ - \n--batchresponse_fb55bd6e-e2d2-4d8a-a366-1b1e3759e0ef--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A50.8146414Z'\"\r\n\r\n\r\n--changesetresponse_e6769e81-8fcd-4b6d-8700-5e99db34bf14--\r\ + \n--batchresponse_c27676e9-2a03-4b97-ad9e-126e758a0b32--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_fb55bd6e-e2d2-4d8a-a366-1b1e3759e0ef] - Date: ['Thu, 13 Jul 2017 18:56:51 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_c27676e9-2a03-4b97-ad9e-126e758a0b32] + Date: ['Sat, 15 Jul 2017 00:47:50 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [a7421ce1-0002-001f-7509-fc8fc4000000] + x-ms-request-id: [55d0f750-0002-0130-0603-fd48ab000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -142,22 +142,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0860469e-67fd-11e7-b626-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3ad2b5ee-68f7-11e7-9965-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:51 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/querytable264f151d() response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable264f151d","value":[{"odata.type":"storagename.querytable264f151d","odata.id":"https://storagename.table.core.windows.net/querytable264f151d(PartitionKey=''pk264f151d'',RowKey=''rk264f151d1'')","odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A51.947461Z''\"","odata.editLink":"querytable264f151d(PartitionKey=''pk264f151d'',RowKey=''rk264f151d1'')","PartitionKey":"pk264f151d","RowKey":"rk264f151d1","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2017-07-13T18:56:51.947461Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"},{"odata.type":"storagename.querytable264f151d","odata.id":"https://storagename.table.core.windows.net/querytable264f151d(PartitionKey=''pk264f151d'',RowKey=''rk264f151d12'')","odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A51.947461Z''\"","odata.editLink":"querytable264f151d(PartitionKey=''pk264f151d'',RowKey=''rk264f151d12'')","PartitionKey":"pk264f151d","RowKey":"rk264f151d12","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2017-07-13T18:56:51.947461Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable264f151d","value":[{"odata.type":"storagename.querytable264f151d","odata.id":"https://storagename.table.core.windows.net/querytable264f151d(PartitionKey=''pk264f151d'',RowKey=''rk264f151d1'')","odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A50.8146414Z''\"","odata.editLink":"querytable264f151d(PartitionKey=''pk264f151d'',RowKey=''rk264f151d1'')","PartitionKey":"pk264f151d","RowKey":"rk264f151d1","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2017-07-15T00:47:50.8146414Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"},{"odata.type":"storagename.querytable264f151d","odata.id":"https://storagename.table.core.windows.net/querytable264f151d(PartitionKey=''pk264f151d'',RowKey=''rk264f151d12'')","odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A50.8146414Z''\"","odata.editLink":"querytable264f151d(PartitionKey=''pk264f151d'',RowKey=''rk264f151d12'')","PartitionKey":"pk264f151d","RowKey":"rk264f151d12","Timestamp@odata.type":"Edm.DateTime","Timestamp":"2017-07-15T00:47:50.8146414Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=fullmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:47:50 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [a7421ce4-0002-001f-7809-fc8fc4000000] + x-ms-request-id: [55d0f75a-0002-0130-0f03-fd48ab000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_query_entities_large.yaml b/tests/recordings/test_table_entity.test_query_entities_large.yaml index 2e76f3ac..4ddf14c6 100644 --- a/tests/recordings/test_table_entity.test_query_entities_large.yaml +++ b/tests/recordings/test_table_entity.test_query_entities_large.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [089b0806-67fd-11e7-a0f5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3b06b9fa-68f7-11e7-beea-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:51 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,57 +21,57 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''querytable887811d5'')'] - Date: ['Thu, 13 Jul 2017 18:56:51 GMT'] + Date: ['Sat, 15 Jul 2017 00:47:50 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''querytable887811d5'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a27a-0002-0043-0a09-fc7e3d000000] + x-ms-request-id: [40d29cc2-0002-011b-8003-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_08af1d46-67fd-11e7-aeed-b8e8564491f6 + body: '--batch_3b1a5502-68f7-11e7-be8b-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_08af1e9a-67fd-11e7-b4d8-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3b1a56ba-68f7-11e7-b8b0-b8e8564491f6 - --changeset_08af1e9a-67fd-11e7-b4d8-b8e8564491f6-- + --changeset_3b1a56ba-68f7-11e7-b8b0-b8e8564491f6-- - --batch_08af1d46-67fd-11e7-aeed-b8e8564491f6--' + --batch_3b1a5502-68f7-11e7-be8b-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['230'] - Content-Type: [multipart/mixed; boundary=batch_08af1d46-67fd-11e7-aeed-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3b1a5502-68f7-11e7-be8b-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [08af2070-67fd-11e7-854b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3b1a5912-68f7-11e7-b886-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:51 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_c43449ac-38c2-4167-b030-dec9a457eebf\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_8aec5ff5-b304-448e-b934-b4ee7cc8da7b\r\ - \n\r\n--changesetresponse_8aec5ff5-b304-448e-b934-b4ee7cc8da7b--\r\n--batchresponse_c43449ac-38c2-4167-b030-dec9a457eebf--\r\ + body: {string: "--batchresponse_c010a996-dd78-4191-b130-38db61cfb52a\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_2d8746bd-234f-4c23-adf1-0477f968c434\r\ + \n\r\n--changesetresponse_2d8746bd-234f-4c23-adf1-0477f968c434--\r\n--batchresponse_c010a996-dd78-4191-b130-38db61cfb52a--\r\ \n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_c43449ac-38c2-4167-b030-dec9a457eebf] - Date: ['Thu, 13 Jul 2017 18:56:51 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_c010a996-dd78-4191-b130-38db61cfb52a] + Date: ['Sat, 15 Jul 2017 00:47:50 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a27d-0002-0043-0b09-fc7e3d000000] + x-ms-request-id: [40d29cd1-0002-011b-0b03-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_08b42192-67fd-11e7-a1d4-b8e8564491f6 + body: '--batch_3b1fc758-68f7-11e7-89fe-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -111,7 +111,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -151,7 +151,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -191,7 +191,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -231,7 +231,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -271,7 +271,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -311,7 +311,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -351,7 +351,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -391,7 +391,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -431,7 +431,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -471,7 +471,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -511,7 +511,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -551,7 +551,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -591,7 +591,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -631,7 +631,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -671,7 +671,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -711,7 +711,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -751,7 +751,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -791,7 +791,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -831,7 +831,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -871,7 +871,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -911,7 +911,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -951,7 +951,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -991,7 +991,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1031,7 +1031,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1071,7 +1071,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1111,7 +1111,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1151,7 +1151,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1191,7 +1191,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1231,7 +1231,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1271,7 +1271,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1311,7 +1311,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1351,7 +1351,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1391,7 +1391,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1431,7 +1431,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1471,7 +1471,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1511,7 +1511,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1551,7 +1551,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1591,7 +1591,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1631,7 +1631,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1671,7 +1671,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1711,7 +1711,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1751,7 +1751,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1791,7 +1791,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1831,7 +1831,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1871,7 +1871,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1911,7 +1911,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1951,7 +1951,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -1991,7 +1991,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -2031,7 +2031,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6 + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6 Content-Type: application/http @@ -2071,343 +2071,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08b421f6-67fd-11e7-9d20-b8e8564491f6-- + --changeset_3b1fc7d0-68f7-11e7-912f-b8e8564491f6-- - --batch_08b42192-67fd-11e7-a1d4-b8e8564491f6--' + --batch_3b1fc758-68f7-11e7-89fe-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87461'] - Content-Type: [multipart/mixed; boundary=batch_08b42192-67fd-11e7-a1d4-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3b1fc758-68f7-11e7-89fe-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [08b4391e-67fd-11e7-a1b8-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:52 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3b1fe1a2-68f7-11e7-82d6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:51 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_e1c7cad4-0242-47fb-9618-5edc6b256f0a\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ - \n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\nContent-Type:\ + body: {string: "--batchresponse_9cbf02f2-65a9-4010-b807-75f9fb4c9479\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ + \n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8028021Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8028021Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8028021Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8028021Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8028021Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8028021Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8028021Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8028021Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9091551Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch0-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A52.9101554Z'\"\r\n\r\n\r\n--changesetresponse_fe34b0da-cc08-46be-85b1-a0ea5eeb271d--\r\ - \n--batchresponse_e1c7cad4-0242-47fb-9618-5edc6b256f0a--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.8038032Z'\"\r\n\r\n\r\n--changesetresponse_497febcb-d807-4a13-908e-08c4129e6f03--\r\ + \n--batchresponse_9cbf02f2-65a9-4010-b807-75f9fb4c9479--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_e1c7cad4-0242-47fb-9618-5edc6b256f0a] - Date: ['Thu, 13 Jul 2017 18:56:52 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_9cbf02f2-65a9-4010-b807-75f9fb4c9479] + Date: ['Sat, 15 Jul 2017 00:47:51 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a281-0002-0043-0f09-fc7e3d000000] + x-ms-request-id: [40d29cde-0002-011b-1703-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_08dd94fa-67fd-11e7-a341-b8e8564491f6 + body: '--batch_3b45d83a-68f7-11e7-a649-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -2447,7 +2447,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -2487,7 +2487,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -2527,7 +2527,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -2567,7 +2567,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -2607,7 +2607,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -2647,7 +2647,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -2687,7 +2687,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -2727,7 +2727,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -2767,7 +2767,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -2807,7 +2807,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -2847,7 +2847,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -2887,7 +2887,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -2927,7 +2927,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -2967,7 +2967,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3007,7 +3007,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3047,7 +3047,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3087,7 +3087,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3127,7 +3127,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3167,7 +3167,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3207,7 +3207,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3247,7 +3247,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3287,7 +3287,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3327,7 +3327,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3367,7 +3367,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3407,7 +3407,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3447,7 +3447,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3487,7 +3487,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3527,7 +3527,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3567,7 +3567,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3607,7 +3607,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3647,7 +3647,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3687,7 +3687,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3727,7 +3727,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3767,7 +3767,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3807,7 +3807,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3847,7 +3847,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3887,7 +3887,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3927,7 +3927,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -3967,7 +3967,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -4007,7 +4007,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -4047,7 +4047,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -4087,7 +4087,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -4127,7 +4127,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -4167,7 +4167,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -4207,7 +4207,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -4247,7 +4247,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -4287,7 +4287,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -4327,7 +4327,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -4367,7 +4367,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6 + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6 Content-Type: application/http @@ -4407,343 +4407,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08dd9574-67fd-11e7-b539-b8e8564491f6-- + --changeset_3b45d8ba-68f7-11e7-9f08-b8e8564491f6-- - --batch_08dd94fa-67fd-11e7-a341-b8e8564491f6--' + --batch_3b45d83a-68f7-11e7-a649-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87461'] - Content-Type: [multipart/mixed; boundary=batch_08dd94fa-67fd-11e7-a341-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3b45d83a-68f7-11e7-a649-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [08ddb28c-67fd-11e7-ae8c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3b45efdc-68f7-11e7-a41e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:51 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_17bc0f02-e7c6-42ed-9ec5-84992f46b8d3\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ - \n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\nContent-Type:\ + body: {string: "--batchresponse_c90ee4ee-b04a-47a8-b8e8-d5b23e7d2ff4\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ + \n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1183068Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.9679174Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.968919Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.968919Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.968919Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.968919Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.968919Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.968919Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.968919Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.968919Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch1-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.1193058Z'\"\r\n\r\n\r\n--changesetresponse_15082afb-16bf-4938-9e0c-e65d5b5cef6a--\r\ - \n--batchresponse_17bc0f02-e7c6-42ed-9ec5-84992f46b8d3--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A51.968919Z'\"\r\n\r\n\r\n--changesetresponse_3f0f661e-e607-4120-9dd0-1cf0fb428343--\r\ + \n--batchresponse_c90ee4ee-b04a-47a8-b8e8-d5b23e7d2ff4--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_17bc0f02-e7c6-42ed-9ec5-84992f46b8d3] - Date: ['Thu, 13 Jul 2017 18:56:52 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_c90ee4ee-b04a-47a8-b8e8-d5b23e7d2ff4] + Date: ['Sat, 15 Jul 2017 00:47:51 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a29e-0002-0043-2909-fc7e3d000000] + x-ms-request-id: [40d29d28-0002-011b-5903-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_08f63212-67fd-11e7-b152-b8e8564491f6 + body: '--batch_3b590ca2-68f7-11e7-b643-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -4783,7 +4783,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -4823,7 +4823,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -4863,7 +4863,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -4903,7 +4903,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -4943,7 +4943,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -4983,7 +4983,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5023,7 +5023,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5063,7 +5063,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5103,7 +5103,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5143,7 +5143,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5183,7 +5183,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5223,7 +5223,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5263,7 +5263,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5303,7 +5303,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5343,7 +5343,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5383,7 +5383,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5423,7 +5423,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5463,7 +5463,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5503,7 +5503,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5543,7 +5543,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5583,7 +5583,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5623,7 +5623,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5663,7 +5663,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5703,7 +5703,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5743,7 +5743,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5783,7 +5783,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5823,7 +5823,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5863,7 +5863,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5903,7 +5903,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5943,7 +5943,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -5983,7 +5983,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6023,7 +6023,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6063,7 +6063,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6103,7 +6103,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6143,7 +6143,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6183,7 +6183,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6223,7 +6223,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6263,7 +6263,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6303,7 +6303,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6343,7 +6343,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6383,7 +6383,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6423,7 +6423,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6463,7 +6463,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6503,7 +6503,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6543,7 +6543,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6583,7 +6583,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6623,7 +6623,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6663,7 +6663,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6703,7 +6703,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6 + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6 Content-Type: application/http @@ -6743,343 +6743,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_08f6329e-67fd-11e7-ac51-b8e8564491f6-- + --changeset_3b590d24-68f7-11e7-a6d2-b8e8564491f6-- - --batch_08f63212-67fd-11e7-b152-b8e8564491f6--' + --batch_3b590ca2-68f7-11e7-b643-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87461'] - Content-Type: [multipart/mixed; boundary=batch_08f63212-67fd-11e7-b152-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3b590ca2-68f7-11e7-b643-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [08f6513e-67fd-11e7-b103-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3b5924a8-68f7-11e7-8d48-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:51 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_3d2715ab-6092-48d7-8071-838e0309ecbf\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ - \n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\nContent-Type:\ + body: {string: "--batchresponse_2e60ba8b-715c-46f2-885d-db0439dd1a4a\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ + \n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0900032Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0900032Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0900032Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0900032Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0900032Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0900032Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0900032Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0900032Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0900032Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2634088Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch2-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.2644095Z'\"\r\n\r\n\r\n--changesetresponse_6d8e941a-9b03-442b-a3ef-0d7dbad6137a--\r\ - \n--batchresponse_3d2715ab-6092-48d7-8071-838e0309ecbf--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.0910039Z'\"\r\n\r\n\r\n--changesetresponse_9d55d840-f918-4a73-9b96-95e03a6d7edc--\r\ + \n--batchresponse_2e60ba8b-715c-46f2-885d-db0439dd1a4a--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_3d2715ab-6092-48d7-8071-838e0309ecbf] - Date: ['Thu, 13 Jul 2017 18:56:52 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_2e60ba8b-715c-46f2-885d-db0439dd1a4a] + Date: ['Sat, 15 Jul 2017 00:47:51 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a2b6-0002-0043-3f09-fc7e3d000000] + x-ms-request-id: [40d29d48-0002-011b-7903-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_090b5806-67fd-11e7-be61-b8e8564491f6 + body: '--batch_3b6e0328-68f7-11e7-b8da-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7119,7 +7119,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7159,7 +7159,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7199,7 +7199,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7239,7 +7239,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7279,7 +7279,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7319,7 +7319,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7359,7 +7359,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7399,7 +7399,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7439,7 +7439,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7479,7 +7479,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7519,7 +7519,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7559,7 +7559,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7599,7 +7599,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7639,7 +7639,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7679,7 +7679,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7719,7 +7719,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7759,7 +7759,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7799,7 +7799,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7839,7 +7839,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7879,7 +7879,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7919,7 +7919,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7959,7 +7959,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -7999,7 +7999,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8039,7 +8039,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8079,7 +8079,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8119,7 +8119,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8159,7 +8159,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8199,7 +8199,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8239,7 +8239,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8279,7 +8279,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8319,7 +8319,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8359,7 +8359,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8399,7 +8399,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8439,7 +8439,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8479,7 +8479,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8519,7 +8519,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8559,7 +8559,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8599,7 +8599,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8639,7 +8639,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8679,7 +8679,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8719,7 +8719,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8759,7 +8759,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8799,7 +8799,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8839,7 +8839,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8879,7 +8879,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8919,7 +8919,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8959,7 +8959,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -8999,7 +8999,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -9039,7 +9039,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6 + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6 Content-Type: application/http @@ -9079,343 +9079,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_090b5868-67fd-11e7-8b3f-b8e8564491f6-- + --changeset_3b6e0398-68f7-11e7-9f4a-b8e8564491f6-- - --batch_090b5806-67fd-11e7-be61-b8e8564491f6--' + --batch_3b6e0328-68f7-11e7-b8da-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87461'] - Content-Type: [multipart/mixed; boundary=batch_090b5806-67fd-11e7-be61-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3b6e0328-68f7-11e7-b8da-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [090b6ce2-67fd-11e7-add3-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3b6e1a18-68f7-11e7-b4cb-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:52 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_d4aeb67f-0c42-4ae2-b469-98099d9d7c4d\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ - \n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\nContent-Type:\ + body: {string: "--batchresponse_d7e37ef3-41de-4bc3-b969-8f6b7e8cf3c9\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ + \n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.207085Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch3-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.3754891Z'\"\r\n\r\n\r\n--changesetresponse_201218ec-3347-465d-935a-096cc771579a--\r\ - \n--batchresponse_d4aeb67f-0c42-4ae2-b469-98099d9d7c4d--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.2080857Z'\"\r\n\r\n\r\n--changesetresponse_1c72bb9e-3a6c-4d77-a636-81294e807236--\r\ + \n--batchresponse_d7e37ef3-41de-4bc3-b969-8f6b7e8cf3c9--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_d4aeb67f-0c42-4ae2-b469-98099d9d7c4d] - Date: ['Thu, 13 Jul 2017 18:56:52 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_d7e37ef3-41de-4bc3-b969-8f6b7e8cf3c9] + Date: ['Sat, 15 Jul 2017 00:47:51 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a2c2-0002-0043-4909-fc7e3d000000] + x-ms-request-id: [40d29d65-0002-011b-1503-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_091c42a4-67fd-11e7-b727-b8e8564491f6 + body: '--batch_3b7d7880-68f7-11e7-8faa-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -9455,7 +9455,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -9495,7 +9495,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -9535,7 +9535,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -9575,7 +9575,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -9615,7 +9615,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -9655,7 +9655,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -9695,7 +9695,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -9735,7 +9735,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -9775,7 +9775,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -9815,7 +9815,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -9855,7 +9855,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -9895,7 +9895,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -9935,7 +9935,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -9975,7 +9975,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10015,7 +10015,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10055,7 +10055,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10095,7 +10095,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10135,7 +10135,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10175,7 +10175,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10215,7 +10215,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10255,7 +10255,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10295,7 +10295,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10335,7 +10335,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10375,7 +10375,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10415,7 +10415,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10455,7 +10455,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10495,7 +10495,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10535,7 +10535,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10575,7 +10575,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10615,7 +10615,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10655,7 +10655,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10695,7 +10695,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10735,7 +10735,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10775,7 +10775,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10815,7 +10815,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10855,7 +10855,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10895,7 +10895,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10935,7 +10935,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -10975,7 +10975,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -11015,7 +11015,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -11055,7 +11055,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -11095,7 +11095,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -11135,7 +11135,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -11175,7 +11175,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -11215,7 +11215,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -11255,7 +11255,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -11295,7 +11295,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -11335,7 +11335,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -11375,7 +11375,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6 + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6 Content-Type: application/http @@ -11415,343 +11415,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_091c431c-67fd-11e7-a441-b8e8564491f6-- + --changeset_3b7d78f8-68f7-11e7-b486-b8e8564491f6-- - --batch_091c42a4-67fd-11e7-b727-b8e8564491f6--' + --batch_3b7d7880-68f7-11e7-8faa-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87461'] - Content-Type: [multipart/mixed; boundary=batch_091c42a4-67fd-11e7-b727-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3b7d7880-68f7-11e7-8faa-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [091c5d18-67fd-11e7-850d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3b7d8f98-68f7-11e7-9ebc-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:52 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_1c4cd369-3f1f-4c71-8b06-e1f3584963d3\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ - \n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\nContent-Type:\ + body: {string: "--batchresponse_c789faf1-943a-4dcc-b16b-403acf401538\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ + \n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4835666Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4835666Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4835666Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4835666Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4835666Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4835666Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4835666Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4835666Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4835666Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3121588Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4845678Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4855681Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4855681Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4855681Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4855681Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4855681Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4855681Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4855681Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4855681Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4855681Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4855681Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4855681Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4855681Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch4-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.4855681Z'\"\r\n\r\n\r\n--changesetresponse_19a54426-b66f-47b0-828a-3660451b29f0--\r\ - \n--batchresponse_1c4cd369-3f1f-4c71-8b06-e1f3584963d3--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.3131595Z'\"\r\n\r\n\r\n--changesetresponse_db97fd75-25ff-411e-b80e-9d21df62aa1c--\r\ + \n--batchresponse_c789faf1-943a-4dcc-b16b-403acf401538--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_1c4cd369-3f1f-4c71-8b06-e1f3584963d3] - Date: ['Thu, 13 Jul 2017 18:56:52 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_c789faf1-943a-4dcc-b16b-403acf401538] + Date: ['Sat, 15 Jul 2017 00:47:51 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a2dc-0002-0043-6109-fc7e3d000000] + x-ms-request-id: [40d29d80-0002-011b-3003-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_092e2636-67fd-11e7-accc-b8e8564491f6 + body: '--batch_3b8d512e-68f7-11e7-b49f-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -11791,7 +11791,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -11831,7 +11831,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -11871,7 +11871,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -11911,7 +11911,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -11951,7 +11951,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -11991,7 +11991,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12031,7 +12031,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12071,7 +12071,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12111,7 +12111,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12151,7 +12151,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12191,7 +12191,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12231,7 +12231,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12271,7 +12271,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12311,7 +12311,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12351,7 +12351,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12391,7 +12391,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12431,7 +12431,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12471,7 +12471,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12511,7 +12511,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12551,7 +12551,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12591,7 +12591,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12631,7 +12631,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12671,7 +12671,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12711,7 +12711,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12751,7 +12751,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12791,7 +12791,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12831,7 +12831,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12871,7 +12871,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12911,7 +12911,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12951,7 +12951,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -12991,7 +12991,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13031,7 +13031,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13071,7 +13071,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13111,7 +13111,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13151,7 +13151,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13191,7 +13191,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13231,7 +13231,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13271,7 +13271,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13311,7 +13311,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13351,7 +13351,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13391,7 +13391,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13431,7 +13431,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13471,7 +13471,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13511,7 +13511,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13551,7 +13551,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13591,7 +13591,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13631,7 +13631,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13671,7 +13671,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13711,7 +13711,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6 + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6 Content-Type: application/http @@ -13751,343 +13751,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_092e26a4-67fd-11e7-881b-b8e8564491f6-- + --changeset_3b8d51d8-68f7-11e7-8d5b-b8e8564491f6-- - --batch_092e2636-67fd-11e7-accc-b8e8564491f6--' + --batch_3b8d512e-68f7-11e7-b49f-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87461'] - Content-Type: [multipart/mixed; boundary=batch_092e2636-67fd-11e7-accc-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3b8d512e-68f7-11e7-b49f-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [092e3ea8-67fd-11e7-8fcc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3b8d6c40-68f7-11e7-85c6-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:52 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_465ddcd6-7fb7-47e8-ae03-26f8245c4ec7\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ - \n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\nContent-Type:\ + body: {string: "--batchresponse_128bc7be-a05c-410b-87c3-edc56df01d20\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ + \n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6206654Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6206654Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6206654Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6206654Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6206654Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6206654Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6206654Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6206654Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6206654Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6206654Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6206654Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6206654Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6206654Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4122279Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4132286Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4132286Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4132286Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4132286Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6216657Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4132286Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6226668Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4132286Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch5-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.6226668Z'\"\r\n\r\n\r\n--changesetresponse_c0ef8aa6-31db-4d8d-b697-55ca0db6a808--\r\ - \n--batchresponse_465ddcd6-7fb7-47e8-ae03-26f8245c4ec7--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.4132286Z'\"\r\n\r\n\r\n--changesetresponse_d2dc8856-a9f5-4854-bdcc-b30324685801--\r\ + \n--batchresponse_128bc7be-a05c-410b-87c3-edc56df01d20--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_465ddcd6-7fb7-47e8-ae03-26f8245c4ec7] - Date: ['Thu, 13 Jul 2017 18:56:52 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_128bc7be-a05c-410b-87c3-edc56df01d20] + Date: ['Sat, 15 Jul 2017 00:47:51 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a2ec-0002-0043-6f09-fc7e3d000000] + x-ms-request-id: [40d29da9-0002-011b-5303-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_0945e2f8-67fd-11e7-ad29-b8e8564491f6 + body: '--batch_3b9c6c40-68f7-11e7-a0b7-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14127,7 +14127,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14167,7 +14167,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14207,7 +14207,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14247,7 +14247,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14287,7 +14287,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14327,7 +14327,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14367,7 +14367,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14407,7 +14407,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14447,7 +14447,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14487,7 +14487,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14527,7 +14527,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14567,7 +14567,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14607,7 +14607,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14647,7 +14647,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14687,7 +14687,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14727,7 +14727,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14767,7 +14767,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14807,7 +14807,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14847,7 +14847,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14887,7 +14887,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14927,7 +14927,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -14967,7 +14967,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15007,7 +15007,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15047,7 +15047,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15087,7 +15087,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15127,7 +15127,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15167,7 +15167,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15207,7 +15207,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15247,7 +15247,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15287,7 +15287,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15327,7 +15327,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15367,7 +15367,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15407,7 +15407,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15447,7 +15447,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15487,7 +15487,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15527,7 +15527,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15567,7 +15567,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15607,7 +15607,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15647,7 +15647,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15687,7 +15687,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15727,7 +15727,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15767,7 +15767,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15807,7 +15807,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15847,7 +15847,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15887,7 +15887,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15927,7 +15927,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -15967,7 +15967,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -16007,7 +16007,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -16047,7 +16047,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6 + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6 Content-Type: application/http @@ -16087,343 +16087,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0945e370-67fd-11e7-86b8-b8e8564491f6-- + --changeset_3b9c6cae-68f7-11e7-8df3-b8e8564491f6-- - --batch_0945e2f8-67fd-11e7-ad29-b8e8564491f6--' + --batch_3b9c6c40-68f7-11e7-a0b7-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87461'] - Content-Type: [multipart/mixed; boundary=batch_0945e2f8-67fd-11e7-ad29-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3b9c6c40-68f7-11e7-a0b7-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [09460238-67fd-11e7-9cd0-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3b9c8676-68f7-11e7-8270-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:52 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_fa8cf223-d1d3-4866-9a6a-8f8cd0aafd42\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ - \n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\nContent-Type:\ + body: {string: "--batchresponse_09a41a53-5657-40c7-a443-2c1305326c76\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ + \n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.770773Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.770773Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.770773Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.770773Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.770773Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.770773Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.770773Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.770773Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7717737Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch6-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.7727762Z'\"\r\n\r\n\r\n--changesetresponse_6051417e-0ace-4c71-aba6-1d33fd669893--\r\ - \n--batchresponse_fa8cf223-d1d3-4866-9a6a-8f8cd0aafd42--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.5143014Z'\"\r\n\r\n\r\n--changesetresponse_27ce119e-37ca-4867-bcc8-1e324a7a93f9--\r\ + \n--batchresponse_09a41a53-5657-40c7-a443-2c1305326c76--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_fa8cf223-d1d3-4866-9a6a-8f8cd0aafd42] - Date: ['Thu, 13 Jul 2017 18:56:52 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_09a41a53-5657-40c7-a443-2c1305326c76] + Date: ['Sat, 15 Jul 2017 00:47:51 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a30b-0002-0043-0d09-fc7e3d000000] + x-ms-request-id: [40d29dca-0002-011b-7103-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_0958f708-67fd-11e7-b272-b8e8564491f6 + body: '--batch_3babec68-68f7-11e7-b80b-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -16463,7 +16463,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -16503,7 +16503,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -16543,7 +16543,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -16583,7 +16583,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -16623,7 +16623,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -16663,7 +16663,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -16703,7 +16703,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -16743,7 +16743,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -16783,7 +16783,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -16823,7 +16823,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -16863,7 +16863,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -16903,7 +16903,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -16943,7 +16943,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -16983,7 +16983,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17023,7 +17023,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17063,7 +17063,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17103,7 +17103,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17143,7 +17143,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17183,7 +17183,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17223,7 +17223,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17263,7 +17263,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17303,7 +17303,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17343,7 +17343,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17383,7 +17383,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17423,7 +17423,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17463,7 +17463,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17503,7 +17503,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17543,7 +17543,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17583,7 +17583,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17623,7 +17623,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17663,7 +17663,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17703,7 +17703,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17743,7 +17743,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17783,7 +17783,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17823,7 +17823,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17863,7 +17863,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17903,7 +17903,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17943,7 +17943,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -17983,7 +17983,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -18023,7 +18023,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -18063,7 +18063,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -18103,7 +18103,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -18143,7 +18143,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -18183,7 +18183,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -18223,7 +18223,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -18263,7 +18263,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -18303,7 +18303,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -18343,7 +18343,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -18383,7 +18383,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6 + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6 Content-Type: application/http @@ -18423,343 +18423,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0958f776-67fd-11e7-86fe-b8e8564491f6-- + --changeset_3babecd8-68f7-11e7-8f2e-b8e8564491f6-- - --batch_0958f708-67fd-11e7-b272-b8e8564491f6--' + --batch_3babec68-68f7-11e7-b80b-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87461'] - Content-Type: [multipart/mixed; boundary=batch_0958f708-67fd-11e7-b272-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3babec68-68f7-11e7-b80b-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [09591166-67fd-11e7-a685-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3bac0470-68f7-11e7-8848-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:52 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_9c276b68-aaf7-49fa-be07-7485a202a3c3\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ - \n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\nContent-Type:\ + body: {string: "--batchresponse_6b6027c6-0b91-40c6-9918-4b276ca4c96e\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ + \n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6153694Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6153694Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6153694Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6153694Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6153694Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6153694Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6153694Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6153694Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6153694Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8788505Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8798512Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8798512Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8798512Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch7-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.8798512Z'\"\r\n\r\n\r\n--changesetresponse_7f5b6605-624d-4b47-8250-1e09b8450ee1--\r\ - \n--batchresponse_9c276b68-aaf7-49fa-be07-7485a202a3c3--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.6163705Z'\"\r\n\r\n\r\n--changesetresponse_ef374216-faec-4c8b-99f1-23edcf2e764f--\r\ + \n--batchresponse_6b6027c6-0b91-40c6-9918-4b276ca4c96e--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_9c276b68-aaf7-49fa-be07-7485a202a3c3] - Date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_6b6027c6-0b91-40c6-9918-4b276ca4c96e] + Date: ['Sat, 15 Jul 2017 00:47:51 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a316-0002-0043-1809-fc7e3d000000] + x-ms-request-id: [40d29ded-0002-011b-1203-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_0968a964-67fd-11e7-a805-b8e8564491f6 + body: '--batch_3bbc0582-68f7-11e7-b5e0-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -18799,7 +18799,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -18839,7 +18839,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -18879,7 +18879,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -18919,7 +18919,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -18959,7 +18959,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -18999,7 +18999,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19039,7 +19039,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19079,7 +19079,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19119,7 +19119,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19159,7 +19159,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19199,7 +19199,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19239,7 +19239,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19279,7 +19279,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19319,7 +19319,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19359,7 +19359,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19399,7 +19399,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19439,7 +19439,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19479,7 +19479,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19519,7 +19519,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19559,7 +19559,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19599,7 +19599,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19639,7 +19639,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19679,7 +19679,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19719,7 +19719,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19759,7 +19759,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19799,7 +19799,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19839,7 +19839,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19879,7 +19879,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19919,7 +19919,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19959,7 +19959,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -19999,7 +19999,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20039,7 +20039,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20079,7 +20079,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20119,7 +20119,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20159,7 +20159,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20199,7 +20199,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20239,7 +20239,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20279,7 +20279,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20319,7 +20319,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20359,7 +20359,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20399,7 +20399,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20439,7 +20439,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20479,7 +20479,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20519,7 +20519,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20559,7 +20559,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20599,7 +20599,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20639,7 +20639,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20679,7 +20679,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20719,7 +20719,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6 + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6 Content-Type: application/http @@ -20759,343 +20759,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0968a9c8-67fd-11e7-bfe4-b8e8564491f6-- + --changeset_3bbc05fa-68f7-11e7-845c-b8e8564491f6-- - --batch_0968a964-67fd-11e7-a805-b8e8564491f6--' + --batch_3bbc0582-68f7-11e7-b5e0-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87461'] - Content-Type: [multipart/mixed; boundary=batch_0968a964-67fd-11e7-a805-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3bbc0582-68f7-11e7-b5e0-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0968c3ae-67fd-11e7-8cad-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3bbc1d62-68f7-11e7-ae10-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:52 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_71256464-6019-419a-9653-9071568a1d6a\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ - \n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\nContent-Type:\ + body: {string: "--batchresponse_01b0a89f-739a-4f36-ba7e-e6af2f5d5e3e\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ + \n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9829247Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7184419Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9839254Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch8-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A53.9849261Z'\"\r\n\r\n\r\n--changesetresponse_735c86f7-abce-412f-8e5f-39e58118e126--\r\ - \n--batchresponse_71256464-6019-419a-9653-9071568a1d6a--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.7194426Z'\"\r\n\r\n\r\n--changesetresponse_084d396e-1b26-42b8-8cda-654ea52323a9--\r\ + \n--batchresponse_01b0a89f-739a-4f36-ba7e-e6af2f5d5e3e--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_71256464-6019-419a-9653-9071568a1d6a] - Date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_01b0a89f-739a-4f36-ba7e-e6af2f5d5e3e] + Date: ['Sat, 15 Jul 2017 00:47:51 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a321-0002-0043-2209-fc7e3d000000] + x-ms-request-id: [40d29e0a-0002-011b-2f03-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_09790e9e-67fd-11e7-b9a5-b8e8564491f6 + body: '--batch_3bcb3034-68f7-11e7-a464-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21135,7 +21135,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21175,7 +21175,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21215,7 +21215,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21255,7 +21255,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21295,7 +21295,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21335,7 +21335,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21375,7 +21375,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21415,7 +21415,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21455,7 +21455,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21495,7 +21495,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21535,7 +21535,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21575,7 +21575,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21615,7 +21615,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21655,7 +21655,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21695,7 +21695,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21735,7 +21735,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21775,7 +21775,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21815,7 +21815,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21855,7 +21855,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21895,7 +21895,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21935,7 +21935,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -21975,7 +21975,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22015,7 +22015,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22055,7 +22055,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22095,7 +22095,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22135,7 +22135,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22175,7 +22175,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22215,7 +22215,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22255,7 +22255,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22295,7 +22295,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22335,7 +22335,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22375,7 +22375,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22415,7 +22415,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22455,7 +22455,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22495,7 +22495,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22535,7 +22535,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22575,7 +22575,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22615,7 +22615,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22655,7 +22655,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22695,7 +22695,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22735,7 +22735,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22775,7 +22775,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22815,7 +22815,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22855,7 +22855,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22895,7 +22895,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22935,7 +22935,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -22975,7 +22975,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -23015,7 +23015,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -23055,7 +23055,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6 + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6 Content-Type: application/http @@ -23095,343 +23095,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09790f28-67fd-11e7-a1a1-b8e8564491f6-- + --changeset_3bcb30ac-68f7-11e7-8850-b8e8564491f6-- - --batch_09790e9e-67fd-11e7-b9a5-b8e8564491f6--' + --batch_3bcb3034-68f7-11e7-a464-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87461'] - Content-Type: [multipart/mixed; boundary=batch_09790e9e-67fd-11e7-b9a5-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3bcb3034-68f7-11e7-a464-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [09792f5a-67fd-11e7-ae86-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3bcb48da-68f7-11e7-9b7e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:52 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_f33bcda1-e150-4e1a-837e-60dba78f68ff\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ - \n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\nContent-Type:\ + body: {string: "--batchresponse_fb1fb529-542b-4388-994a-4f4c83bfe819\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ + \n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8185122Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8185122Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8185122Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8185122Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8185122Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0970065Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0980077Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0980077Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0980077Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0980077Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch9-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.0980077Z'\"\r\n\r\n\r\n--changesetresponse_dc263eb8-cc0c-4c9b-8b38-dd63f7abbe48--\r\ - \n--batchresponse_f33bcda1-e150-4e1a-837e-60dba78f68ff--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.8195125Z'\"\r\n\r\n\r\n--changesetresponse_67328f40-b23c-49bf-bdd9-c13506683749--\r\ + \n--batchresponse_fb1fb529-542b-4388-994a-4f4c83bfe819--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_f33bcda1-e150-4e1a-837e-60dba78f68ff] - Date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_fb1fb529-542b-4388-994a-4f4c83bfe819] + Date: ['Sat, 15 Jul 2017 00:47:52 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a32d-0002-0043-2d09-fc7e3d000000] + x-ms-request-id: [40d29e22-0002-011b-4703-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_098b9598-67fd-11e7-8d56-b8e8564491f6 + body: '--batch_3bdb270a-68f7-11e7-8cef-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -23471,7 +23471,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -23511,7 +23511,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -23551,7 +23551,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -23591,7 +23591,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -23631,7 +23631,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -23671,7 +23671,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -23711,7 +23711,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -23751,7 +23751,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -23791,7 +23791,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -23831,7 +23831,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -23871,7 +23871,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -23911,7 +23911,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -23951,7 +23951,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -23991,7 +23991,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24031,7 +24031,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24071,7 +24071,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24111,7 +24111,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24151,7 +24151,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24191,7 +24191,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24231,7 +24231,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24271,7 +24271,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24311,7 +24311,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24351,7 +24351,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24391,7 +24391,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24431,7 +24431,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24471,7 +24471,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24511,7 +24511,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24551,7 +24551,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24591,7 +24591,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24631,7 +24631,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24671,7 +24671,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24711,7 +24711,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24751,7 +24751,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24791,7 +24791,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24831,7 +24831,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24871,7 +24871,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24911,7 +24911,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24951,7 +24951,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -24991,7 +24991,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -25031,7 +25031,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -25071,7 +25071,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -25111,7 +25111,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -25151,7 +25151,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -25191,7 +25191,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -25231,7 +25231,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -25271,7 +25271,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -25311,7 +25311,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -25351,7 +25351,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -25391,7 +25391,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6 + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6 Content-Type: application/http @@ -25431,343 +25431,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_098b960c-67fd-11e7-97b5-b8e8564491f6-- + --changeset_3bdb2782-68f7-11e7-8928-b8e8564491f6-- - --batch_098b9598-67fd-11e7-8d56-b8e8564491f6--' + --batch_3bdb270a-68f7-11e7-8cef-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87511'] - Content-Type: [multipart/mixed; boundary=batch_098b9598-67fd-11e7-8d56-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3bdb270a-68f7-11e7-8cef-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [098baf7a-67fd-11e7-8c06-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3bdb3f74-68f7-11e7-97a4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:52 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_050e3a6d-0496-4cca-a24b-4bf49b932dd1\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ - \n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\nContent-Type:\ + body: {string: "--batchresponse_79a596c9-c8b2-4933-90a0-24e79fc8888b\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ + \n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2100876Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2100876Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2100876Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2100876Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2100876Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2100876Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2100876Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2100876Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2100876Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2100876Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2100876Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2100876Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2100876Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.2110883Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.212089Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch10-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.212089Z'\"\r\n\r\n\r\n--changesetresponse_d4087418-e8b3-46f8-87d7-31d62298bd09--\r\ - \n--batchresponse_050e3a6d-0496-4cca-a24b-4bf49b932dd1--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A52.9245859Z'\"\r\n\r\n\r\n--changesetresponse_54f78322-65a2-4ff8-88fd-b031ad22e81f--\r\ + \n--batchresponse_79a596c9-c8b2-4933-90a0-24e79fc8888b--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_050e3a6d-0496-4cca-a24b-4bf49b932dd1] - Date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_79a596c9-c8b2-4933-90a0-24e79fc8888b] + Date: ['Sat, 15 Jul 2017 00:47:52 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a335-0002-0043-3509-fc7e3d000000] + x-ms-request-id: [40d29e37-0002-011b-5c03-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_099be6e4-67fd-11e7-96f0-b8e8564491f6 + body: '--batch_3beba814-68f7-11e7-b9d1-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -25807,7 +25807,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -25847,7 +25847,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -25887,7 +25887,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -25927,7 +25927,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -25967,7 +25967,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26007,7 +26007,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26047,7 +26047,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26087,7 +26087,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26127,7 +26127,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26167,7 +26167,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26207,7 +26207,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26247,7 +26247,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26287,7 +26287,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26327,7 +26327,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26367,7 +26367,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26407,7 +26407,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26447,7 +26447,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26487,7 +26487,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26527,7 +26527,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26567,7 +26567,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26607,7 +26607,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26647,7 +26647,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26687,7 +26687,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26727,7 +26727,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26767,7 +26767,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26807,7 +26807,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26847,7 +26847,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26887,7 +26887,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26927,7 +26927,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -26967,7 +26967,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27007,7 +27007,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27047,7 +27047,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27087,7 +27087,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27127,7 +27127,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27167,7 +27167,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27207,7 +27207,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27247,7 +27247,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27287,7 +27287,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27327,7 +27327,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27367,7 +27367,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27407,7 +27407,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27447,7 +27447,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27487,7 +27487,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27527,7 +27527,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27567,7 +27567,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27607,7 +27607,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27647,7 +27647,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27687,7 +27687,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27727,7 +27727,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6 + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6 Content-Type: application/http @@ -27767,343 +27767,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_099be75c-67fd-11e7-82e9-b8e8564491f6-- + --changeset_3beba88c-68f7-11e7-a6a0-b8e8564491f6-- - --batch_099be6e4-67fd-11e7-96f0-b8e8564491f6--' + --batch_3beba814-68f7-11e7-b9d1-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87511'] - Content-Type: [multipart/mixed; boundary=batch_099be6e4-67fd-11e7-96f0-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3beba814-68f7-11e7-b9d1-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [099c003e-67fd-11e7-a16e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3bebc0e2-68f7-11e7-a6d3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:52 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_eb56bbb5-34f7-46ed-b9a8-b9f5ac8d6eb7\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ - \n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\nContent-Type:\ + body: {string: "--batchresponse_6fb68e59-e874-4a16-bda5-68f798f7786f\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ + \n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3171648Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3171648Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3171648Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3171648Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3171648Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3171648Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3171648Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3171648Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3171648Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3171648Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3171648Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3171648Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3171648Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch11-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.3181655Z'\"\r\n\r\n\r\n--changesetresponse_92e84554-3ec6-4dca-bc1f-6a291a3cb129--\r\ - \n--batchresponse_eb56bbb5-34f7-46ed-b9a8-b9f5ac8d6eb7--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.0296593Z'\"\r\n\r\n\r\n--changesetresponse_3a9f2bae-5e6d-4666-b7de-9ee9d6e2b02c--\r\ + \n--batchresponse_6fb68e59-e874-4a16-bda5-68f798f7786f--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_eb56bbb5-34f7-46ed-b9a8-b9f5ac8d6eb7] - Date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_6fb68e59-e874-4a16-bda5-68f798f7786f] + Date: ['Sat, 15 Jul 2017 00:47:52 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a341-0002-0043-4109-fc7e3d000000] + x-ms-request-id: [40d29e63-0002-011b-0703-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_09ac91b0-67fd-11e7-ae62-b8e8564491f6 + body: '--batch_3bfa8e88-68f7-11e7-b85c-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28143,7 +28143,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28183,7 +28183,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28223,7 +28223,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28263,7 +28263,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28303,7 +28303,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28343,7 +28343,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28383,7 +28383,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28423,7 +28423,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28463,7 +28463,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28503,7 +28503,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28543,7 +28543,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28583,7 +28583,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28623,7 +28623,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28663,7 +28663,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28703,7 +28703,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28743,7 +28743,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28783,7 +28783,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28823,7 +28823,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28863,7 +28863,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28903,7 +28903,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28943,7 +28943,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -28983,7 +28983,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29023,7 +29023,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29063,7 +29063,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29103,7 +29103,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29143,7 +29143,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29183,7 +29183,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29223,7 +29223,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29263,7 +29263,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29303,7 +29303,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29343,7 +29343,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29383,7 +29383,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29423,7 +29423,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29463,7 +29463,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29503,7 +29503,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29543,7 +29543,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29583,7 +29583,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29623,7 +29623,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29663,7 +29663,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29703,7 +29703,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29743,7 +29743,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29783,7 +29783,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29823,7 +29823,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29863,7 +29863,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29903,7 +29903,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29943,7 +29943,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -29983,7 +29983,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -30023,7 +30023,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -30063,7 +30063,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6 + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6 Content-Type: application/http @@ -30103,343 +30103,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09ac9214-67fd-11e7-abf4-b8e8564491f6-- + --changeset_3bfa8f00-68f7-11e7-8503-b8e8564491f6-- - --batch_09ac91b0-67fd-11e7-ae62-b8e8564491f6--' + --batch_3bfa8e88-68f7-11e7-b85c-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87511'] - Content-Type: [multipart/mixed; boundary=batch_09ac91b0-67fd-11e7-ae62-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3bfa8e88-68f7-11e7-b85c-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [09acaae2-67fd-11e7-9c08-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3bfaa7b0-68f7-11e7-8c35-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:53 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_f09bf0d1-b81c-4384-9fde-62cfe0fddf3c\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ - \n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\nContent-Type:\ + body: {string: "--batchresponse_02fb6144-b9b7-4bdb-91a5-a08799863f73\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ + \n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.428244Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.428244Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.428244Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.428244Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.428244Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.428244Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.428244Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.428244Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1267271Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4292452Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch12-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.4302455Z'\"\r\n\r\n\r\n--changesetresponse_7f0c515a-5d1b-49d3-b8d6-d7925f6b29f1--\r\ - \n--batchresponse_f09bf0d1-b81c-4384-9fde-62cfe0fddf3c--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.1277278Z'\"\r\n\r\n\r\n--changesetresponse_d03fd306-71b8-4c3c-b1f0-7af886ab6e5c--\r\ + \n--batchresponse_02fb6144-b9b7-4bdb-91a5-a08799863f73--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_f09bf0d1-b81c-4384-9fde-62cfe0fddf3c] - Date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_02fb6144-b9b7-4bdb-91a5-a08799863f73] + Date: ['Sat, 15 Jul 2017 00:47:52 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a347-0002-0043-4709-fc7e3d000000] + x-ms-request-id: [40d29e79-0002-011b-1d03-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_09c25d62-67fd-11e7-b970-b8e8564491f6 + body: '--batch_3c0921b4-68f7-11e7-b7eb-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -30479,7 +30479,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -30519,7 +30519,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -30559,7 +30559,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -30599,7 +30599,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -30639,7 +30639,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -30679,7 +30679,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -30719,7 +30719,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -30759,7 +30759,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -30799,7 +30799,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -30839,7 +30839,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -30879,7 +30879,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -30919,7 +30919,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -30959,7 +30959,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -30999,7 +30999,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31039,7 +31039,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31079,7 +31079,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31119,7 +31119,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31159,7 +31159,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31199,7 +31199,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31239,7 +31239,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31279,7 +31279,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31319,7 +31319,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31359,7 +31359,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31399,7 +31399,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31439,7 +31439,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31479,7 +31479,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31519,7 +31519,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31559,7 +31559,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31599,7 +31599,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31639,7 +31639,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31679,7 +31679,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31719,7 +31719,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31759,7 +31759,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31799,7 +31799,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31839,7 +31839,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31879,7 +31879,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31919,7 +31919,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31959,7 +31959,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -31999,7 +31999,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -32039,7 +32039,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -32079,7 +32079,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -32119,7 +32119,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -32159,7 +32159,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -32199,7 +32199,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -32239,7 +32239,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -32279,7 +32279,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -32319,7 +32319,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -32359,7 +32359,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -32399,7 +32399,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6 + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6 Content-Type: application/http @@ -32439,343 +32439,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09c25dd8-67fd-11e7-8ff9-b8e8564491f6-- + --changeset_3c09222c-68f7-11e7-9ce0-b8e8564491f6-- - --batch_09c25d62-67fd-11e7-b970-b8e8564491f6--' + --batch_3c0921b4-68f7-11e7-b7eb-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87511'] - Content-Type: [multipart/mixed; boundary=batch_09c25d62-67fd-11e7-b970-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3c0921b4-68f7-11e7-b7eb-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [09c27782-67fd-11e7-9e6a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3c093c3a-68f7-11e7-af36-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:53 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_f612405c-8acc-4fe0-8d2b-801234b03d05\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ - \n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\nContent-Type:\ + body: {string: "--batchresponse_8fa47593-ae6b-45b3-9ee0-0a63696007e6\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ + \n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch13-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.5733485Z'\"\r\n\r\n\r\n--changesetresponse_c73dc245-6bd6-42ad-9c93-b47cda143354--\r\ - \n--batchresponse_f612405c-8acc-4fe0-8d2b-801234b03d05--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.2247961Z'\"\r\n\r\n\r\n--changesetresponse_a96349c5-b737-4d88-bbd5-12d78e2e4dcf--\r\ + \n--batchresponse_8fa47593-ae6b-45b3-9ee0-0a63696007e6--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_f612405c-8acc-4fe0-8d2b-801234b03d05] - Date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_8fa47593-ae6b-45b3-9ee0-0a63696007e6] + Date: ['Sat, 15 Jul 2017 00:47:52 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a362-0002-0043-6209-fc7e3d000000] + x-ms-request-id: [40d29e9c-0002-011b-3603-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_09d2fbfa-67fd-11e7-a2d5-b8e8564491f6 + body: '--batch_3c189df6-68f7-11e7-9903-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -32815,7 +32815,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -32855,7 +32855,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -32895,7 +32895,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -32935,7 +32935,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -32975,7 +32975,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33015,7 +33015,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33055,7 +33055,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33095,7 +33095,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33135,7 +33135,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33175,7 +33175,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33215,7 +33215,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33255,7 +33255,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33295,7 +33295,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33335,7 +33335,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33375,7 +33375,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33415,7 +33415,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33455,7 +33455,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33495,7 +33495,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33535,7 +33535,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33575,7 +33575,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33615,7 +33615,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33655,7 +33655,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33695,7 +33695,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33735,7 +33735,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33775,7 +33775,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33815,7 +33815,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33855,7 +33855,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33895,7 +33895,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33935,7 +33935,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -33975,7 +33975,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34015,7 +34015,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34055,7 +34055,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34095,7 +34095,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34135,7 +34135,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34175,7 +34175,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34215,7 +34215,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34255,7 +34255,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34295,7 +34295,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34335,7 +34335,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34375,7 +34375,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34415,7 +34415,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34455,7 +34455,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34495,7 +34495,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34535,7 +34535,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34575,7 +34575,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34615,7 +34615,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34655,7 +34655,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34695,7 +34695,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34735,7 +34735,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6 + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6 Content-Type: application/http @@ -34775,343 +34775,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09d2fc74-67fd-11e7-acb2-b8e8564491f6-- + --changeset_3c189e6e-68f7-11e7-824a-b8e8564491f6-- - --batch_09d2fbfa-67fd-11e7-a2d5-b8e8564491f6--' + --batch_3c189df6-68f7-11e7-9903-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87511'] - Content-Type: [multipart/mixed; boundary=batch_09d2fbfa-67fd-11e7-a2d5-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3c189df6-68f7-11e7-9903-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [09d316c8-67fd-11e7-8920-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3c18b668-68f7-11e7-ab3d-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:53 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_222d4027-7abb-4c0e-92cd-6c43a17722e9\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ - \n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\nContent-Type:\ + body: {string: "--batchresponse_fa44609b-31d2-4fba-9140-3c749a429bda\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ + \n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.674421Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3288684Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.674421Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3288684Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.674421Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3288684Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.674421Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3288684Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.674421Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3288684Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.674421Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3288684Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.674421Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3288684Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.674421Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3288684Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.674421Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3288684Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.674421Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3288684Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.674421Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3288684Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.674421Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3288684Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.674421Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3288684Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.674421Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3298695Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3308702Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3308702Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3308702Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch14-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.6754213Z'\"\r\n\r\n\r\n--changesetresponse_55debfcf-1d46-4bda-b72b-5a3a61902887--\r\ - \n--batchresponse_222d4027-7abb-4c0e-92cd-6c43a17722e9--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.3308702Z'\"\r\n\r\n\r\n--changesetresponse_ca80480e-4605-46dd-9799-b6ed4643539a--\r\ + \n--batchresponse_fa44609b-31d2-4fba-9140-3c749a429bda--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_222d4027-7abb-4c0e-92cd-6c43a17722e9] - Date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_fa44609b-31d2-4fba-9140-3c749a429bda] + Date: ['Sat, 15 Jul 2017 00:47:52 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a36c-0002-0043-6c09-fc7e3d000000] + x-ms-request-id: [40d29eb5-0002-011b-4e03-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_09e3ac22-67fd-11e7-8041-b8e8564491f6 + body: '--batch_3c28aa98-68f7-11e7-b795-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35151,7 +35151,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35191,7 +35191,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35231,7 +35231,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35271,7 +35271,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35311,7 +35311,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35351,7 +35351,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35391,7 +35391,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35431,7 +35431,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35471,7 +35471,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35511,7 +35511,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35551,7 +35551,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35591,7 +35591,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35631,7 +35631,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35671,7 +35671,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35711,7 +35711,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35751,7 +35751,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35791,7 +35791,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35831,7 +35831,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35871,7 +35871,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35911,7 +35911,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35951,7 +35951,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -35991,7 +35991,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36031,7 +36031,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36071,7 +36071,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36111,7 +36111,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36151,7 +36151,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36191,7 +36191,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36231,7 +36231,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36271,7 +36271,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36311,7 +36311,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36351,7 +36351,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36391,7 +36391,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36431,7 +36431,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36471,7 +36471,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36511,7 +36511,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36551,7 +36551,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36591,7 +36591,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36631,7 +36631,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36671,7 +36671,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36711,7 +36711,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36751,7 +36751,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36791,7 +36791,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36831,7 +36831,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36871,7 +36871,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36911,7 +36911,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36951,7 +36951,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -36991,7 +36991,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -37031,7 +37031,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -37071,7 +37071,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6 + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6 Content-Type: application/http @@ -37111,343 +37111,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09e3ac9a-67fd-11e7-aa31-b8e8564491f6-- + --changeset_3c28ab10-68f7-11e7-88ae-b8e8564491f6-- - --batch_09e3ac22-67fd-11e7-8041-b8e8564491f6--' + --batch_3c28aa98-68f7-11e7-b795-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87511'] - Content-Type: [multipart/mixed; boundary=batch_09e3ac22-67fd-11e7-8041-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3c28aa98-68f7-11e7-b795-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [09e3cc8c-67fd-11e7-a058-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3c28c9cc-68f7-11e7-a33c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:53 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_4b83e6d7-cfc0-49ca-a8f4-69f710897d14\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ - \n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\nContent-Type:\ + body: {string: "--batchresponse_c7bd223f-1479-4af8-adb7-5d27db982f1a\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ + \n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7865014Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4829765Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch15-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.7875021Z'\"\r\n\r\n\r\n--changesetresponse_9e32c2b0-fb2d-43f6-8bd2-464bdea6d744--\r\ - \n--batchresponse_4b83e6d7-cfc0-49ca-a8f4-69f710897d14--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.4839772Z'\"\r\n\r\n\r\n--changesetresponse_0539a483-051b-46e6-bde0-4c1814bb5641--\r\ + \n--batchresponse_c7bd223f-1479-4af8-adb7-5d27db982f1a--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_4b83e6d7-cfc0-49ca-a8f4-69f710897d14] - Date: ['Thu, 13 Jul 2017 18:56:53 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_c7bd223f-1479-4af8-adb7-5d27db982f1a] + Date: ['Sat, 15 Jul 2017 00:47:52 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a373-0002-0043-7309-fc7e3d000000] + x-ms-request-id: [40d29edf-0002-011b-7203-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_09f3c558-67fd-11e7-a625-b8e8564491f6 + body: '--batch_3c424798-68f7-11e7-adee-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -37487,7 +37487,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -37527,7 +37527,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -37567,7 +37567,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -37607,7 +37607,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -37647,7 +37647,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -37687,7 +37687,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -37727,7 +37727,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -37767,7 +37767,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -37807,7 +37807,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -37847,7 +37847,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -37887,7 +37887,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -37927,7 +37927,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -37967,7 +37967,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38007,7 +38007,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38047,7 +38047,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38087,7 +38087,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38127,7 +38127,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38167,7 +38167,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38207,7 +38207,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38247,7 +38247,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38287,7 +38287,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38327,7 +38327,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38367,7 +38367,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38407,7 +38407,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38447,7 +38447,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38487,7 +38487,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38527,7 +38527,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38567,7 +38567,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38607,7 +38607,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38647,7 +38647,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38687,7 +38687,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38727,7 +38727,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38767,7 +38767,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38807,7 +38807,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38847,7 +38847,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38887,7 +38887,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38927,7 +38927,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -38967,7 +38967,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -39007,7 +39007,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -39047,7 +39047,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -39087,7 +39087,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -39127,7 +39127,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -39167,7 +39167,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -39207,7 +39207,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -39247,7 +39247,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -39287,7 +39287,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -39327,7 +39327,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -39367,7 +39367,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -39407,7 +39407,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6 + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6 Content-Type: application/http @@ -39447,343 +39447,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_09f3c5ba-67fd-11e7-bc47-b8e8564491f6-- + --changeset_3c42480c-68f7-11e7-8abc-b8e8564491f6-- - --batch_09f3c558-67fd-11e7-a625-b8e8564491f6--' + --batch_3c424798-68f7-11e7-adee-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87511'] - Content-Type: [multipart/mixed; boundary=batch_09f3c558-67fd-11e7-a625-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3c424798-68f7-11e7-adee-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [09f3daa2-67fd-11e7-881c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:54 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3c42601e-68f7-11e7-be54-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:53 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_4899f577-8a03-4734-b6b9-aa299b8bc3ea\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ - \n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\nContent-Type:\ + body: {string: "--batchresponse_8a99963d-88f5-44ae-b8f2-736c455d19fe\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ + \n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8915772Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8915772Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8915772Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8915772Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8915772Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8915772Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.639086Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch16-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.8925774Z'\"\r\n\r\n\r\n--changesetresponse_0951df89-5a0c-4938-9e22-5cd69e79174a--\r\ - \n--batchresponse_4899f577-8a03-4734-b6b9-aa299b8bc3ea--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.6400863Z'\"\r\n\r\n\r\n--changesetresponse_6bb87304-0ac2-420a-a691-9200c461b024--\r\ + \n--batchresponse_8a99963d-88f5-44ae-b8f2-736c455d19fe--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_4899f577-8a03-4734-b6b9-aa299b8bc3ea] - Date: ['Thu, 13 Jul 2017 18:56:54 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_8a99963d-88f5-44ae-b8f2-736c455d19fe] + Date: ['Sat, 15 Jul 2017 00:47:52 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a387-0002-0043-0509-fc7e3d000000] + x-ms-request-id: [40d29f09-0002-011b-1803-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_0a03ddf8-67fd-11e7-b1e4-b8e8564491f6 + body: '--batch_3c5c52da-68f7-11e7-8470-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -39823,7 +39823,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -39863,7 +39863,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -39903,7 +39903,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -39943,7 +39943,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -39983,7 +39983,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40023,7 +40023,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40063,7 +40063,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40103,7 +40103,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40143,7 +40143,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40183,7 +40183,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40223,7 +40223,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40263,7 +40263,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40303,7 +40303,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40343,7 +40343,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40383,7 +40383,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40423,7 +40423,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40463,7 +40463,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40503,7 +40503,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40543,7 +40543,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40583,7 +40583,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40623,7 +40623,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40663,7 +40663,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40703,7 +40703,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40743,7 +40743,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40783,7 +40783,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40823,7 +40823,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40863,7 +40863,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40903,7 +40903,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40943,7 +40943,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -40983,7 +40983,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41023,7 +41023,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41063,7 +41063,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41103,7 +41103,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41143,7 +41143,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41183,7 +41183,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41223,7 +41223,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41263,7 +41263,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41303,7 +41303,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41343,7 +41343,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41383,7 +41383,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41423,7 +41423,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41463,7 +41463,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41503,7 +41503,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41543,7 +41543,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41583,7 +41583,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41623,7 +41623,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41663,7 +41663,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41703,7 +41703,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41743,7 +41743,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6 + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6 Content-Type: application/http @@ -41783,343 +41783,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a03de86-67fd-11e7-a38f-b8e8564491f6-- + --changeset_3c5c535c-68f7-11e7-afea-b8e8564491f6-- - --batch_0a03ddf8-67fd-11e7-b1e4-b8e8564491f6--' + --batch_3c5c52da-68f7-11e7-8470-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87511'] - Content-Type: [multipart/mixed; boundary=batch_0a03ddf8-67fd-11e7-b1e4-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3c5c52da-68f7-11e7-8470-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0a03faf4-67fd-11e7-ac4b-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3c5c6d06-68f7-11e7-b74b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:53 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_61a7a1f4-8208-40ff-8e80-001bed8602b8\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ - \n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\nContent-Type:\ + body: {string: "--batchresponse_ffab1f06-494d-4cac-a773-7f60cc0029a6\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ + \n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9966516Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7701776Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch17-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A54.9976524Z'\"\r\n\r\n\r\n--changesetresponse_5ff2ca42-664a-42ca-9b2d-c6502600dddb--\r\ - \n--batchresponse_61a7a1f4-8208-40ff-8e80-001bed8602b8--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.7711778Z'\"\r\n\r\n\r\n--changesetresponse_5eef8794-9939-4334-a767-55fd0c51b117--\r\ + \n--batchresponse_ffab1f06-494d-4cac-a773-7f60cc0029a6--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_61a7a1f4-8208-40ff-8e80-001bed8602b8] - Date: ['Thu, 13 Jul 2017 18:56:54 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_ffab1f06-494d-4cac-a773-7f60cc0029a6] + Date: ['Sat, 15 Jul 2017 00:47:53 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a393-0002-0043-1109-fc7e3d000000] + x-ms-request-id: [40d29f29-0002-011b-3603-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_0a13a65c-67fd-11e7-8cc7-b8e8564491f6 + body: '--batch_3c6c659e-68f7-11e7-8026-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42159,7 +42159,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42199,7 +42199,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42239,7 +42239,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42279,7 +42279,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42319,7 +42319,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42359,7 +42359,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42399,7 +42399,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42439,7 +42439,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42479,7 +42479,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42519,7 +42519,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42559,7 +42559,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42599,7 +42599,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42639,7 +42639,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42679,7 +42679,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42719,7 +42719,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42759,7 +42759,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42799,7 +42799,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42839,7 +42839,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42879,7 +42879,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42919,7 +42919,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42959,7 +42959,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -42999,7 +42999,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43039,7 +43039,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43079,7 +43079,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43119,7 +43119,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43159,7 +43159,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43199,7 +43199,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43239,7 +43239,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43279,7 +43279,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43319,7 +43319,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43359,7 +43359,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43399,7 +43399,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43439,7 +43439,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43479,7 +43479,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43519,7 +43519,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43559,7 +43559,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43599,7 +43599,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43639,7 +43639,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43679,7 +43679,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43719,7 +43719,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43759,7 +43759,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43799,7 +43799,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43839,7 +43839,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43879,7 +43879,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43919,7 +43919,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43959,7 +43959,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -43999,7 +43999,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -44039,7 +44039,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -44079,7 +44079,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6 + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6 Content-Type: application/http @@ -44119,343 +44119,343 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a13a6ca-67fd-11e7-8fa3-b8e8564491f6-- + --changeset_3c6c660c-68f7-11e7-9adb-b8e8564491f6-- - --batch_0a13a65c-67fd-11e7-8cc7-b8e8564491f6--' + --batch_3c6c659e-68f7-11e7-8026-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87511'] - Content-Type: [multipart/mixed; boundary=batch_0a13a65c-67fd-11e7-8cc7-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3c6c659e-68f7-11e7-8026-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0a13c63a-67fd-11e7-800a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3c6c7e08-68f7-11e7-9f18-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:53 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_47c9e4b5-5ec5-4d90-a568-7d8a7f93512b\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ - \n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\nContent-Type:\ + body: {string: "--batchresponse_443d674c-ec10-44c5-bcf9-04e666a916a5\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ + \n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8732487Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8732487Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8732487Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8732487Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8732487Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8732487Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8732487Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8732487Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8732487Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8732487Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8732487Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8732487Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.099726Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch18-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.1007263Z'\"\r\n\r\n\r\n--changesetresponse_3b446308-6800-48de-bc3c-2138ae361113--\r\ - \n--batchresponse_47c9e4b5-5ec5-4d90-a568-7d8a7f93512b--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.8742499Z'\"\r\n\r\n\r\n--changesetresponse_711c84b7-ccb4-4404-b028-0f84e30475b2--\r\ + \n--batchresponse_443d674c-ec10-44c5-bcf9-04e666a916a5--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_47c9e4b5-5ec5-4d90-a568-7d8a7f93512b] - Date: ['Thu, 13 Jul 2017 18:56:54 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_443d674c-ec10-44c5-bcf9-04e666a916a5] + Date: ['Sat, 15 Jul 2017 00:47:53 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a39e-0002-0043-1c09-fc7e3d000000] + x-ms-request-id: [40d29f40-0002-011b-4b03-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: - body: '--batch_0a241988-67fd-11e7-980a-b8e8564491f6 + body: '--batch_3c7c7de4-68f7-11e7-aa44-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -44495,7 +44495,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -44535,7 +44535,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -44575,7 +44575,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -44615,7 +44615,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -44655,7 +44655,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -44695,7 +44695,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -44735,7 +44735,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -44775,7 +44775,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -44815,7 +44815,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -44855,7 +44855,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -44895,7 +44895,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -44935,7 +44935,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -44975,7 +44975,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45015,7 +45015,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45055,7 +45055,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45095,7 +45095,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45135,7 +45135,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45175,7 +45175,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45215,7 +45215,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45255,7 +45255,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45295,7 +45295,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45335,7 +45335,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45375,7 +45375,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45415,7 +45415,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45455,7 +45455,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45495,7 +45495,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45535,7 +45535,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45575,7 +45575,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45615,7 +45615,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45655,7 +45655,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45695,7 +45695,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45735,7 +45735,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45775,7 +45775,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45815,7 +45815,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45855,7 +45855,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45895,7 +45895,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45935,7 +45935,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -45975,7 +45975,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -46015,7 +46015,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -46055,7 +46055,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -46095,7 +46095,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -46135,7 +46135,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -46175,7 +46175,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -46215,7 +46215,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -46255,7 +46255,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -46295,7 +46295,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -46335,7 +46335,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -46375,7 +46375,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -46415,7 +46415,7 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6 + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6 Content-Type: application/http @@ -46455,334 +46455,334 @@ interactions: "test5@odata.type": "Edm.DateTime"} - --changeset_0a241a14-67fd-11e7-8cac-b8e8564491f6-- + --changeset_3c7c7e70-68f7-11e7-84ed-b8e8564491f6-- - --batch_0a241988-67fd-11e7-980a-b8e8564491f6--' + --batch_3c7c7de4-68f7-11e7-aa44-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['87511'] - Content-Type: [multipart/mixed; boundary=batch_0a241988-67fd-11e7-980a-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_3c7c7de4-68f7-11e7-aa44-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0a24367a-67fd-11e7-97db-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3c7ca080-68f7-11e7-b9e4-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:53 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_e29efe86-51ea-4977-ae62-bcd8fc1f1995\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ - \n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\nContent-Type:\ + body: {string: "--batchresponse_9cf024ba-7f26-4930-9a14-274ca28ddad2\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ + \n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item0')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item0')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item2')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item2')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item3')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item3')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item4')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item4')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 6\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item5')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item5')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 7\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item6')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item6')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 8\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item7')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item7')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 9\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item8')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item8')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 10\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item9')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item9')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 11\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item10')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item10')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 12\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item11')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item11')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 13\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 14\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item13')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item13')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 15\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item14')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item14')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 16\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item15')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item15')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 17\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item16')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item16')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 18\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item17')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item17')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 19\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item18')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item18')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 20\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item19')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item19')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 21\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item20')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item20')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 22\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item21')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item21')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 23\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item22')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item22')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 24\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item23')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item23')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 25\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item24')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item24')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 26\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item25')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item25')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 27\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item26')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item26')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 28\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item27')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item27')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 29\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item28')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item28')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 30\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item29')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item29')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 31\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item30')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item30')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 32\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item31')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item31')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 33\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item32')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item32')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 34\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item33')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item33')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 35\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item34')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item34')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9843263Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 36\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item35')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item35')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 37\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item36')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item36')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 38\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item37')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item37')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 39\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item38')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item38')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 40\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item39')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item39')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 41\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item40')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item40')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 42\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item41')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item41')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 43\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item42')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item42')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 44\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item43')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item43')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 45\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item44')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item44')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 46\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item45')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item45')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 47\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item46')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item46')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 48\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item47')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item47')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 49\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item48')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item48')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2078031Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733\r\ + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 50\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item49')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable887811d5(PartitionKey='large',RowKey='batch19-item49')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A56%3A55.2088038Z'\"\r\n\r\n\r\n--changesetresponse_4f242ea3-40ef-4999-b196-ce32f9b8a733--\r\ - \n--batchresponse_e29efe86-51ea-4977-ae62-bcd8fc1f1995--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A47%3A53.9853275Z'\"\r\n\r\n\r\n--changesetresponse_58024c1c-ef09-4b02-bac1-2ee26007ff77--\r\ + \n--batchresponse_9cf024ba-7f26-4930-9a14-274ca28ddad2--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_e29efe86-51ea-4977-ae62-bcd8fc1f1995] - Date: ['Thu, 13 Jul 2017 18:56:54 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_9cf024ba-7f26-4930-9a14-274ca28ddad2] + Date: ['Sat, 15 Jul 2017 00:47:53 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a3ad-0002-0043-2a09-fc7e3d000000] + x-ms-request-id: [40d29f62-0002-011b-6a03-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -46792,14 +46792,14 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0a348f86-67fd-11e7-8063-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:56:55 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [3c8bb62e-68f7-11e7-b898-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:47:54 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/querytable887811d5() response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable887811d5","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item0","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable887811d5","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8028021Z''\"","PartitionKey":"large","RowKey":"batch0-item0","Timestamp":"2017-07-15T00:47:51.8028021Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -46814,7 +46814,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item1","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8028021Z''\"","PartitionKey":"large","RowKey":"batch0-item1","Timestamp":"2017-07-15T00:47:51.8028021Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -46829,7 +46829,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item10","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item10","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -46844,7 +46844,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item11","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item11","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -46859,7 +46859,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item12","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item12","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -46874,7 +46874,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item13","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item13","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -46889,7 +46889,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item14","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item14","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -46904,7 +46904,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item15","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item15","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -46919,7 +46919,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item16","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item16","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -46934,7 +46934,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item17","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item17","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -46949,7 +46949,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item18","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item18","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -46964,7 +46964,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item19","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item19","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -46979,7 +46979,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item2","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8028021Z''\"","PartitionKey":"large","RowKey":"batch0-item2","Timestamp":"2017-07-15T00:47:51.8028021Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -46994,7 +46994,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item20","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item20","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47009,7 +47009,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item21","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item21","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47024,7 +47024,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item22","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item22","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47039,7 +47039,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item23","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item23","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47054,7 +47054,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item24","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item24","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47069,7 +47069,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item25","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item25","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47084,7 +47084,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item26","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item26","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47099,7 +47099,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item27","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item27","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47114,7 +47114,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item28","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item28","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47129,7 +47129,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item29","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item29","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47144,7 +47144,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item3","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8028021Z''\"","PartitionKey":"large","RowKey":"batch0-item3","Timestamp":"2017-07-15T00:47:51.8028021Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47159,7 +47159,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item30","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item30","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47174,7 +47174,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item31","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item31","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47189,7 +47189,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item32","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item32","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47204,7 +47204,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item33","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item33","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47219,7 +47219,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item34","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item34","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47234,7 +47234,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item35","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item35","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47249,7 +47249,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item36","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item36","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47264,7 +47264,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item37","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item37","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47279,7 +47279,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item38","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item38","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47294,7 +47294,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item39","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item39","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47309,7 +47309,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item4","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8028021Z''\"","PartitionKey":"large","RowKey":"batch0-item4","Timestamp":"2017-07-15T00:47:51.8028021Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47324,7 +47324,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item40","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item40","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47339,7 +47339,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item41","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item41","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47354,7 +47354,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item42","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item42","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47369,7 +47369,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item43","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item43","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47384,7 +47384,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item44","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item44","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47399,7 +47399,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item45","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item45","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47414,7 +47414,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item46","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item46","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47429,7 +47429,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item47","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item47","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47444,7 +47444,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item48","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item48","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47459,7 +47459,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9101554Z''\"","PartitionKey":"large","RowKey":"batch0-item49","Timestamp":"2017-07-13T18:56:52.9101554Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item49","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47474,7 +47474,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item5","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8028021Z''\"","PartitionKey":"large","RowKey":"batch0-item5","Timestamp":"2017-07-15T00:47:51.8028021Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47489,7 +47489,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item6","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8028021Z''\"","PartitionKey":"large","RowKey":"batch0-item6","Timestamp":"2017-07-15T00:47:51.8028021Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47504,7 +47504,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item7","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8028021Z''\"","PartitionKey":"large","RowKey":"batch0-item7","Timestamp":"2017-07-15T00:47:51.8028021Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47519,7 +47519,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item8","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item8","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47534,7 +47534,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A52.9091551Z''\"","PartitionKey":"large","RowKey":"batch0-item9","Timestamp":"2017-07-13T18:56:52.9091551Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.8038032Z''\"","PartitionKey":"large","RowKey":"batch0-item9","Timestamp":"2017-07-15T00:47:51.8038032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47549,7 +47549,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item0","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item0","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47564,7 +47564,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item1","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item1","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47579,7 +47579,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item10","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item10","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47594,7 +47594,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item11","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item11","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47609,7 +47609,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item12","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item12","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47624,7 +47624,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item13","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item13","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47639,7 +47639,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item14","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item14","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47654,7 +47654,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item15","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item15","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47669,7 +47669,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item16","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item16","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47684,7 +47684,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item17","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item17","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47699,7 +47699,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item18","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item18","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47714,7 +47714,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item19","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item19","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47729,7 +47729,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item2","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item2","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47744,7 +47744,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item20","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item20","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47759,7 +47759,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item21","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item21","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47774,7 +47774,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item22","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item22","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47789,7 +47789,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item23","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item23","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47804,7 +47804,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item24","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item24","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47819,7 +47819,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item25","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item25","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47834,7 +47834,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item26","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item26","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47849,7 +47849,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item27","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item27","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47864,7 +47864,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item28","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item28","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47879,7 +47879,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item29","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item29","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47894,7 +47894,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item3","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item3","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47909,7 +47909,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item30","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item30","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47924,7 +47924,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item31","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item31","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47939,7 +47939,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item32","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item32","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47954,7 +47954,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item33","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item33","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47969,7 +47969,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item34","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item34","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47984,7 +47984,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item35","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item35","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -47999,7 +47999,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item36","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item36","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48014,7 +48014,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item37","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item37","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48029,7 +48029,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item38","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item38","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48044,7 +48044,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item39","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item39","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48059,7 +48059,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item4","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item4","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48074,7 +48074,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item40","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item40","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48089,7 +48089,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item41","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.968919Z''\"","PartitionKey":"large","RowKey":"batch1-item41","Timestamp":"2017-07-15T00:47:51.968919Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48104,7 +48104,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item42","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.968919Z''\"","PartitionKey":"large","RowKey":"batch1-item42","Timestamp":"2017-07-15T00:47:51.968919Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48119,7 +48119,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item43","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.968919Z''\"","PartitionKey":"large","RowKey":"batch1-item43","Timestamp":"2017-07-15T00:47:51.968919Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48134,7 +48134,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item44","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.968919Z''\"","PartitionKey":"large","RowKey":"batch1-item44","Timestamp":"2017-07-15T00:47:51.968919Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48149,7 +48149,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item45","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.968919Z''\"","PartitionKey":"large","RowKey":"batch1-item45","Timestamp":"2017-07-15T00:47:51.968919Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48164,7 +48164,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item46","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.968919Z''\"","PartitionKey":"large","RowKey":"batch1-item46","Timestamp":"2017-07-15T00:47:51.968919Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48179,7 +48179,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item47","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.968919Z''\"","PartitionKey":"large","RowKey":"batch1-item47","Timestamp":"2017-07-15T00:47:51.968919Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48194,7 +48194,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item48","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.968919Z''\"","PartitionKey":"large","RowKey":"batch1-item48","Timestamp":"2017-07-15T00:47:51.968919Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48209,7 +48209,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1193058Z''\"","PartitionKey":"large","RowKey":"batch1-item49","Timestamp":"2017-07-13T18:56:53.1193058Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.968919Z''\"","PartitionKey":"large","RowKey":"batch1-item49","Timestamp":"2017-07-15T00:47:51.968919Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48224,7 +48224,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item5","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item5","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48239,7 +48239,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item6","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item6","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48254,7 +48254,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item7","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item7","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48269,7 +48269,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item8","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item8","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48284,7 +48284,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.1183068Z''\"","PartitionKey":"large","RowKey":"batch1-item9","Timestamp":"2017-07-13T18:56:53.1183068Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A51.9679174Z''\"","PartitionKey":"large","RowKey":"batch1-item9","Timestamp":"2017-07-15T00:47:51.9679174Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48299,7 +48299,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2100876Z''\"","PartitionKey":"large","RowKey":"batch10-item0","Timestamp":"2017-07-13T18:56:54.2100876Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item0","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48314,7 +48314,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2100876Z''\"","PartitionKey":"large","RowKey":"batch10-item1","Timestamp":"2017-07-13T18:56:54.2100876Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item1","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48329,7 +48329,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2100876Z''\"","PartitionKey":"large","RowKey":"batch10-item10","Timestamp":"2017-07-13T18:56:54.2100876Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item10","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48344,7 +48344,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2100876Z''\"","PartitionKey":"large","RowKey":"batch10-item11","Timestamp":"2017-07-13T18:56:54.2100876Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item11","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48359,7 +48359,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2100876Z''\"","PartitionKey":"large","RowKey":"batch10-item12","Timestamp":"2017-07-13T18:56:54.2100876Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item12","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48374,7 +48374,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item13","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item13","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48389,7 +48389,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item14","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item14","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48404,7 +48404,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item15","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item15","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48419,7 +48419,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item16","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item16","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48434,7 +48434,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item17","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item17","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48449,7 +48449,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item18","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item18","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48464,7 +48464,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item19","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item19","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48479,7 +48479,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2100876Z''\"","PartitionKey":"large","RowKey":"batch10-item2","Timestamp":"2017-07-13T18:56:54.2100876Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item2","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48494,7 +48494,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item20","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item20","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48509,7 +48509,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item21","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item21","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48524,7 +48524,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item22","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item22","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48539,7 +48539,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item23","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item23","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48554,7 +48554,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item24","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item24","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48569,7 +48569,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item25","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item25","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48584,7 +48584,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item26","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item26","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48599,7 +48599,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item27","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item27","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48614,7 +48614,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item28","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item28","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48629,7 +48629,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item29","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item29","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48644,7 +48644,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2100876Z''\"","PartitionKey":"large","RowKey":"batch10-item3","Timestamp":"2017-07-13T18:56:54.2100876Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item3","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48659,7 +48659,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item30","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item30","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48674,7 +48674,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item31","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item31","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48689,7 +48689,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item32","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item32","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48704,7 +48704,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item33","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item33","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48719,7 +48719,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item34","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item34","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48734,7 +48734,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item35","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item35","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48749,7 +48749,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item36","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item36","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48764,7 +48764,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item37","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item37","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48779,7 +48779,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item38","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item38","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48794,7 +48794,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item39","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item39","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48809,7 +48809,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2100876Z''\"","PartitionKey":"large","RowKey":"batch10-item4","Timestamp":"2017-07-13T18:56:54.2100876Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item4","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48824,7 +48824,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item40","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item40","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48839,7 +48839,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item41","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item41","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48854,7 +48854,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item42","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item42","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48869,7 +48869,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item43","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item43","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48884,7 +48884,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item44","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item44","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48899,7 +48899,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item45","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item45","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48914,7 +48914,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item46","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item46","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48929,7 +48929,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2110883Z''\"","PartitionKey":"large","RowKey":"batch10-item47","Timestamp":"2017-07-13T18:56:54.2110883Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item47","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48944,7 +48944,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.212089Z''\"","PartitionKey":"large","RowKey":"batch10-item48","Timestamp":"2017-07-13T18:56:54.212089Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item48","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48959,7 +48959,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.212089Z''\"","PartitionKey":"large","RowKey":"batch10-item49","Timestamp":"2017-07-13T18:56:54.212089Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item49","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48974,7 +48974,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2100876Z''\"","PartitionKey":"large","RowKey":"batch10-item5","Timestamp":"2017-07-13T18:56:54.2100876Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item5","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -48989,7 +48989,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2100876Z''\"","PartitionKey":"large","RowKey":"batch10-item6","Timestamp":"2017-07-13T18:56:54.2100876Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item6","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49004,7 +49004,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2100876Z''\"","PartitionKey":"large","RowKey":"batch10-item7","Timestamp":"2017-07-13T18:56:54.2100876Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item7","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49019,7 +49019,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2100876Z''\"","PartitionKey":"large","RowKey":"batch10-item8","Timestamp":"2017-07-13T18:56:54.2100876Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item8","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49034,7 +49034,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.2100876Z''\"","PartitionKey":"large","RowKey":"batch10-item9","Timestamp":"2017-07-13T18:56:54.2100876Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.9245859Z''\"","PartitionKey":"large","RowKey":"batch10-item9","Timestamp":"2017-07-15T00:47:52.9245859Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49049,7 +49049,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3171648Z''\"","PartitionKey":"large","RowKey":"batch11-item0","Timestamp":"2017-07-13T18:56:54.3171648Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item0","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49064,7 +49064,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3171648Z''\"","PartitionKey":"large","RowKey":"batch11-item1","Timestamp":"2017-07-13T18:56:54.3171648Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item1","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49079,7 +49079,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3171648Z''\"","PartitionKey":"large","RowKey":"batch11-item10","Timestamp":"2017-07-13T18:56:54.3171648Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item10","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49094,7 +49094,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3171648Z''\"","PartitionKey":"large","RowKey":"batch11-item11","Timestamp":"2017-07-13T18:56:54.3171648Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item11","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49109,7 +49109,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3171648Z''\"","PartitionKey":"large","RowKey":"batch11-item12","Timestamp":"2017-07-13T18:56:54.3171648Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item12","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49124,7 +49124,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item13","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item13","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49139,7 +49139,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item14","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item14","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49154,7 +49154,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item15","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item15","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49169,7 +49169,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item16","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item16","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49184,7 +49184,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item17","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item17","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49199,7 +49199,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item18","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item18","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49214,7 +49214,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item19","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item19","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49229,7 +49229,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3171648Z''\"","PartitionKey":"large","RowKey":"batch11-item2","Timestamp":"2017-07-13T18:56:54.3171648Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item2","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49244,7 +49244,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item20","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item20","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49259,7 +49259,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item21","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item21","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49274,7 +49274,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item22","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item22","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49289,7 +49289,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item23","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item23","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49304,7 +49304,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item24","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item24","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49319,7 +49319,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item25","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item25","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49334,7 +49334,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item26","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item26","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49349,7 +49349,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item27","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item27","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49364,7 +49364,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item28","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item28","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49379,7 +49379,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item29","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item29","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49394,7 +49394,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3171648Z''\"","PartitionKey":"large","RowKey":"batch11-item3","Timestamp":"2017-07-13T18:56:54.3171648Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item3","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49409,7 +49409,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item30","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item30","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49424,7 +49424,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item31","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item31","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49439,7 +49439,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item32","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item32","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49454,7 +49454,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item33","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item33","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49469,7 +49469,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item34","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item34","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49484,7 +49484,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item35","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item35","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49499,7 +49499,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item36","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item36","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49514,7 +49514,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item37","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item37","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49529,7 +49529,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item38","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item38","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49544,7 +49544,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item39","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item39","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49559,7 +49559,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3171648Z''\"","PartitionKey":"large","RowKey":"batch11-item4","Timestamp":"2017-07-13T18:56:54.3171648Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item4","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49574,7 +49574,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item40","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item40","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49589,7 +49589,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item41","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item41","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49604,7 +49604,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item42","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item42","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49619,7 +49619,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item43","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item43","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49634,7 +49634,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item44","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item44","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49649,7 +49649,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item45","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item45","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49664,7 +49664,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item46","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item46","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49679,7 +49679,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item47","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item47","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49694,7 +49694,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item48","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item48","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49709,7 +49709,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3181655Z''\"","PartitionKey":"large","RowKey":"batch11-item49","Timestamp":"2017-07-13T18:56:54.3181655Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item49","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49724,7 +49724,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3171648Z''\"","PartitionKey":"large","RowKey":"batch11-item5","Timestamp":"2017-07-13T18:56:54.3171648Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item5","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49739,7 +49739,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3171648Z''\"","PartitionKey":"large","RowKey":"batch11-item6","Timestamp":"2017-07-13T18:56:54.3171648Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item6","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49754,7 +49754,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3171648Z''\"","PartitionKey":"large","RowKey":"batch11-item7","Timestamp":"2017-07-13T18:56:54.3171648Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item7","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49769,7 +49769,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3171648Z''\"","PartitionKey":"large","RowKey":"batch11-item8","Timestamp":"2017-07-13T18:56:54.3171648Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item8","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49784,7 +49784,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.3171648Z''\"","PartitionKey":"large","RowKey":"batch11-item9","Timestamp":"2017-07-13T18:56:54.3171648Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.0296593Z''\"","PartitionKey":"large","RowKey":"batch11-item9","Timestamp":"2017-07-15T00:47:53.0296593Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49799,7 +49799,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.428244Z''\"","PartitionKey":"large","RowKey":"batch12-item0","Timestamp":"2017-07-13T18:56:54.428244Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item0","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49814,7 +49814,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.428244Z''\"","PartitionKey":"large","RowKey":"batch12-item1","Timestamp":"2017-07-13T18:56:54.428244Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item1","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49829,7 +49829,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item10","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item10","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49844,7 +49844,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item11","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item11","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49859,7 +49859,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item12","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item12","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49874,7 +49874,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item13","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item13","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49889,7 +49889,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item14","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item14","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49904,7 +49904,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item15","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item15","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49919,7 +49919,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item16","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item16","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49934,7 +49934,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item17","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item17","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49949,7 +49949,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item18","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item18","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49964,7 +49964,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item19","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item19","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49979,7 +49979,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.428244Z''\"","PartitionKey":"large","RowKey":"batch12-item2","Timestamp":"2017-07-13T18:56:54.428244Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item2","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -49994,7 +49994,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item20","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item20","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50009,7 +50009,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item21","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item21","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50024,7 +50024,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item22","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item22","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50039,7 +50039,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item23","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item23","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50054,7 +50054,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item24","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item24","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50069,7 +50069,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item25","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item25","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50084,7 +50084,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item26","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item26","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50099,7 +50099,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item27","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item27","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50114,7 +50114,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item28","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item28","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50129,7 +50129,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item29","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item29","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50144,7 +50144,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.428244Z''\"","PartitionKey":"large","RowKey":"batch12-item3","Timestamp":"2017-07-13T18:56:54.428244Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item3","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50159,7 +50159,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item30","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item30","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50174,7 +50174,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item31","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item31","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50189,7 +50189,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item32","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item32","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50204,7 +50204,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item33","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item33","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50219,7 +50219,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item34","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item34","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50234,7 +50234,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item35","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item35","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50249,7 +50249,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item36","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item36","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50264,7 +50264,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item37","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item37","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50279,7 +50279,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item38","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item38","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50294,7 +50294,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item39","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item39","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50309,7 +50309,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.428244Z''\"","PartitionKey":"large","RowKey":"batch12-item4","Timestamp":"2017-07-13T18:56:54.428244Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item4","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50324,7 +50324,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item40","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item40","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50339,7 +50339,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item41","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item41","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50354,7 +50354,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item42","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item42","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50369,7 +50369,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item43","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item43","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50384,7 +50384,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item44","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item44","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50399,7 +50399,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item45","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item45","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50414,7 +50414,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item46","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item46","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50429,7 +50429,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item47","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item47","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50444,7 +50444,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item48","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item48","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50459,7 +50459,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4302455Z''\"","PartitionKey":"large","RowKey":"batch12-item49","Timestamp":"2017-07-13T18:56:54.4302455Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1277278Z''\"","PartitionKey":"large","RowKey":"batch12-item49","Timestamp":"2017-07-15T00:47:53.1277278Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50474,7 +50474,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.428244Z''\"","PartitionKey":"large","RowKey":"batch12-item5","Timestamp":"2017-07-13T18:56:54.428244Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item5","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50489,7 +50489,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.428244Z''\"","PartitionKey":"large","RowKey":"batch12-item6","Timestamp":"2017-07-13T18:56:54.428244Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item6","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50504,7 +50504,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.428244Z''\"","PartitionKey":"large","RowKey":"batch12-item7","Timestamp":"2017-07-13T18:56:54.428244Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item7","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50519,7 +50519,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item8","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item8","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50534,7 +50534,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.4292452Z''\"","PartitionKey":"large","RowKey":"batch12-item9","Timestamp":"2017-07-13T18:56:54.4292452Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.1267271Z''\"","PartitionKey":"large","RowKey":"batch12-item9","Timestamp":"2017-07-15T00:47:53.1267271Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50549,7 +50549,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item0","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item0","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50564,7 +50564,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item1","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item1","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50579,7 +50579,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item10","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item10","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50594,7 +50594,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item11","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item11","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50609,7 +50609,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item12","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item12","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50624,7 +50624,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item13","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item13","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50639,7 +50639,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item14","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item14","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50654,7 +50654,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item15","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item15","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50669,7 +50669,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item16","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item16","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50684,7 +50684,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item17","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item17","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50699,7 +50699,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item18","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item18","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50714,7 +50714,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item19","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item19","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50729,7 +50729,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item2","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item2","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50744,7 +50744,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item20","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item20","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50759,7 +50759,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item21","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item21","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50774,7 +50774,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item22","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item22","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50789,7 +50789,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item23","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item23","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50804,7 +50804,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item24","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item24","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50819,7 +50819,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item25","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item25","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50834,7 +50834,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item26","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item26","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50849,7 +50849,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item27","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item27","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50864,7 +50864,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item28","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item28","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50879,7 +50879,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item29","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item29","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50894,7 +50894,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item3","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item3","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50909,7 +50909,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item30","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item30","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50924,7 +50924,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item31","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item31","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50939,7 +50939,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item32","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item32","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50954,7 +50954,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item33","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item33","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50969,7 +50969,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item34","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item34","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50984,7 +50984,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item35","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item35","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -50999,7 +50999,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item36","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item36","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51014,7 +51014,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item37","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item37","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51029,7 +51029,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item38","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item38","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51044,7 +51044,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item39","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item39","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51059,7 +51059,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item4","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item4","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51074,7 +51074,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item40","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item40","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51089,7 +51089,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item41","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item41","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51104,7 +51104,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item42","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item42","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51119,7 +51119,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item43","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item43","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51134,7 +51134,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item44","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item44","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51149,7 +51149,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item45","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item45","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51164,7 +51164,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item46","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item46","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51179,7 +51179,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item47","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item47","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51194,7 +51194,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item48","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item48","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51209,7 +51209,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item49","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item49","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51224,7 +51224,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item5","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item5","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51239,7 +51239,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item6","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item6","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51254,7 +51254,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item7","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item7","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51269,7 +51269,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item8","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item8","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51284,7 +51284,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.5733485Z''\"","PartitionKey":"large","RowKey":"batch13-item9","Timestamp":"2017-07-13T18:56:54.5733485Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.2247961Z''\"","PartitionKey":"large","RowKey":"batch13-item9","Timestamp":"2017-07-15T00:47:53.2247961Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51299,7 +51299,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.674421Z''\"","PartitionKey":"large","RowKey":"batch14-item0","Timestamp":"2017-07-13T18:56:54.674421Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3288684Z''\"","PartitionKey":"large","RowKey":"batch14-item0","Timestamp":"2017-07-15T00:47:53.3288684Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51314,7 +51314,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.674421Z''\"","PartitionKey":"large","RowKey":"batch14-item1","Timestamp":"2017-07-13T18:56:54.674421Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3288684Z''\"","PartitionKey":"large","RowKey":"batch14-item1","Timestamp":"2017-07-15T00:47:53.3288684Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51329,7 +51329,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.674421Z''\"","PartitionKey":"large","RowKey":"batch14-item10","Timestamp":"2017-07-13T18:56:54.674421Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3288684Z''\"","PartitionKey":"large","RowKey":"batch14-item10","Timestamp":"2017-07-15T00:47:53.3288684Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51344,7 +51344,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.674421Z''\"","PartitionKey":"large","RowKey":"batch14-item11","Timestamp":"2017-07-13T18:56:54.674421Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3288684Z''\"","PartitionKey":"large","RowKey":"batch14-item11","Timestamp":"2017-07-15T00:47:53.3288684Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51359,7 +51359,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.674421Z''\"","PartitionKey":"large","RowKey":"batch14-item12","Timestamp":"2017-07-13T18:56:54.674421Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3288684Z''\"","PartitionKey":"large","RowKey":"batch14-item12","Timestamp":"2017-07-15T00:47:53.3288684Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51374,7 +51374,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.674421Z''\"","PartitionKey":"large","RowKey":"batch14-item13","Timestamp":"2017-07-13T18:56:54.674421Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item13","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51389,7 +51389,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item14","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item14","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51404,7 +51404,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item15","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item15","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51419,7 +51419,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item16","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item16","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51434,7 +51434,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item17","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item17","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51449,7 +51449,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item18","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item18","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51464,7 +51464,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item19","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item19","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51479,7 +51479,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.674421Z''\"","PartitionKey":"large","RowKey":"batch14-item2","Timestamp":"2017-07-13T18:56:54.674421Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3288684Z''\"","PartitionKey":"large","RowKey":"batch14-item2","Timestamp":"2017-07-15T00:47:53.3288684Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51494,7 +51494,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item20","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item20","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51509,7 +51509,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item21","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item21","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51524,7 +51524,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item22","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item22","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51539,7 +51539,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item23","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item23","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51554,7 +51554,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item24","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item24","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51569,7 +51569,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item25","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item25","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51584,7 +51584,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item26","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item26","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51599,7 +51599,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item27","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item27","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51614,7 +51614,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item28","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item28","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51629,7 +51629,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item29","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item29","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51644,7 +51644,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.674421Z''\"","PartitionKey":"large","RowKey":"batch14-item3","Timestamp":"2017-07-13T18:56:54.674421Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3288684Z''\"","PartitionKey":"large","RowKey":"batch14-item3","Timestamp":"2017-07-15T00:47:53.3288684Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51659,7 +51659,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item30","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item30","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51674,7 +51674,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item31","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item31","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51689,7 +51689,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item32","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item32","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51704,7 +51704,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item33","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item33","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51719,7 +51719,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item34","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item34","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51734,7 +51734,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item35","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item35","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51749,7 +51749,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item36","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item36","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51764,7 +51764,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item37","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item37","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51779,7 +51779,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item38","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item38","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51794,7 +51794,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item39","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item39","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51809,7 +51809,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.674421Z''\"","PartitionKey":"large","RowKey":"batch14-item4","Timestamp":"2017-07-13T18:56:54.674421Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3288684Z''\"","PartitionKey":"large","RowKey":"batch14-item4","Timestamp":"2017-07-15T00:47:53.3288684Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51824,7 +51824,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item40","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item40","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51839,7 +51839,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item41","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item41","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51854,7 +51854,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item42","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item42","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51869,7 +51869,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item43","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item43","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51884,7 +51884,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item44","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item44","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51899,7 +51899,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item45","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3298695Z''\"","PartitionKey":"large","RowKey":"batch14-item45","Timestamp":"2017-07-15T00:47:53.3298695Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51914,7 +51914,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item46","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3308702Z''\"","PartitionKey":"large","RowKey":"batch14-item46","Timestamp":"2017-07-15T00:47:53.3308702Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51929,7 +51929,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item47","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3308702Z''\"","PartitionKey":"large","RowKey":"batch14-item47","Timestamp":"2017-07-15T00:47:53.3308702Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51944,7 +51944,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item48","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3308702Z''\"","PartitionKey":"large","RowKey":"batch14-item48","Timestamp":"2017-07-15T00:47:53.3308702Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51959,7 +51959,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.6754213Z''\"","PartitionKey":"large","RowKey":"batch14-item49","Timestamp":"2017-07-13T18:56:54.6754213Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3308702Z''\"","PartitionKey":"large","RowKey":"batch14-item49","Timestamp":"2017-07-15T00:47:53.3308702Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51974,7 +51974,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.674421Z''\"","PartitionKey":"large","RowKey":"batch14-item5","Timestamp":"2017-07-13T18:56:54.674421Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3288684Z''\"","PartitionKey":"large","RowKey":"batch14-item5","Timestamp":"2017-07-15T00:47:53.3288684Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -51989,7 +51989,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.674421Z''\"","PartitionKey":"large","RowKey":"batch14-item6","Timestamp":"2017-07-13T18:56:54.674421Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3288684Z''\"","PartitionKey":"large","RowKey":"batch14-item6","Timestamp":"2017-07-15T00:47:53.3288684Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52004,7 +52004,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.674421Z''\"","PartitionKey":"large","RowKey":"batch14-item7","Timestamp":"2017-07-13T18:56:54.674421Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3288684Z''\"","PartitionKey":"large","RowKey":"batch14-item7","Timestamp":"2017-07-15T00:47:53.3288684Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52019,7 +52019,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.674421Z''\"","PartitionKey":"large","RowKey":"batch14-item8","Timestamp":"2017-07-13T18:56:54.674421Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3288684Z''\"","PartitionKey":"large","RowKey":"batch14-item8","Timestamp":"2017-07-15T00:47:53.3288684Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52034,7 +52034,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.674421Z''\"","PartitionKey":"large","RowKey":"batch14-item9","Timestamp":"2017-07-13T18:56:54.674421Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.3288684Z''\"","PartitionKey":"large","RowKey":"batch14-item9","Timestamp":"2017-07-15T00:47:53.3288684Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52049,7 +52049,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item0","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item0","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52064,7 +52064,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item1","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item1","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52079,7 +52079,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item10","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item10","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52094,7 +52094,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item11","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item11","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52109,7 +52109,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item12","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item12","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52124,7 +52124,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item13","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item13","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52139,7 +52139,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item14","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item14","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52154,7 +52154,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item15","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item15","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52169,7 +52169,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item16","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item16","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52184,7 +52184,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item17","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item17","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52199,7 +52199,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item18","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item18","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52214,7 +52214,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item19","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item19","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52229,7 +52229,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item2","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item2","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52244,7 +52244,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item20","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item20","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52259,7 +52259,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item21","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item21","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52274,7 +52274,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item22","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item22","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52289,7 +52289,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item23","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item23","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52304,7 +52304,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item24","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item24","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52319,7 +52319,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item25","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item25","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52334,7 +52334,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item26","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item26","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52349,7 +52349,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item27","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item27","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52364,7 +52364,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item28","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item28","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52379,7 +52379,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item29","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item29","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52394,7 +52394,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item3","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item3","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52409,7 +52409,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item30","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item30","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52424,7 +52424,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item31","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item31","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52439,7 +52439,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item32","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item32","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52454,7 +52454,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item33","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item33","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52469,7 +52469,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item34","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item34","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52484,7 +52484,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item35","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item35","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52499,7 +52499,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item36","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item36","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52514,7 +52514,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item37","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item37","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52529,7 +52529,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item38","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item38","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52544,7 +52544,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item39","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item39","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52559,7 +52559,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item4","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item4","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52574,7 +52574,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item40","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item40","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52589,7 +52589,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item41","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item41","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52604,7 +52604,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item42","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item42","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52619,7 +52619,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item43","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item43","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52634,7 +52634,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item44","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item44","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52649,7 +52649,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item45","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item45","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52664,7 +52664,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item46","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item46","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52679,7 +52679,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item47","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item47","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52694,7 +52694,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item48","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item48","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52709,7 +52709,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7875021Z''\"","PartitionKey":"large","RowKey":"batch15-item49","Timestamp":"2017-07-13T18:56:54.7875021Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4839772Z''\"","PartitionKey":"large","RowKey":"batch15-item49","Timestamp":"2017-07-15T00:47:53.4839772Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52724,7 +52724,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item5","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item5","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52739,7 +52739,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item6","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item6","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52754,7 +52754,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item7","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item7","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52769,7 +52769,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item8","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item8","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52784,7 +52784,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.7865014Z''\"","PartitionKey":"large","RowKey":"batch15-item9","Timestamp":"2017-07-13T18:56:54.7865014Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.4829765Z''\"","PartitionKey":"large","RowKey":"batch15-item9","Timestamp":"2017-07-15T00:47:53.4829765Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52799,7 +52799,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8915772Z''\"","PartitionKey":"large","RowKey":"batch16-item0","Timestamp":"2017-07-13T18:56:54.8915772Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item0","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52814,7 +52814,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8915772Z''\"","PartitionKey":"large","RowKey":"batch16-item1","Timestamp":"2017-07-13T18:56:54.8915772Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item1","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52829,7 +52829,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item10","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item10","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52844,7 +52844,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item11","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item11","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52859,7 +52859,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item12","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item12","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52874,7 +52874,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item13","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item13","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52889,7 +52889,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item14","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item14","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52904,7 +52904,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item15","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item15","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52919,7 +52919,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item16","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item16","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52934,7 +52934,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item17","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item17","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52949,7 +52949,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item18","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item18","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52964,7 +52964,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item19","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item19","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52979,7 +52979,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8915772Z''\"","PartitionKey":"large","RowKey":"batch16-item2","Timestamp":"2017-07-13T18:56:54.8915772Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item2","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -52994,7 +52994,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item20","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item20","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53009,7 +53009,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item21","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item21","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53024,7 +53024,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item22","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item22","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53039,7 +53039,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item23","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item23","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53054,7 +53054,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item24","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item24","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53069,7 +53069,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item25","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item25","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53084,7 +53084,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item26","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item26","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53099,7 +53099,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item27","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item27","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53114,7 +53114,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item28","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item28","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53129,7 +53129,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item29","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item29","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53144,7 +53144,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8915772Z''\"","PartitionKey":"large","RowKey":"batch16-item3","Timestamp":"2017-07-13T18:56:54.8915772Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item3","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53159,7 +53159,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item30","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item30","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53174,7 +53174,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item31","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item31","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53189,7 +53189,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item32","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item32","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53204,7 +53204,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item33","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item33","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53219,7 +53219,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item34","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item34","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53234,7 +53234,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item35","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item35","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53249,7 +53249,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item36","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item36","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53264,7 +53264,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item37","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item37","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53279,7 +53279,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item38","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item38","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53294,7 +53294,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item39","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item39","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53309,7 +53309,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8915772Z''\"","PartitionKey":"large","RowKey":"batch16-item4","Timestamp":"2017-07-13T18:56:54.8915772Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item4","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53324,7 +53324,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item40","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item40","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53339,7 +53339,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item41","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item41","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53354,7 +53354,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item42","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item42","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53369,7 +53369,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item43","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item43","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53384,7 +53384,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item44","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item44","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53399,7 +53399,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item45","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item45","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53414,7 +53414,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item46","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item46","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53429,7 +53429,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item47","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item47","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53444,7 +53444,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item48","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item48","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53459,7 +53459,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item49","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.6400863Z''\"","PartitionKey":"large","RowKey":"batch16-item49","Timestamp":"2017-07-15T00:47:53.6400863Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53474,7 +53474,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8915772Z''\"","PartitionKey":"large","RowKey":"batch16-item5","Timestamp":"2017-07-13T18:56:54.8915772Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item5","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53489,7 +53489,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item6","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item6","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53504,7 +53504,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item7","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item7","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53519,7 +53519,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item8","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item8","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53534,7 +53534,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.8925774Z''\"","PartitionKey":"large","RowKey":"batch16-item9","Timestamp":"2017-07-13T18:56:54.8925774Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.639086Z''\"","PartitionKey":"large","RowKey":"batch16-item9","Timestamp":"2017-07-15T00:47:53.639086Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53549,7 +53549,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item0","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item0","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53564,7 +53564,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item1","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item1","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53579,7 +53579,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item10","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item10","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53594,7 +53594,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item11","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item11","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53609,7 +53609,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item12","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item12","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53624,7 +53624,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item13","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item13","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53639,7 +53639,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item14","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item14","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53654,7 +53654,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item15","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item15","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53669,7 +53669,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item16","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item16","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53684,7 +53684,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item17","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item17","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53699,7 +53699,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item18","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item18","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53714,7 +53714,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item19","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item19","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53729,7 +53729,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item2","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item2","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53744,7 +53744,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item20","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item20","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53759,7 +53759,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item21","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item21","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53774,7 +53774,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item22","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item22","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53789,7 +53789,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item23","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item23","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53804,7 +53804,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item24","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item24","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53819,7 +53819,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item25","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item25","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53834,7 +53834,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item26","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item26","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53849,7 +53849,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item27","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item27","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53864,7 +53864,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item28","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item28","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53879,7 +53879,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item29","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item29","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53894,7 +53894,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item3","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item3","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53909,7 +53909,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item30","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item30","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53924,7 +53924,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item31","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item31","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53939,7 +53939,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item32","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item32","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53954,7 +53954,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item33","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item33","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53969,7 +53969,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item34","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item34","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53984,7 +53984,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item35","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item35","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -53999,7 +53999,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item36","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item36","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54014,7 +54014,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item37","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item37","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54029,7 +54029,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item38","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item38","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54044,7 +54044,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item39","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item39","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54059,7 +54059,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item4","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item4","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54074,7 +54074,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item40","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item40","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54089,7 +54089,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item41","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item41","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54104,7 +54104,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item42","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item42","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54119,7 +54119,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item43","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item43","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54134,7 +54134,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item44","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item44","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54149,7 +54149,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item45","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item45","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54164,7 +54164,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item46","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item46","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54179,7 +54179,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item47","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item47","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54194,7 +54194,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item48","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item48","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54209,7 +54209,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9976524Z''\"","PartitionKey":"large","RowKey":"batch17-item49","Timestamp":"2017-07-13T18:56:54.9976524Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7711778Z''\"","PartitionKey":"large","RowKey":"batch17-item49","Timestamp":"2017-07-15T00:47:53.7711778Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54224,7 +54224,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item5","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item5","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54239,7 +54239,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item6","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item6","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54254,7 +54254,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item7","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item7","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54269,7 +54269,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item8","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item8","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54284,7 +54284,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.9966516Z''\"","PartitionKey":"large","RowKey":"batch17-item9","Timestamp":"2017-07-13T18:56:54.9966516Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.7701776Z''\"","PartitionKey":"large","RowKey":"batch17-item9","Timestamp":"2017-07-15T00:47:53.7701776Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54299,7 +54299,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item0","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8732487Z''\"","PartitionKey":"large","RowKey":"batch18-item0","Timestamp":"2017-07-15T00:47:53.8732487Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54314,7 +54314,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item1","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8732487Z''\"","PartitionKey":"large","RowKey":"batch18-item1","Timestamp":"2017-07-15T00:47:53.8732487Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54329,7 +54329,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item10","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8732487Z''\"","PartitionKey":"large","RowKey":"batch18-item10","Timestamp":"2017-07-15T00:47:53.8732487Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54344,7 +54344,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item11","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8732487Z''\"","PartitionKey":"large","RowKey":"batch18-item11","Timestamp":"2017-07-15T00:47:53.8732487Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54359,7 +54359,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item12","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item12","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54374,7 +54374,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item13","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item13","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54389,7 +54389,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item14","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item14","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54404,7 +54404,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item15","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item15","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54419,7 +54419,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item16","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item16","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54434,7 +54434,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item17","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item17","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54449,7 +54449,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item18","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item18","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54464,7 +54464,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item19","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item19","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54479,7 +54479,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item2","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8732487Z''\"","PartitionKey":"large","RowKey":"batch18-item2","Timestamp":"2017-07-15T00:47:53.8732487Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54494,7 +54494,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item20","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item20","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54509,7 +54509,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item21","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item21","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54524,7 +54524,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item22","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item22","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54539,7 +54539,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item23","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item23","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54554,7 +54554,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item24","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item24","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54569,7 +54569,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item25","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item25","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54584,7 +54584,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item26","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item26","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54599,7 +54599,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item27","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item27","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54614,7 +54614,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item28","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item28","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54629,7 +54629,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item29","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item29","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54644,7 +54644,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item3","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8732487Z''\"","PartitionKey":"large","RowKey":"batch18-item3","Timestamp":"2017-07-15T00:47:53.8732487Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54659,7 +54659,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item30","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item30","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54674,7 +54674,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item31","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item31","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54689,7 +54689,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item32","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item32","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54704,7 +54704,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item33","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item33","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54719,7 +54719,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item34","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item34","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54734,7 +54734,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item35","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item35","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54749,7 +54749,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item36","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item36","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54764,7 +54764,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item37","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item37","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54779,7 +54779,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item38","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item38","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54794,7 +54794,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item39","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item39","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54809,7 +54809,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item4","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8732487Z''\"","PartitionKey":"large","RowKey":"batch18-item4","Timestamp":"2017-07-15T00:47:53.8732487Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54824,7 +54824,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item40","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item40","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54839,7 +54839,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item41","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item41","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54854,7 +54854,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item42","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item42","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54869,7 +54869,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item43","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item43","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54884,7 +54884,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item44","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item44","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54899,7 +54899,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item45","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item45","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54914,7 +54914,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item46","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item46","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54929,7 +54929,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item47","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item47","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54944,7 +54944,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item48","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item48","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54959,7 +54959,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.1007263Z''\"","PartitionKey":"large","RowKey":"batch18-item49","Timestamp":"2017-07-13T18:56:55.1007263Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8742499Z''\"","PartitionKey":"large","RowKey":"batch18-item49","Timestamp":"2017-07-15T00:47:53.8742499Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54974,7 +54974,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item5","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8732487Z''\"","PartitionKey":"large","RowKey":"batch18-item5","Timestamp":"2017-07-15T00:47:53.8732487Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -54989,7 +54989,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item6","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8732487Z''\"","PartitionKey":"large","RowKey":"batch18-item6","Timestamp":"2017-07-15T00:47:53.8732487Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55004,7 +55004,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item7","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8732487Z''\"","PartitionKey":"large","RowKey":"batch18-item7","Timestamp":"2017-07-15T00:47:53.8732487Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55019,7 +55019,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item8","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8732487Z''\"","PartitionKey":"large","RowKey":"batch18-item8","Timestamp":"2017-07-15T00:47:53.8732487Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55034,7 +55034,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.099726Z''\"","PartitionKey":"large","RowKey":"batch18-item9","Timestamp":"2017-07-13T18:56:55.099726Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.8732487Z''\"","PartitionKey":"large","RowKey":"batch18-item9","Timestamp":"2017-07-15T00:47:53.8732487Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55049,7 +55049,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item0","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item0","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55064,7 +55064,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item1","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item1","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55079,7 +55079,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item10","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item10","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55094,7 +55094,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item11","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item11","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55109,7 +55109,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item12","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item12","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55124,7 +55124,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item13","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item13","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55139,7 +55139,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item14","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item14","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55154,7 +55154,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item15","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item15","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55169,7 +55169,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item16","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item16","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55184,7 +55184,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item17","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item17","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55199,7 +55199,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item18","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item18","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55214,7 +55214,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item19","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item19","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55229,7 +55229,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item2","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item2","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55244,7 +55244,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item20","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item20","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55259,7 +55259,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item21","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item21","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55274,7 +55274,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item22","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item22","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55289,7 +55289,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item23","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item23","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55304,7 +55304,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item24","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item24","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55319,7 +55319,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item25","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item25","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55334,7 +55334,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item26","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item26","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55349,7 +55349,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item27","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item27","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55364,7 +55364,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item28","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item28","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55379,7 +55379,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item29","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item29","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55394,7 +55394,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item3","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item3","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55409,7 +55409,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item30","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item30","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55424,7 +55424,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item31","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item31","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55439,7 +55439,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item32","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item32","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55454,7 +55454,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item33","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item33","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55469,7 +55469,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item34","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item34","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55484,7 +55484,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item35","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item35","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55499,7 +55499,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item36","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item36","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55514,7 +55514,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item37","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item37","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55529,7 +55529,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item38","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item38","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55544,7 +55544,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item39","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item39","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55559,7 +55559,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item4","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item4","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55574,7 +55574,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item40","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item40","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55589,7 +55589,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item41","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item41","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55604,7 +55604,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item42","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item42","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55619,7 +55619,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item43","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item43","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55634,7 +55634,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item44","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item44","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55649,7 +55649,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item45","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item45","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55664,7 +55664,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item46","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item46","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55679,7 +55679,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item47","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item47","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55694,7 +55694,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item48","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item48","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55709,7 +55709,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2088038Z''\"","PartitionKey":"large","RowKey":"batch19-item49","Timestamp":"2017-07-13T18:56:55.2088038Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9853275Z''\"","PartitionKey":"large","RowKey":"batch19-item49","Timestamp":"2017-07-15T00:47:53.9853275Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55724,7 +55724,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item5","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item5","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55739,7 +55739,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item6","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item6","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55754,7 +55754,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item7","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item7","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55769,7 +55769,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item8","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item8","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55784,7 +55784,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A55.2078031Z''\"","PartitionKey":"large","RowKey":"batch19-item9","Timestamp":"2017-07-13T18:56:55.2078031Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A53.9843263Z''\"","PartitionKey":"large","RowKey":"batch19-item9","Timestamp":"2017-07-15T00:47:53.9843263Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55799,7 +55799,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item0","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0900032Z''\"","PartitionKey":"large","RowKey":"batch2-item0","Timestamp":"2017-07-15T00:47:52.0900032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55814,7 +55814,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item1","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0900032Z''\"","PartitionKey":"large","RowKey":"batch2-item1","Timestamp":"2017-07-15T00:47:52.0900032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55829,7 +55829,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item10","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item10","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55844,7 +55844,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item11","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item11","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55859,7 +55859,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item12","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item12","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55874,7 +55874,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item13","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item13","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55889,7 +55889,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item14","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item14","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55904,7 +55904,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item15","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item15","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55919,7 +55919,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item16","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item16","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55934,7 +55934,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item17","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item17","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55949,7 +55949,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item18","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item18","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55964,7 +55964,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item19","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item19","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55979,7 +55979,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item2","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0900032Z''\"","PartitionKey":"large","RowKey":"batch2-item2","Timestamp":"2017-07-15T00:47:52.0900032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -55994,7 +55994,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item20","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item20","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56009,7 +56009,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item21","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item21","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56024,7 +56024,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item22","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item22","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56039,7 +56039,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item23","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item23","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56054,7 +56054,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item24","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item24","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56069,7 +56069,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item25","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item25","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56084,7 +56084,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item26","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item26","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56099,7 +56099,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item27","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item27","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56114,7 +56114,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item28","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item28","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56129,7 +56129,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item29","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item29","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56144,7 +56144,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item3","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0900032Z''\"","PartitionKey":"large","RowKey":"batch2-item3","Timestamp":"2017-07-15T00:47:52.0900032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56159,7 +56159,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item30","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item30","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56174,7 +56174,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item31","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item31","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56189,7 +56189,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item32","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item32","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56204,7 +56204,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item33","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item33","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56219,7 +56219,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item34","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item34","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56234,7 +56234,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item35","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item35","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56249,7 +56249,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item36","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item36","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56264,7 +56264,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item37","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item37","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56279,7 +56279,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item38","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item38","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56294,7 +56294,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item39","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item39","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56309,7 +56309,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item4","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0900032Z''\"","PartitionKey":"large","RowKey":"batch2-item4","Timestamp":"2017-07-15T00:47:52.0900032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56324,7 +56324,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item40","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item40","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56339,7 +56339,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item41","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item41","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56354,7 +56354,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item42","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item42","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56369,7 +56369,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item43","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item43","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56384,7 +56384,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item44","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item44","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56399,7 +56399,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item45","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item45","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56414,7 +56414,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item46","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item46","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56429,7 +56429,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item47","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item47","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56444,7 +56444,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item48","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item48","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56459,7 +56459,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2644095Z''\"","PartitionKey":"large","RowKey":"batch2-item49","Timestamp":"2017-07-13T18:56:53.2644095Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item49","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56474,7 +56474,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item5","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0900032Z''\"","PartitionKey":"large","RowKey":"batch2-item5","Timestamp":"2017-07-15T00:47:52.0900032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56489,7 +56489,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item6","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0900032Z''\"","PartitionKey":"large","RowKey":"batch2-item6","Timestamp":"2017-07-15T00:47:52.0900032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56504,7 +56504,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item7","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0900032Z''\"","PartitionKey":"large","RowKey":"batch2-item7","Timestamp":"2017-07-15T00:47:52.0900032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56519,7 +56519,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item8","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0900032Z''\"","PartitionKey":"large","RowKey":"batch2-item8","Timestamp":"2017-07-15T00:47:52.0900032Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56534,7 +56534,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.2634088Z''\"","PartitionKey":"large","RowKey":"batch2-item9","Timestamp":"2017-07-13T18:56:53.2634088Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.0910039Z''\"","PartitionKey":"large","RowKey":"batch2-item9","Timestamp":"2017-07-15T00:47:52.0910039Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56549,7 +56549,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item0","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item0","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56564,7 +56564,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item1","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item1","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56579,7 +56579,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item10","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item10","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56594,7 +56594,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item11","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item11","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56609,7 +56609,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item12","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item12","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56624,7 +56624,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item13","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item13","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56639,7 +56639,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item14","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item14","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56654,7 +56654,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item15","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item15","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56669,7 +56669,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item16","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item16","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56684,7 +56684,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item17","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item17","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56699,7 +56699,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item18","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item18","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56714,7 +56714,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item19","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item19","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56729,7 +56729,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item2","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item2","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56744,7 +56744,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item20","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item20","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56759,7 +56759,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item21","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item21","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56774,7 +56774,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item22","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item22","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56789,7 +56789,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item23","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item23","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56804,7 +56804,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item24","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item24","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56819,7 +56819,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item25","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item25","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56834,7 +56834,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item26","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item26","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56849,7 +56849,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item27","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item27","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56864,7 +56864,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item28","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item28","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56879,7 +56879,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item29","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item29","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56894,7 +56894,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item3","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item3","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56909,7 +56909,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item30","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item30","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56924,7 +56924,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item31","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item31","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56939,7 +56939,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item32","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item32","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56954,7 +56954,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item33","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item33","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56969,7 +56969,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item34","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item34","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56984,7 +56984,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item35","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item35","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -56999,7 +56999,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item36","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item36","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57014,7 +57014,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item37","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item37","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57029,7 +57029,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item38","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item38","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57044,7 +57044,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item39","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item39","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57059,7 +57059,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item4","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item4","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57074,7 +57074,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item40","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item40","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57089,7 +57089,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item41","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item41","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57104,7 +57104,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item42","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item42","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57119,7 +57119,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item43","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item43","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57134,7 +57134,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item44","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item44","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57149,7 +57149,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item45","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item45","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57164,7 +57164,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item46","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item46","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57179,7 +57179,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item47","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item47","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57194,7 +57194,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item48","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item48","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57209,7 +57209,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item49","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.2080857Z''\"","PartitionKey":"large","RowKey":"batch3-item49","Timestamp":"2017-07-15T00:47:52.2080857Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57224,7 +57224,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item5","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item5","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57239,7 +57239,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item6","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item6","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57254,7 +57254,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item7","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item7","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57269,7 +57269,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item8","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item8","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57284,7 +57284,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.3754891Z''\"","PartitionKey":"large","RowKey":"batch3-item9","Timestamp":"2017-07-13T18:56:53.3754891Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.207085Z''\"","PartitionKey":"large","RowKey":"batch3-item9","Timestamp":"2017-07-15T00:47:52.207085Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57299,7 +57299,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4835666Z''\"","PartitionKey":"large","RowKey":"batch4-item0","Timestamp":"2017-07-13T18:56:53.4835666Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item0","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57314,7 +57314,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4835666Z''\"","PartitionKey":"large","RowKey":"batch4-item1","Timestamp":"2017-07-13T18:56:53.4835666Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item1","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57329,7 +57329,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item10","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item10","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57344,7 +57344,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item11","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item11","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57359,7 +57359,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item12","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item12","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57374,7 +57374,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item13","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item13","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57389,7 +57389,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item14","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item14","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57404,7 +57404,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item15","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item15","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57419,7 +57419,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item16","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item16","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57434,7 +57434,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item17","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item17","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57449,7 +57449,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item18","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item18","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57464,7 +57464,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item19","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item19","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57479,7 +57479,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4835666Z''\"","PartitionKey":"large","RowKey":"batch4-item2","Timestamp":"2017-07-13T18:56:53.4835666Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item2","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57494,7 +57494,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item20","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item20","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57509,7 +57509,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item21","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item21","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57524,7 +57524,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item22","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item22","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57539,7 +57539,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item23","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item23","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57554,7 +57554,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item24","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item24","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57569,7 +57569,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item25","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item25","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57584,7 +57584,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item26","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item26","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57599,7 +57599,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item27","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item27","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57614,7 +57614,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item28","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item28","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57629,7 +57629,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item29","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item29","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57644,7 +57644,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4835666Z''\"","PartitionKey":"large","RowKey":"batch4-item3","Timestamp":"2017-07-13T18:56:53.4835666Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item3","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57659,7 +57659,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item30","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item30","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57674,7 +57674,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item31","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item31","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57689,7 +57689,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item32","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item32","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57704,7 +57704,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item33","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item33","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57719,7 +57719,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item34","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item34","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57734,7 +57734,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item35","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item35","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57749,7 +57749,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item36","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item36","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57764,7 +57764,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4855681Z''\"","PartitionKey":"large","RowKey":"batch4-item37","Timestamp":"2017-07-13T18:56:53.4855681Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item37","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57779,7 +57779,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4855681Z''\"","PartitionKey":"large","RowKey":"batch4-item38","Timestamp":"2017-07-13T18:56:53.4855681Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item38","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57794,7 +57794,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4855681Z''\"","PartitionKey":"large","RowKey":"batch4-item39","Timestamp":"2017-07-13T18:56:53.4855681Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item39","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57809,7 +57809,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4835666Z''\"","PartitionKey":"large","RowKey":"batch4-item4","Timestamp":"2017-07-13T18:56:53.4835666Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item4","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57824,7 +57824,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4855681Z''\"","PartitionKey":"large","RowKey":"batch4-item40","Timestamp":"2017-07-13T18:56:53.4855681Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item40","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57839,7 +57839,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4855681Z''\"","PartitionKey":"large","RowKey":"batch4-item41","Timestamp":"2017-07-13T18:56:53.4855681Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item41","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57854,7 +57854,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4855681Z''\"","PartitionKey":"large","RowKey":"batch4-item42","Timestamp":"2017-07-13T18:56:53.4855681Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item42","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57869,7 +57869,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4855681Z''\"","PartitionKey":"large","RowKey":"batch4-item43","Timestamp":"2017-07-13T18:56:53.4855681Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item43","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57884,7 +57884,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4855681Z''\"","PartitionKey":"large","RowKey":"batch4-item44","Timestamp":"2017-07-13T18:56:53.4855681Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item44","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57899,7 +57899,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4855681Z''\"","PartitionKey":"large","RowKey":"batch4-item45","Timestamp":"2017-07-13T18:56:53.4855681Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item45","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57914,7 +57914,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4855681Z''\"","PartitionKey":"large","RowKey":"batch4-item46","Timestamp":"2017-07-13T18:56:53.4855681Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item46","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57929,7 +57929,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4855681Z''\"","PartitionKey":"large","RowKey":"batch4-item47","Timestamp":"2017-07-13T18:56:53.4855681Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item47","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57944,7 +57944,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4855681Z''\"","PartitionKey":"large","RowKey":"batch4-item48","Timestamp":"2017-07-13T18:56:53.4855681Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item48","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57959,7 +57959,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4855681Z''\"","PartitionKey":"large","RowKey":"batch4-item49","Timestamp":"2017-07-13T18:56:53.4855681Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3131595Z''\"","PartitionKey":"large","RowKey":"batch4-item49","Timestamp":"2017-07-15T00:47:52.3131595Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57974,7 +57974,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4835666Z''\"","PartitionKey":"large","RowKey":"batch4-item5","Timestamp":"2017-07-13T18:56:53.4835666Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item5","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -57989,7 +57989,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4835666Z''\"","PartitionKey":"large","RowKey":"batch4-item6","Timestamp":"2017-07-13T18:56:53.4835666Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item6","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58004,7 +58004,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4835666Z''\"","PartitionKey":"large","RowKey":"batch4-item7","Timestamp":"2017-07-13T18:56:53.4835666Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item7","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58019,7 +58019,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4835666Z''\"","PartitionKey":"large","RowKey":"batch4-item8","Timestamp":"2017-07-13T18:56:53.4835666Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item8","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58034,7 +58034,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.4845678Z''\"","PartitionKey":"large","RowKey":"batch4-item9","Timestamp":"2017-07-13T18:56:53.4845678Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.3121588Z''\"","PartitionKey":"large","RowKey":"batch4-item9","Timestamp":"2017-07-15T00:47:52.3121588Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58049,7 +58049,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6206654Z''\"","PartitionKey":"large","RowKey":"batch5-item0","Timestamp":"2017-07-13T18:56:53.6206654Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item0","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58064,7 +58064,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6206654Z''\"","PartitionKey":"large","RowKey":"batch5-item1","Timestamp":"2017-07-13T18:56:53.6206654Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item1","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58079,7 +58079,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6206654Z''\"","PartitionKey":"large","RowKey":"batch5-item10","Timestamp":"2017-07-13T18:56:53.6206654Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item10","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58094,7 +58094,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6206654Z''\"","PartitionKey":"large","RowKey":"batch5-item11","Timestamp":"2017-07-13T18:56:53.6206654Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item11","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58109,7 +58109,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6206654Z''\"","PartitionKey":"large","RowKey":"batch5-item12","Timestamp":"2017-07-13T18:56:53.6206654Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item12","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58124,7 +58124,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item13","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item13","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58139,7 +58139,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item14","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item14","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58154,7 +58154,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item15","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item15","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58169,7 +58169,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item16","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item16","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58184,7 +58184,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item17","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item17","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58199,7 +58199,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item18","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item18","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58214,7 +58214,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item19","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item19","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58229,7 +58229,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6206654Z''\"","PartitionKey":"large","RowKey":"batch5-item2","Timestamp":"2017-07-13T18:56:53.6206654Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item2","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58244,7 +58244,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item20","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item20","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58259,7 +58259,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item21","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item21","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58274,7 +58274,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item22","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item22","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58289,7 +58289,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item23","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item23","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58304,7 +58304,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item24","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item24","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58319,7 +58319,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item25","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item25","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58334,7 +58334,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item26","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item26","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58349,7 +58349,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item27","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item27","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58364,7 +58364,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item28","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item28","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58379,7 +58379,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item29","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item29","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58394,7 +58394,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6206654Z''\"","PartitionKey":"large","RowKey":"batch5-item3","Timestamp":"2017-07-13T18:56:53.6206654Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item3","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58409,7 +58409,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item30","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item30","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58424,7 +58424,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item31","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item31","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58439,7 +58439,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item32","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item32","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58454,7 +58454,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item33","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item33","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58469,7 +58469,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item34","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item34","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58484,7 +58484,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item35","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item35","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58499,7 +58499,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item36","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item36","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58514,7 +58514,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item37","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item37","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58529,7 +58529,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item38","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item38","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58544,7 +58544,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item39","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item39","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58559,7 +58559,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6206654Z''\"","PartitionKey":"large","RowKey":"batch5-item4","Timestamp":"2017-07-13T18:56:53.6206654Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item4","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58574,7 +58574,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item40","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item40","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58589,7 +58589,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item41","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item41","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58604,7 +58604,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item42","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item42","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58619,7 +58619,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item43","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4132286Z''\"","PartitionKey":"large","RowKey":"batch5-item43","Timestamp":"2017-07-15T00:47:52.4132286Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58634,7 +58634,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item44","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4132286Z''\"","PartitionKey":"large","RowKey":"batch5-item44","Timestamp":"2017-07-15T00:47:52.4132286Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58649,7 +58649,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item45","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4132286Z''\"","PartitionKey":"large","RowKey":"batch5-item45","Timestamp":"2017-07-15T00:47:52.4132286Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58664,7 +58664,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item46","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4132286Z''\"","PartitionKey":"large","RowKey":"batch5-item46","Timestamp":"2017-07-15T00:47:52.4132286Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58679,7 +58679,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6216657Z''\"","PartitionKey":"large","RowKey":"batch5-item47","Timestamp":"2017-07-13T18:56:53.6216657Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4132286Z''\"","PartitionKey":"large","RowKey":"batch5-item47","Timestamp":"2017-07-15T00:47:52.4132286Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58694,7 +58694,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6226668Z''\"","PartitionKey":"large","RowKey":"batch5-item48","Timestamp":"2017-07-13T18:56:53.6226668Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4132286Z''\"","PartitionKey":"large","RowKey":"batch5-item48","Timestamp":"2017-07-15T00:47:52.4132286Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58709,7 +58709,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6226668Z''\"","PartitionKey":"large","RowKey":"batch5-item49","Timestamp":"2017-07-13T18:56:53.6226668Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4132286Z''\"","PartitionKey":"large","RowKey":"batch5-item49","Timestamp":"2017-07-15T00:47:52.4132286Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58724,7 +58724,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6206654Z''\"","PartitionKey":"large","RowKey":"batch5-item5","Timestamp":"2017-07-13T18:56:53.6206654Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item5","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58739,7 +58739,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6206654Z''\"","PartitionKey":"large","RowKey":"batch5-item6","Timestamp":"2017-07-13T18:56:53.6206654Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item6","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58754,7 +58754,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6206654Z''\"","PartitionKey":"large","RowKey":"batch5-item7","Timestamp":"2017-07-13T18:56:53.6206654Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item7","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58769,7 +58769,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6206654Z''\"","PartitionKey":"large","RowKey":"batch5-item8","Timestamp":"2017-07-13T18:56:53.6206654Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item8","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58784,7 +58784,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.6206654Z''\"","PartitionKey":"large","RowKey":"batch5-item9","Timestamp":"2017-07-13T18:56:53.6206654Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.4122279Z''\"","PartitionKey":"large","RowKey":"batch5-item9","Timestamp":"2017-07-15T00:47:52.4122279Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58799,7 +58799,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.770773Z''\"","PartitionKey":"large","RowKey":"batch6-item0","Timestamp":"2017-07-13T18:56:53.770773Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item0","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58814,7 +58814,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.770773Z''\"","PartitionKey":"large","RowKey":"batch6-item1","Timestamp":"2017-07-13T18:56:53.770773Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item1","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58829,7 +58829,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item10","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item10","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58844,7 +58844,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item11","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item11","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58859,7 +58859,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item12","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item12","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58874,7 +58874,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item13","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item13","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58889,7 +58889,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item14","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item14","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58904,7 +58904,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item15","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item15","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58919,7 +58919,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item16","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item16","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58934,7 +58934,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item17","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item17","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58949,7 +58949,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item18","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item18","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58964,7 +58964,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item19","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item19","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58979,7 +58979,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.770773Z''\"","PartitionKey":"large","RowKey":"batch6-item2","Timestamp":"2017-07-13T18:56:53.770773Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item2","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -58994,7 +58994,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item20","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item20","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59009,7 +59009,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item21","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item21","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59024,7 +59024,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item22","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item22","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59039,7 +59039,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item23","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item23","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59054,7 +59054,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item24","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item24","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59069,7 +59069,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item25","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item25","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59084,7 +59084,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item26","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item26","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59099,7 +59099,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item27","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item27","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59114,7 +59114,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item28","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item28","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59129,7 +59129,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item29","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item29","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59144,7 +59144,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.770773Z''\"","PartitionKey":"large","RowKey":"batch6-item3","Timestamp":"2017-07-13T18:56:53.770773Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item3","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59159,7 +59159,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item30","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item30","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59174,7 +59174,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item31","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item31","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59189,7 +59189,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item32","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item32","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59204,7 +59204,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item33","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item33","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59219,7 +59219,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item34","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item34","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59234,7 +59234,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item35","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item35","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59249,7 +59249,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item36","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item36","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59264,7 +59264,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item37","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item37","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59279,7 +59279,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item38","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item38","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59294,7 +59294,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item39","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item39","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59309,7 +59309,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.770773Z''\"","PartitionKey":"large","RowKey":"batch6-item4","Timestamp":"2017-07-13T18:56:53.770773Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item4","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59324,7 +59324,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item40","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item40","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59339,7 +59339,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item41","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item41","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59354,7 +59354,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item42","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item42","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59369,7 +59369,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item43","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item43","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59384,7 +59384,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item44","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item44","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59399,7 +59399,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item45","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item45","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59414,7 +59414,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item46","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item46","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59429,7 +59429,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item47","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item47","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59444,7 +59444,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item48","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item48","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59459,7 +59459,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7727762Z''\"","PartitionKey":"large","RowKey":"batch6-item49","Timestamp":"2017-07-13T18:56:53.7727762Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item49","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59474,7 +59474,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.770773Z''\"","PartitionKey":"large","RowKey":"batch6-item5","Timestamp":"2017-07-13T18:56:53.770773Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item5","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59489,7 +59489,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.770773Z''\"","PartitionKey":"large","RowKey":"batch6-item6","Timestamp":"2017-07-13T18:56:53.770773Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item6","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59504,7 +59504,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.770773Z''\"","PartitionKey":"large","RowKey":"batch6-item7","Timestamp":"2017-07-13T18:56:53.770773Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item7","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59519,7 +59519,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item8","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item8","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59534,7 +59534,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.7717737Z''\"","PartitionKey":"large","RowKey":"batch6-item9","Timestamp":"2017-07-13T18:56:53.7717737Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.5143014Z''\"","PartitionKey":"large","RowKey":"batch6-item9","Timestamp":"2017-07-15T00:47:52.5143014Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59549,7 +59549,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item0","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6153694Z''\"","PartitionKey":"large","RowKey":"batch7-item0","Timestamp":"2017-07-15T00:47:52.6153694Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59564,7 +59564,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item1","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6153694Z''\"","PartitionKey":"large","RowKey":"batch7-item1","Timestamp":"2017-07-15T00:47:52.6153694Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59579,7 +59579,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item10","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item10","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59594,7 +59594,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item11","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item11","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59609,7 +59609,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item12","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item12","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59624,7 +59624,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item13","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item13","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59639,7 +59639,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item14","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item14","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59654,7 +59654,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item15","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item15","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59669,7 +59669,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item16","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item16","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59684,7 +59684,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item17","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item17","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59699,7 +59699,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item18","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item18","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59714,7 +59714,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item19","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item19","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59729,7 +59729,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item2","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6153694Z''\"","PartitionKey":"large","RowKey":"batch7-item2","Timestamp":"2017-07-15T00:47:52.6153694Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59744,7 +59744,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item20","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item20","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59759,7 +59759,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item21","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item21","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59774,7 +59774,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item22","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item22","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59789,7 +59789,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item23","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item23","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59804,7 +59804,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item24","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item24","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59819,7 +59819,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item25","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item25","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59834,7 +59834,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item26","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item26","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59849,7 +59849,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item27","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item27","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59864,7 +59864,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item28","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item28","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59879,7 +59879,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item29","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item29","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59894,7 +59894,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item3","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6153694Z''\"","PartitionKey":"large","RowKey":"batch7-item3","Timestamp":"2017-07-15T00:47:52.6153694Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59909,7 +59909,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item30","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item30","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59924,7 +59924,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item31","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item31","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59939,7 +59939,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item32","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item32","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59954,7 +59954,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item33","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item33","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59969,7 +59969,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item34","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item34","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59984,7 +59984,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item35","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item35","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -59999,7 +59999,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item36","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item36","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60014,7 +60014,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item37","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item37","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60029,7 +60029,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item38","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item38","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60044,7 +60044,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item39","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item39","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60059,7 +60059,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item4","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6153694Z''\"","PartitionKey":"large","RowKey":"batch7-item4","Timestamp":"2017-07-15T00:47:52.6153694Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60074,7 +60074,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item40","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item40","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60089,7 +60089,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item41","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item41","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60104,7 +60104,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item42","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item42","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60119,7 +60119,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item43","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item43","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60134,7 +60134,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item44","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item44","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60149,7 +60149,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item45","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item45","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60164,7 +60164,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8798512Z''\"","PartitionKey":"large","RowKey":"batch7-item46","Timestamp":"2017-07-13T18:56:53.8798512Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item46","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60179,7 +60179,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8798512Z''\"","PartitionKey":"large","RowKey":"batch7-item47","Timestamp":"2017-07-13T18:56:53.8798512Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item47","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60194,7 +60194,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8798512Z''\"","PartitionKey":"large","RowKey":"batch7-item48","Timestamp":"2017-07-13T18:56:53.8798512Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item48","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60209,7 +60209,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8798512Z''\"","PartitionKey":"large","RowKey":"batch7-item49","Timestamp":"2017-07-13T18:56:53.8798512Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item49","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60224,7 +60224,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item5","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6153694Z''\"","PartitionKey":"large","RowKey":"batch7-item5","Timestamp":"2017-07-15T00:47:52.6153694Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60239,7 +60239,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item6","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6153694Z''\"","PartitionKey":"large","RowKey":"batch7-item6","Timestamp":"2017-07-15T00:47:52.6153694Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60254,7 +60254,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item7","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6153694Z''\"","PartitionKey":"large","RowKey":"batch7-item7","Timestamp":"2017-07-15T00:47:52.6153694Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60269,7 +60269,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item8","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6153694Z''\"","PartitionKey":"large","RowKey":"batch7-item8","Timestamp":"2017-07-15T00:47:52.6153694Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60284,7 +60284,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.8788505Z''\"","PartitionKey":"large","RowKey":"batch7-item9","Timestamp":"2017-07-13T18:56:53.8788505Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.6163705Z''\"","PartitionKey":"large","RowKey":"batch7-item9","Timestamp":"2017-07-15T00:47:52.6163705Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60299,7 +60299,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9829247Z''\"","PartitionKey":"large","RowKey":"batch8-item0","Timestamp":"2017-07-13T18:56:53.9829247Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7184419Z''\"","PartitionKey":"large","RowKey":"batch8-item0","Timestamp":"2017-07-15T00:47:52.7184419Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60314,7 +60314,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item1","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item1","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60329,7 +60329,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item10","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item10","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60344,7 +60344,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item11","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item11","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60359,7 +60359,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item12","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item12","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60374,7 +60374,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item13","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item13","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60389,7 +60389,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item14","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item14","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60404,7 +60404,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item15","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item15","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60419,7 +60419,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item16","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item16","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60434,7 +60434,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item17","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item17","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60449,7 +60449,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item18","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item18","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60464,7 +60464,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item19","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item19","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60479,7 +60479,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item2","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item2","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60494,7 +60494,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item20","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item20","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60509,7 +60509,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item21","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item21","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60524,7 +60524,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item22","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item22","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60539,7 +60539,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item23","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item23","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60554,7 +60554,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item24","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item24","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60569,7 +60569,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item25","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item25","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60584,7 +60584,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item26","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item26","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60599,7 +60599,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item27","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item27","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60614,7 +60614,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item28","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item28","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60629,7 +60629,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item29","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item29","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60644,7 +60644,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item3","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item3","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60659,7 +60659,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item30","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item30","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60674,7 +60674,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item31","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item31","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60689,7 +60689,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item32","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item32","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60704,7 +60704,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item33","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item33","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60719,7 +60719,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item34","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item34","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60734,7 +60734,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item35","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item35","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60749,7 +60749,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item36","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item36","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60764,7 +60764,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item37","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item37","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60779,7 +60779,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item38","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item38","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60794,7 +60794,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item39","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item39","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60809,7 +60809,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item4","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item4","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60824,7 +60824,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item40","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item40","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60839,7 +60839,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item41","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item41","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60854,7 +60854,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item42","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item42","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60869,7 +60869,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item43","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item43","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60884,7 +60884,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item44","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item44","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60899,7 +60899,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item45","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item45","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60914,7 +60914,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item46","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item46","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60929,7 +60929,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item47","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item47","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60944,7 +60944,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item48","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item48","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60959,7 +60959,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9849261Z''\"","PartitionKey":"large","RowKey":"batch8-item49","Timestamp":"2017-07-13T18:56:53.9849261Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item49","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60974,7 +60974,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item5","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item5","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -60989,7 +60989,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item6","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item6","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61004,7 +61004,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item7","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item7","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61019,7 +61019,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item8","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item8","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61034,7 +61034,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A53.9839254Z''\"","PartitionKey":"large","RowKey":"batch8-item9","Timestamp":"2017-07-13T18:56:53.9839254Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.7194426Z''\"","PartitionKey":"large","RowKey":"batch8-item9","Timestamp":"2017-07-15T00:47:52.7194426Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61049,7 +61049,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item0","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8185122Z''\"","PartitionKey":"large","RowKey":"batch9-item0","Timestamp":"2017-07-15T00:47:52.8185122Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61064,7 +61064,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item1","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8185122Z''\"","PartitionKey":"large","RowKey":"batch9-item1","Timestamp":"2017-07-15T00:47:52.8185122Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61079,7 +61079,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item10","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item10","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61094,7 +61094,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item11","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item11","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61109,7 +61109,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item12","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item12","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61124,7 +61124,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item13","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item13","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61139,7 +61139,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item14","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item14","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61154,7 +61154,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item15","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item15","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61169,7 +61169,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item16","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item16","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61184,7 +61184,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item17","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item17","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61199,7 +61199,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item18","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item18","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61214,7 +61214,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item19","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item19","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61229,7 +61229,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item2","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8185122Z''\"","PartitionKey":"large","RowKey":"batch9-item2","Timestamp":"2017-07-15T00:47:52.8185122Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61244,7 +61244,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item20","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item20","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61259,7 +61259,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item21","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item21","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61274,7 +61274,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item22","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item22","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61289,7 +61289,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item23","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item23","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61304,7 +61304,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item24","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item24","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61319,7 +61319,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item25","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item25","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61334,7 +61334,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item26","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item26","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61349,7 +61349,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item27","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item27","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61364,7 +61364,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item28","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item28","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61379,7 +61379,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item29","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item29","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61394,7 +61394,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item3","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8185122Z''\"","PartitionKey":"large","RowKey":"batch9-item3","Timestamp":"2017-07-15T00:47:52.8185122Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61409,7 +61409,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item30","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item30","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61424,7 +61424,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item31","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item31","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61439,7 +61439,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item32","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item32","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61454,7 +61454,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item33","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item33","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61469,7 +61469,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item34","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item34","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61484,7 +61484,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item35","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item35","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61499,7 +61499,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item36","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item36","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61514,7 +61514,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item37","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item37","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61529,7 +61529,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item38","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item38","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61544,7 +61544,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item39","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item39","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61559,7 +61559,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item4","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8185122Z''\"","PartitionKey":"large","RowKey":"batch9-item4","Timestamp":"2017-07-15T00:47:52.8185122Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61574,7 +61574,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item40","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item40","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61589,7 +61589,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item41","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item41","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61604,7 +61604,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item42","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item42","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61619,7 +61619,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item43","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item43","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61634,7 +61634,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item44","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item44","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61649,7 +61649,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0980077Z''\"","PartitionKey":"large","RowKey":"batch9-item45","Timestamp":"2017-07-13T18:56:54.0980077Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item45","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61664,7 +61664,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0980077Z''\"","PartitionKey":"large","RowKey":"batch9-item46","Timestamp":"2017-07-13T18:56:54.0980077Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item46","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61679,7 +61679,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0980077Z''\"","PartitionKey":"large","RowKey":"batch9-item47","Timestamp":"2017-07-13T18:56:54.0980077Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item47","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61694,7 +61694,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0980077Z''\"","PartitionKey":"large","RowKey":"batch9-item48","Timestamp":"2017-07-13T18:56:54.0980077Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item48","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61709,7 +61709,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0980077Z''\"","PartitionKey":"large","RowKey":"batch9-item49","Timestamp":"2017-07-13T18:56:54.0980077Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item49","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61724,7 +61724,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item5","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item5","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61739,7 +61739,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item6","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item6","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61754,7 +61754,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item7","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item7","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61769,7 +61769,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item8","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item8","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61784,7 +61784,7 @@ interactions: world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello - world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A56%3A54.0970065Z''\"","PartitionKey":"large","RowKey":"batch9-item9","Timestamp":"2017-07-13T18:56:54.0970065Z","test":"true","test2":"hello + world;hello world;","test3@odata.type":"Edm.Int64","test3":"3","test4@odata.type":"Edm.Int64","test4":"1234567890","test5@odata.type":"Edm.DateTime","test5":"2016-12-31T11:59:59Z"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A47%3A52.8195125Z''\"","PartitionKey":"large","RowKey":"batch9-item9","Timestamp":"2017-07-15T00:47:52.8195125Z","test":"true","test2":"hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello world;hello @@ -61803,11 +61803,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:56:54 GMT'] + Date: ['Sat, 15 Jul 2017 00:47:53 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d42a3ba-0002-0043-3609-fc7e3d000000] + x-ms-request-id: [40d29f7a-0002-011b-7e03-fd3c13000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_query_entities_no_metadata.yaml b/tests/recordings/test_table_entity.test_query_entities_no_metadata.yaml index 96e8f509..7848edd4 100644 --- a/tests/recordings/test_table_entity.test_query_entities_no_metadata.yaml +++ b/tests/recordings/test_table_entity.test_query_entities_no_metadata.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0f759ec0-67fd-11e7-ba97-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [41d18e1a-68f7-11e7-b0f2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:02 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,21 +21,21 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''querytablefc361447'')'] - Date: ['Thu, 13 Jul 2017 18:57:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:02 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''querytablefc361447'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [102c52f9-0002-0036-0709-fcf986000000] + x-ms-request-id: [4dd0c075-0002-000e-4204-fdb8df000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_0f8a18a8-67fd-11e7-98fc-b8e8564491f6 + body: '--batch_41e7ca0c-68f7-11e7-a50a-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_0f8a1968-67fd-11e7-ba4d-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_41e7cacc-68f7-11e7-ac5f-b8e8564491f6 - --changeset_0f8a1968-67fd-11e7-ba4d-b8e8564491f6 + --changeset_41e7cacc-68f7-11e7-ac5f-b8e8564491f6 Content-Type: application/http @@ -64,7 +64,7 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_0f8a1968-67fd-11e7-ba4d-b8e8564491f6 + --changeset_41e7cacc-68f7-11e7-ac5f-b8e8564491f6 Content-Type: application/http @@ -93,46 +93,46 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_0f8a1968-67fd-11e7-ba4d-b8e8564491f6-- + --changeset_41e7cacc-68f7-11e7-ac5f-b8e8564491f6-- - --batch_0f8a18a8-67fd-11e7-98fc-b8e8564491f6--' + --batch_41e7ca0c-68f7-11e7-a50a-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['1923'] - Content-Type: [multipart/mixed; boundary=batch_0f8a18a8-67fd-11e7-98fc-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_41e7ca0c-68f7-11e7-a50a-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0f8a1cc6-67fd-11e7-9d10-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [41e7ce28-68f7-11e7-8611-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:03 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_00ecb62f-c893-486d-854c-e1e2ee2b4842\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_d64717f0-be9b-4fda-9017-41a96a56446e\r\ - \n\r\n--changesetresponse_d64717f0-be9b-4fda-9017-41a96a56446e\r\nContent-Type:\ + body: {string: "--batchresponse_ddf3bde8-0ca8-406b-9acc-cf988551ec5d\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_70eda1ad-3caa-4a1e-8717-f25af2a46fb2\r\ + \n\r\n--changesetresponse_70eda1ad-3caa-4a1e-8717-f25af2a46fb2\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytablefc361447(PartitionKey='pkfc361447',RowKey='rkfc3614471')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytablefc361447(PartitionKey='pkfc361447',RowKey='rkfc3614471')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A57%3A03.6595869Z'\"\r\n\r\n\r\n--changesetresponse_d64717f0-be9b-4fda-9017-41a96a56446e\r\ + \nETag: W/\"datetime'2017-07-15T00%3A48%3A03.5779159Z'\"\r\n\r\n\r\n--changesetresponse_70eda1ad-3caa-4a1e-8717-f25af2a46fb2\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytablefc361447(PartitionKey='pkfc361447',RowKey='rkfc36144712')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytablefc361447(PartitionKey='pkfc361447',RowKey='rkfc36144712')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A57%3A03.6595869Z'\"\r\n\r\n\r\n--changesetresponse_d64717f0-be9b-4fda-9017-41a96a56446e--\r\ - \n--batchresponse_00ecb62f-c893-486d-854c-e1e2ee2b4842--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A48%3A03.5779159Z'\"\r\n\r\n\r\n--changesetresponse_70eda1ad-3caa-4a1e-8717-f25af2a46fb2--\r\ + \n--batchresponse_ddf3bde8-0ca8-406b-9acc-cf988551ec5d--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_00ecb62f-c893-486d-854c-e1e2ee2b4842] - Date: ['Thu, 13 Jul 2017 18:57:03 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_ddf3bde8-0ca8-406b-9acc-cf988551ec5d] + Date: ['Sat, 15 Jul 2017 00:48:02 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [102c5313-0002-0036-1b09-fcf986000000] + x-ms-request-id: [4dd0c08a-0002-000e-5404-fdb8df000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -142,22 +142,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0f8fd236-67fd-11e7-9d7c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [41eda6e2-68f7-11e7-a528-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:03 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/querytablefc361447() response: - body: {string: '{"value":[{"PartitionKey":"pkfc361447","RowKey":"rkfc3614471","Timestamp":"2017-07-13T18:57:03.6595869Z","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large":"933311100","Birthday":"1973-10-04T00:00:00Z","birthday":"1970-10-04T00:00:00Z","binary":"YmluYXJ5","other":20,"clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"},{"PartitionKey":"pkfc361447","RowKey":"rkfc36144712","Timestamp":"2017-07-13T18:57:03.6595869Z","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large":"933311100","Birthday":"1973-10-04T00:00:00Z","birthday":"1970-10-04T00:00:00Z","binary":"YmluYXJ5","other":20,"clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} + body: {string: '{"value":[{"PartitionKey":"pkfc361447","RowKey":"rkfc3614471","Timestamp":"2017-07-15T00:48:03.5779159Z","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large":"933311100","Birthday":"1973-10-04T00:00:00Z","birthday":"1970-10-04T00:00:00Z","binary":"YmluYXJ5","other":20,"clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"},{"PartitionKey":"pkfc361447","RowKey":"rkfc36144712","Timestamp":"2017-07-15T00:48:03.5779159Z","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large":"933311100","Birthday":"1973-10-04T00:00:00Z","birthday":"1970-10-04T00:00:00Z","binary":"YmluYXJ5","other":20,"clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:03 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:03 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [102c5329-0002-0036-3009-fcf986000000] + x-ms-request-id: [4dd0c09d-0002-000e-6404-fdb8df000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_query_entities_with_filter.yaml b/tests/recordings/test_table_entity.test_query_entities_with_filter.yaml index 44ebacbf..de1e8171 100644 --- a/tests/recordings/test_table_entity.test_query_entities_with_filter.yaml +++ b/tests/recordings/test_table_entity.test_query_entities_with_filter.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0fc43774-67fd-11e7-9576-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [422a246c-68f7-11e7-9e7c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:03 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablefce8146b @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablefce8146b(PartitionKey=''pkfce8146b'',RowKey=''rkfce8146b'')'] - Date: ['Thu, 13 Jul 2017 18:57:08 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A57%3A09.3473371Z'"] + Date: ['Sat, 15 Jul 2017 00:48:04 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A48%3A04.2287548Z'"] Location: ['https://storagename.table.core.windows.net/uttablefce8146b(PartitionKey=''pkfce8146b'',RowKey=''rkfce8146b'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [1e010eff-0002-00d2-7309-fcea8c000000] + x-ms-request-id: [53008eab-0002-00ac-6c04-fd7543000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -43,22 +43,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [0fdabd78-67fd-11e7-86cf-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:04 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [423fd8c0-68f7-11e7-bdd7-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:03 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablefce8146b()?%24filter=PartitionKey+eq+%27pkfce8146b%27 response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablefce8146b","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A09.3473371Z''\"","PartitionKey":"pkfce8146b","RowKey":"rkfce8146b","Timestamp":"2017-07-13T18:57:09.3473371Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablefce8146b","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A04.2287548Z''\"","PartitionKey":"pkfce8146b","RowKey":"rkfce8146b","Timestamp":"2017-07-15T00:48:04.2287548Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"evenratio":3.0,"ratio":3.1,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:08 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:04 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [1e010f23-0002-00d2-1309-fcea8c000000] + x-ms-request-id: [53008eba-0002-00ac-7504-fd7543000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_query_entities_with_property_resolver.yaml b/tests/recordings/test_table_entity.test_query_entities_with_property_resolver.yaml index c2bdbd0e..4ceb525f 100644 --- a/tests/recordings/test_table_entity.test_query_entities_with_property_resolver.yaml +++ b/tests/recordings/test_table_entity.test_query_entities_with_property_resolver.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1008b6e2-67fd-11e7-afb7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [427b2628-68f7-11e7-a8ed-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:03 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,21 +21,21 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''querytablefb4a193b'')'] - Date: ['Thu, 13 Jul 2017 18:57:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:03 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''querytablefb4a193b'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [7d485b5e-0002-00ce-6b09-fc329b000000] + x-ms-request-id: [aa8df000-0002-00c4-1404-fd2b12000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_101cd60c-67fd-11e7-bccf-b8e8564491f6 + body: '--batch_428ecae8-68f7-11e7-8585-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_101cd6a4-67fd-11e7-961e-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_428ecbb0-68f7-11e7-a4b7-b8e8564491f6 - --changeset_101cd6a4-67fd-11e7-961e-b8e8564491f6 + --changeset_428ecbb0-68f7-11e7-a4b7-b8e8564491f6 Content-Type: application/http @@ -64,7 +64,7 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_101cd6a4-67fd-11e7-961e-b8e8564491f6 + --changeset_428ecbb0-68f7-11e7-a4b7-b8e8564491f6 Content-Type: application/http @@ -93,46 +93,46 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_101cd6a4-67fd-11e7-961e-b8e8564491f6-- + --changeset_428ecbb0-68f7-11e7-a4b7-b8e8564491f6-- - --batch_101cd60c-67fd-11e7-bccf-b8e8564491f6--' + --batch_428ecae8-68f7-11e7-8585-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['1923'] - Content-Type: [multipart/mixed; boundary=batch_101cd60c-67fd-11e7-bccf-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_428ecae8-68f7-11e7-8585-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [101cd974-67fd-11e7-94bb-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [428ecf1e-68f7-11e7-b40b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:04 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_d3fa4b2a-fa3b-41b4-ac23-1e246a03a043\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_4e8c37f5-969d-48e2-956d-5b778e8db5b5\r\ - \n\r\n--changesetresponse_4e8c37f5-969d-48e2-956d-5b778e8db5b5\r\nContent-Type:\ + body: {string: "--batchresponse_c3e25f84-d3be-4962-819c-fc978f54f19b\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_84e4f620-38ab-4538-a305-51eb5e06fdf4\r\ + \n\r\n--changesetresponse_84e4f620-38ab-4538-a305-51eb5e06fdf4\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytablefb4a193b(PartitionKey='pkfb4a193b',RowKey='rkfb4a193b1')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytablefb4a193b(PartitionKey='pkfb4a193b',RowKey='rkfb4a193b1')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A57%3A05.0840213Z'\"\r\n\r\n\r\n--changesetresponse_4e8c37f5-969d-48e2-956d-5b778e8db5b5\r\ + \nETag: W/\"datetime'2017-07-15T00%3A48%3A04.2133849Z'\"\r\n\r\n\r\n--changesetresponse_84e4f620-38ab-4538-a305-51eb5e06fdf4\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytablefb4a193b(PartitionKey='pkfb4a193b',RowKey='rkfb4a193b12')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytablefb4a193b(PartitionKey='pkfb4a193b',RowKey='rkfb4a193b12')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A57%3A05.0840213Z'\"\r\n\r\n\r\n--changesetresponse_4e8c37f5-969d-48e2-956d-5b778e8db5b5--\r\ - \n--batchresponse_d3fa4b2a-fa3b-41b4-ac23-1e246a03a043--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A48%3A04.2133849Z'\"\r\n\r\n\r\n--changesetresponse_84e4f620-38ab-4538-a305-51eb5e06fdf4--\r\ + \n--batchresponse_c3e25f84-d3be-4962-819c-fc978f54f19b--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_d3fa4b2a-fa3b-41b4-ac23-1e246a03a043] - Date: ['Thu, 13 Jul 2017 18:57:04 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_c3e25f84-d3be-4962-819c-fc978f54f19b] + Date: ['Sat, 15 Jul 2017 00:48:03 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [7d485b68-0002-00ce-7209-fc329b000000] + x-ms-request-id: [aa8df013-0002-00c4-2204-fd2b12000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -142,22 +142,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1022a1a6-67fd-11e7-8738-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [42a72700-68f7-11e7-9475-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:04 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/querytablefb4a193b() response: - body: {string: '{"value":[{"PartitionKey":"pkfb4a193b","RowKey":"rkfb4a193b1","Timestamp":"2017-07-13T18:57:05.0840213Z","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large":"933311100","Birthday":"1973-10-04T00:00:00Z","birthday":"1970-10-04T00:00:00Z","binary":"YmluYXJ5","other":20,"clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"},{"PartitionKey":"pkfb4a193b","RowKey":"rkfb4a193b12","Timestamp":"2017-07-13T18:57:05.0840213Z","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large":"933311100","Birthday":"1973-10-04T00:00:00Z","birthday":"1970-10-04T00:00:00Z","binary":"YmluYXJ5","other":20,"clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} + body: {string: '{"value":[{"PartitionKey":"pkfb4a193b","RowKey":"rkfb4a193b1","Timestamp":"2017-07-15T00:48:04.2133849Z","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large":"933311100","Birthday":"1973-10-04T00:00:00Z","birthday":"1970-10-04T00:00:00Z","binary":"YmluYXJ5","other":20,"clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"},{"PartitionKey":"pkfb4a193b","RowKey":"rkfb4a193b12","Timestamp":"2017-07-15T00:48:04.2133849Z","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large":"933311100","Birthday":"1973-10-04T00:00:00Z","birthday":"1970-10-04T00:00:00Z","binary":"YmluYXJ5","other":20,"clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:04 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:03 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [7d485b72-0002-00ce-7b09-fc329b000000] + x-ms-request-id: [aa8df026-0002-00c4-3304-fd2b12000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_query_entities_with_select.yaml b/tests/recordings/test_table_entity.test_query_entities_with_select.yaml index 694be5d7..e7918170 100644 --- a/tests/recordings/test_table_entity.test_query_entities_with_select.yaml +++ b/tests/recordings/test_table_entity.test_query_entities_with_select.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [105b6c98-67fd-11e7-8b2f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [42e15268-68f7-11e7-86af-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:04 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,21 +21,21 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''querytablefcf31465'')'] - Date: ['Thu, 13 Jul 2017 18:57:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:04 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''querytablefcf31465'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b9008feb-0002-011a-1409-fc3dee000000] + x-ms-request-id: [d4ae1eb5-0002-0073-4b04-fd2417000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_106fb194-67fd-11e7-9bd0-b8e8564491f6 + body: '--batch_42f6bcb6-68f7-11e7-9ed4-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_106fb234-67fd-11e7-b6da-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_42f6bd68-68f7-11e7-ab76-b8e8564491f6 - --changeset_106fb234-67fd-11e7-b6da-b8e8564491f6 + --changeset_42f6bd68-68f7-11e7-ab76-b8e8564491f6 Content-Type: application/http @@ -64,7 +64,7 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_106fb234-67fd-11e7-b6da-b8e8564491f6 + --changeset_42f6bd68-68f7-11e7-ab76-b8e8564491f6 Content-Type: application/http @@ -93,46 +93,46 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_106fb234-67fd-11e7-b6da-b8e8564491f6-- + --changeset_42f6bd68-68f7-11e7-ab76-b8e8564491f6-- - --batch_106fb194-67fd-11e7-9bd0-b8e8564491f6--' + --batch_42f6bcb6-68f7-11e7-9ed4-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['1923'] - Content-Type: [multipart/mixed; boundary=batch_106fb194-67fd-11e7-9bd0-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_42f6bcb6-68f7-11e7-9ed4-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [106fb50c-67fd-11e7-94c5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [42f6c0a8-68f7-11e7-8175-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:04 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_95ed828e-a280-447e-af40-291baa6b8e41\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_03f0ea72-b204-449c-9e95-eb72a3dcd577\r\ - \n\r\n--changesetresponse_03f0ea72-b204-449c-9e95-eb72a3dcd577\r\nContent-Type:\ + body: {string: "--batchresponse_4b631d93-bdaf-4c40-8eed-7e6b4b429754\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_9b57a7cb-f842-4c02-ae00-ce76bda86e9a\r\ + \n\r\n--changesetresponse_9b57a7cb-f842-4c02-ae00-ce76bda86e9a\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytablefcf31465(PartitionKey='pkfcf31465',RowKey='rkfcf314651')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytablefcf31465(PartitionKey='pkfcf31465',RowKey='rkfcf314651')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A57%3A05.6533765Z'\"\r\n\r\n\r\n--changesetresponse_03f0ea72-b204-449c-9e95-eb72a3dcd577\r\ + \nETag: W/\"datetime'2017-07-15T00%3A48%3A05.2573166Z'\"\r\n\r\n\r\n--changesetresponse_9b57a7cb-f842-4c02-ae00-ce76bda86e9a\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytablefcf31465(PartitionKey='pkfcf31465',RowKey='rkfcf3146512')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytablefcf31465(PartitionKey='pkfcf31465',RowKey='rkfcf3146512')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A57%3A05.6543773Z'\"\r\n\r\n\r\n--changesetresponse_03f0ea72-b204-449c-9e95-eb72a3dcd577--\r\ - \n--batchresponse_95ed828e-a280-447e-af40-291baa6b8e41--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A48%3A05.2573166Z'\"\r\n\r\n\r\n--changesetresponse_9b57a7cb-f842-4c02-ae00-ce76bda86e9a--\r\ + \n--batchresponse_4b631d93-bdaf-4c40-8eed-7e6b4b429754--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_95ed828e-a280-447e-af40-291baa6b8e41] - Date: ['Thu, 13 Jul 2017 18:57:05 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_4b631d93-bdaf-4c40-8eed-7e6b4b429754] + Date: ['Sat, 15 Jul 2017 00:48:04 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b9008ffa-0002-011a-2009-fc3dee000000] + x-ms-request-id: [d4ae1ebc-0002-0073-5004-fd2417000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -142,22 +142,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [107580cc-67fd-11e7-9983-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:05 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [42fd265a-68f7-11e7-a173-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:04 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/querytablefcf31465()?%24select=age%2Csex response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablefcf31465&$select=age,sex","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A05.6533765Z''\"","age@odata.type":"Edm.Int64","age":"39","sex":"male"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A05.6543773Z''\"","age@odata.type":"Edm.Int64","age":"39","sex":"male"}]}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablefcf31465&$select=age,sex","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A05.2573166Z''\"","age@odata.type":"Edm.Int64","age":"39","sex":"male"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A05.2573166Z''\"","age@odata.type":"Edm.Int64","age":"39","sex":"male"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:04 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b9009005-0002-011a-2a09-fc3dee000000] + x-ms-request-id: [d4ae1ebd-0002-0073-5104-fd2417000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_query_entities_with_top.yaml b/tests/recordings/test_table_entity.test_query_entities_with_top.yaml index be011705..2b4f86fd 100644 --- a/tests/recordings/test_table_entity.test_query_entities_with_top.yaml +++ b/tests/recordings/test_table_entity.test_query_entities_with_top.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10aaa448-67fd-11e7-af23-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [43375474-68f7-11e7-adb2-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:05 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,21 +21,21 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''querytablec12a1338'')'] - Date: ['Thu, 13 Jul 2017 18:57:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:04 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''querytablec12a1338'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [68f3ba9e-0002-0102-3a09-fc107b000000] + x-ms-request-id: [78794460-0002-00fd-2404-fd6bb6000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_10bf7936-67fd-11e7-b848-b8e8564491f6 + body: '--batch_434b9402-68f7-11e7-ae5e-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_10bf79d8-67fd-11e7-ac0b-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_434b94ac-68f7-11e7-a9da-b8e8564491f6 - --changeset_10bf79d8-67fd-11e7-ac0b-b8e8564491f6 + --changeset_434b94ac-68f7-11e7-a9da-b8e8564491f6 Content-Type: application/http @@ -64,7 +64,7 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_10bf79d8-67fd-11e7-ac0b-b8e8564491f6 + --changeset_434b94ac-68f7-11e7-a9da-b8e8564491f6 Content-Type: application/http @@ -93,7 +93,7 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_10bf79d8-67fd-11e7-ac0b-b8e8564491f6 + --changeset_434b94ac-68f7-11e7-a9da-b8e8564491f6 Content-Type: application/http @@ -122,52 +122,52 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_10bf79d8-67fd-11e7-ac0b-b8e8564491f6-- + --changeset_434b94ac-68f7-11e7-a9da-b8e8564491f6-- - --batch_10bf7936-67fd-11e7-b848-b8e8564491f6--' + --batch_434b9402-68f7-11e7-ae5e-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['2771'] - Content-Type: [multipart/mixed; boundary=batch_10bf7936-67fd-11e7-b848-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_434b9402-68f7-11e7-ae5e-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10bf7dbe-67fd-11e7-a73a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [434b989e-68f7-11e7-9f27-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:05 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_923de9a8-58fa-4132-bbc4-9cf55210cbd6\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_cb82489c-9508-4ebe-913c-aa367fafc950\r\ - \n\r\n--changesetresponse_cb82489c-9508-4ebe-913c-aa367fafc950\r\nContent-Type:\ + body: {string: "--batchresponse_22525707-b6e8-4cde-8e93-c17b00bec704\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_52e6bd7b-a96e-4576-9f09-fa6f64c61a1e\r\ + \n\r\n--changesetresponse_52e6bd7b-a96e-4576-9f09-fa6f64c61a1e\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytablec12a1338(PartitionKey='pkc12a1338',RowKey='rkc12a13381')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytablec12a1338(PartitionKey='pkc12a1338',RowKey='rkc12a13381')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A57%3A06.1575383Z'\"\r\n\r\n\r\n--changesetresponse_cb82489c-9508-4ebe-913c-aa367fafc950\r\ + \nETag: W/\"datetime'2017-07-15T00%3A48%3A05.3677061Z'\"\r\n\r\n\r\n--changesetresponse_52e6bd7b-a96e-4576-9f09-fa6f64c61a1e\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytablec12a1338(PartitionKey='pkc12a1338',RowKey='rkc12a133812')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytablec12a1338(PartitionKey='pkc12a1338',RowKey='rkc12a133812')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A57%3A06.1575383Z'\"\r\n\r\n\r\n--changesetresponse_cb82489c-9508-4ebe-913c-aa367fafc950\r\ + \nETag: W/\"datetime'2017-07-15T00%3A48%3A05.3677061Z'\"\r\n\r\n\r\n--changesetresponse_52e6bd7b-a96e-4576-9f09-fa6f64c61a1e\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytablec12a1338(PartitionKey='pkc12a1338',RowKey='rkc12a1338123')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytablec12a1338(PartitionKey='pkc12a1338',RowKey='rkc12a1338123')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A57%3A06.1575383Z'\"\r\n\r\n\r\n--changesetresponse_cb82489c-9508-4ebe-913c-aa367fafc950--\r\ - \n--batchresponse_923de9a8-58fa-4132-bbc4-9cf55210cbd6--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A48%3A05.3677061Z'\"\r\n\r\n\r\n--changesetresponse_52e6bd7b-a96e-4576-9f09-fa6f64c61a1e--\r\ + \n--batchresponse_22525707-b6e8-4cde-8e93-c17b00bec704--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_923de9a8-58fa-4132-bbc4-9cf55210cbd6] - Date: ['Thu, 13 Jul 2017 18:57:06 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_22525707-b6e8-4cde-8e93-c17b00bec704] + Date: ['Sat, 15 Jul 2017 00:48:04 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [68f3baac-0002-0102-4509-fc107b000000] + x-ms-request-id: [78794476-0002-00fd-3804-fd6bb6000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -177,24 +177,24 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [10c96dc6-67fd-11e7-b2e5-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4354bed8-68f7-11e7-aace-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:05 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/querytablec12a1338()?%24top=2 response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablec12a1338","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A06.1575383Z''\"","PartitionKey":"pkc12a1338","RowKey":"rkc12a13381","Timestamp":"2017-07-13T18:57:06.1575383Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A06.1575383Z''\"","PartitionKey":"pkc12a1338","RowKey":"rkc12a133812","Timestamp":"2017-07-13T18:57:06.1575383Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytablec12a1338","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A05.3677061Z''\"","PartitionKey":"pkc12a1338","RowKey":"rkc12a13381","Timestamp":"2017-07-15T00:48:05.3677061Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A05.3677061Z''\"","PartitionKey":"pkc12a1338","RowKey":"rkc12a133812","Timestamp":"2017-07-15T00:48:05.3677061Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:04 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] x-ms-continuation-NextPartitionKey: [1!16!cGtjMTJhMTMzOA--] x-ms-continuation-NextRowKey: [1!20!cmtjMTJhMTMzODEyMw--] - x-ms-request-id: [68f3bac2-0002-0102-5909-fc107b000000] + x-ms-request-id: [78794494-0002-00fd-5304-fd6bb6000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_query_entities_with_top_and_next.yaml b/tests/recordings/test_table_entity.test_query_entities_with_top_and_next.yaml index 9b9e36cd..590e6a2c 100644 --- a/tests/recordings/test_table_entity.test_query_entities_with_top_and_next.yaml +++ b/tests/recordings/test_table_entity.test_query_entities_with_top_and_next.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [11052a26-67fd-11e7-a590-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [438f2690-68f7-11e7-b8d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:05 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,21 +21,21 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''querytable801016e8'')'] - Date: ['Thu, 13 Jul 2017 18:57:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:04 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''querytable801016e8'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d6feb6b-0002-0086-0109-fc0006000000] + x-ms-request-id: [07419fcf-0002-00d4-1a04-fd1df4000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_111b8578-67fd-11e7-b533-b8e8564491f6 + body: '--batch_43a3be70-68f7-11e7-9b86-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_111b8618-67fd-11e7-9f1b-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_43a3befa-68f7-11e7-965d-b8e8564491f6 - --changeset_111b8618-67fd-11e7-9f1b-b8e8564491f6 + --changeset_43a3befa-68f7-11e7-965d-b8e8564491f6 Content-Type: application/http @@ -64,7 +64,7 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_111b8618-67fd-11e7-9f1b-b8e8564491f6 + --changeset_43a3befa-68f7-11e7-965d-b8e8564491f6 Content-Type: application/http @@ -93,7 +93,7 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_111b8618-67fd-11e7-9f1b-b8e8564491f6 + --changeset_43a3befa-68f7-11e7-965d-b8e8564491f6 Content-Type: application/http @@ -122,7 +122,7 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_111b8618-67fd-11e7-9f1b-b8e8564491f6 + --changeset_43a3befa-68f7-11e7-965d-b8e8564491f6 Content-Type: application/http @@ -151,7 +151,7 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_111b8618-67fd-11e7-9f1b-b8e8564491f6 + --changeset_43a3befa-68f7-11e7-965d-b8e8564491f6 Content-Type: application/http @@ -180,64 +180,64 @@ interactions: "clsid@odata.type": "Edm.Guid"} - --changeset_111b8618-67fd-11e7-9f1b-b8e8564491f6-- + --changeset_43a3befa-68f7-11e7-965d-b8e8564491f6-- - --batch_111b8578-67fd-11e7-b533-b8e8564491f6--' + --batch_43a3be70-68f7-11e7-9b86-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['4470'] - Content-Type: [multipart/mixed; boundary=batch_111b8578-67fd-11e7-b533-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_43a3be70-68f7-11e7-9b86-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [111b8b9a-67fd-11e7-a5fd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:06 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [43a3c35c-68f7-11e7-a946-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:05 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_4592c682-ac84-4f97-a473-5ab609b2a887\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_30310690-16e9-4545-aff3-21f0f9b7f257\r\ - \n\r\n--changesetresponse_30310690-16e9-4545-aff3-21f0f9b7f257\r\nContent-Type:\ + body: {string: "--batchresponse_547c1c24-4a03-43ea-82ad-9e19ea1ab1d1\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_0659ce1e-961d-40c4-9045-d2b276ab64e7\r\ + \n\r\n--changesetresponse_0659ce1e-961d-40c4-9045-d2b276ab64e7\r\nContent-Type:\ \ application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 204\ \ No Content\r\nContent-ID: 1\r\nX-Content-Type-Options: nosniff\r\nCache-Control:\ \ no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e81')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e81')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A57%3A06.6017214Z'\"\r\n\r\n\r\n--changesetresponse_30310690-16e9-4545-aff3-21f0f9b7f257\r\ + \nETag: W/\"datetime'2017-07-15T00%3A48%3A05.7000367Z'\"\r\n\r\n\r\n--changesetresponse_0659ce1e-961d-40c4-9045-d2b276ab64e7\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 2\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e812')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e812')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A57%3A06.6017214Z'\"\r\n\r\n\r\n--changesetresponse_30310690-16e9-4545-aff3-21f0f9b7f257\r\ + \nETag: W/\"datetime'2017-07-15T00%3A48%3A05.7000367Z'\"\r\n\r\n\r\n--changesetresponse_0659ce1e-961d-40c4-9045-d2b276ab64e7\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 3\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e8123')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e8123')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A57%3A06.6017214Z'\"\r\n\r\n\r\n--changesetresponse_30310690-16e9-4545-aff3-21f0f9b7f257\r\ + \nETag: W/\"datetime'2017-07-15T00%3A48%3A05.7000367Z'\"\r\n\r\n\r\n--changesetresponse_0659ce1e-961d-40c4-9045-d2b276ab64e7\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 4\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e81234')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e81234')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A57%3A06.6017214Z'\"\r\n\r\n\r\n--changesetresponse_30310690-16e9-4545-aff3-21f0f9b7f257\r\ + \nETag: W/\"datetime'2017-07-15T00%3A48%3A05.7000367Z'\"\r\n\r\n\r\n--changesetresponse_0659ce1e-961d-40c4-9045-d2b276ab64e7\r\ \nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\ \nHTTP/1.1 204 No Content\r\nContent-ID: 5\r\nX-Content-Type-Options: nosniff\r\ \nCache-Control: no-cache\r\nPreference-Applied: return-no-content\r\nDataServiceVersion:\ \ 3.0;\r\nLocation: https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e812345')\r\ \nDataServiceId: https://storagename.table.core.windows.net/querytable801016e8(PartitionKey='pk801016e8',RowKey='rk801016e812345')\r\ - \nETag: W/\"datetime'2017-07-13T18%3A57%3A06.6017214Z'\"\r\n\r\n\r\n--changesetresponse_30310690-16e9-4545-aff3-21f0f9b7f257--\r\ - \n--batchresponse_4592c682-ac84-4f97-a473-5ab609b2a887--\r\n"} + \nETag: W/\"datetime'2017-07-15T00%3A48%3A05.7000367Z'\"\r\n\r\n\r\n--changesetresponse_0659ce1e-961d-40c4-9045-d2b276ab64e7--\r\ + \n--batchresponse_547c1c24-4a03-43ea-82ad-9e19ea1ab1d1--\r\n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_4592c682-ac84-4f97-a473-5ab609b2a887] - Date: ['Thu, 13 Jul 2017 18:57:05 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_547c1c24-4a03-43ea-82ad-9e19ea1ab1d1] + Date: ['Sat, 15 Jul 2017 00:48:04 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d6feb72-0002-0086-0609-fc0006000000] + x-ms-request-id: [07419fe6-0002-00d4-2e04-fd1df4000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -247,24 +247,24 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1129ea50-67fd-11e7-8f0f-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [43ad7582-68f7-11e7-8e53-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:05 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/querytable801016e8()?%24top=2 response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A06.6017214Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e81","Timestamp":"2017-07-13T18:57:06.6017214Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A06.6017214Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e812","Timestamp":"2017-07-13T18:57:06.6017214Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A05.7000367Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e81","Timestamp":"2017-07-15T00:48:05.7000367Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A05.7000367Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e812","Timestamp":"2017-07-15T00:48:05.7000367Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:04 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] x-ms-continuation-NextPartitionKey: [1!16!cGs4MDEwMTZlOA--] x-ms-continuation-NextRowKey: [1!20!cms4MDEwMTZlODEyMw--] - x-ms-request-id: [2d6feb82-0002-0086-1409-fc0006000000] + x-ms-request-id: [0741a007-0002-00d4-4e04-fd1df4000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -274,24 +274,24 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [11300e94-67fd-11e7-9c5a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [43b2b6d2-68f7-11e7-95c8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:06 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/querytable801016e8()?%24top=2&NextPartitionKey=1%2116%21cGs4MDEwMTZlOA--&NextRowKey=1%2120%21cms4MDEwMTZlODEyMw-- response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A06.6017214Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e8123","Timestamp":"2017-07-13T18:57:06.6017214Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A06.6017214Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e81234","Timestamp":"2017-07-13T18:57:06.6017214Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A05.7000367Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e8123","Timestamp":"2017-07-15T00:48:05.7000367Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A05.7000367Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e81234","Timestamp":"2017-07-15T00:48:05.7000367Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:04 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] x-ms-continuation-NextPartitionKey: [1!16!cGs4MDEwMTZlOA--] x-ms-continuation-NextRowKey: [1!20!cms4MDEwMTZlODEyMzQ1] - x-ms-request-id: [2d6feb8f-0002-0086-1f09-fc0006000000] + x-ms-request-id: [0741a012-0002-00d4-5904-fd1df4000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: @@ -301,22 +301,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [11353afe-67fd-11e7-9e35-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [43b82de2-68f7-11e7-983e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:06 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/querytable801016e8()?%24top=2&NextPartitionKey=1%2116%21cGs4MDEwMTZlOA--&NextRowKey=1%2120%21cms4MDEwMTZlODEyMzQ1 response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A06.6017214Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e812345","Timestamp":"2017-07-13T18:57:06.6017214Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#querytable801016e8","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A05.7000367Z''\"","PartitionKey":"pk801016e8","RowKey":"rk801016e812345","Timestamp":"2017-07-15T00:48:05.7000367Z","age@odata.type":"Edm.Int64","age":"39","sex":"male","married":true,"deceased":false,"ratio":3.1,"evenratio":3.0,"large@odata.type":"Edm.Int64","large":"933311100","Birthday@odata.type":"Edm.DateTime","Birthday":"1973-10-04T00:00:00Z","birthday@odata.type":"Edm.DateTime","birthday":"1970-10-04T00:00:00Z","binary@odata.type":"Edm.Binary","binary":"YmluYXJ5","other":20,"clsid@odata.type":"Edm.Guid","clsid":"c9da6455-213d-42c9-9a79-3e9149a57833"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:05 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:04 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d6feb93-0002-0086-2209-fc0006000000] + x-ms-request-id: [0741a021-0002-00d4-6804-fd1df4000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_query_zero_entities.yaml b/tests/recordings/test_table_entity.test_query_zero_entities.yaml index ce15f454..f6f5cf3b 100644 --- a/tests/recordings/test_table_entity.test_query_zero_entities.yaml +++ b/tests/recordings/test_table_entity.test_query_zero_entities.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [116dab8c-67fd-11e7-8b81-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [43f50c76-68f7-11e7-91c3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:06 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/Tables @@ -21,48 +21,48 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/Tables(''querytable7732118a'')'] - Date: ['Thu, 13 Jul 2017 18:57:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:06 GMT'] Location: ['https://storagename.table.core.windows.net/Tables(''querytable7732118a'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f37a2f23-0002-0082-3409-fcf584000000] + x-ms-request-id: [2392b2ab-0002-0122-4d04-fd7cb7000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: - body: '--batch_1181835a-67fd-11e7-b5fc-b8e8564491f6 + body: '--batch_440cbda8-68f7-11e7-94e4-b8e8564491f6 - Content-Type: multipart/mixed; boundary=changeset_11818508-67fd-11e7-b730-b8e8564491f6 + Content-Type: multipart/mixed; boundary=changeset_440cbf42-68f7-11e7-aa2c-b8e8564491f6 - --changeset_11818508-67fd-11e7-b730-b8e8564491f6-- + --changeset_440cbf42-68f7-11e7-aa2c-b8e8564491f6-- - --batch_1181835a-67fd-11e7-b5fc-b8e8564491f6--' + --batch_440cbda8-68f7-11e7-94e4-b8e8564491f6--' headers: Connection: [keep-alive] Content-Length: ['230'] - Content-Type: [multipart/mixed; boundary=batch_1181835a-67fd-11e7-b5fc-b8e8564491f6] + Content-Type: [multipart/mixed; boundary=batch_440cbda8-68f7-11e7-94e4-b8e8564491f6] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [11818742-67fd-11e7-89dc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [440cc17a-68f7-11e7-9ace-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:06 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/$batch response: - body: {string: "--batchresponse_46ec773b-11ed-497b-b158-f71c333bcd82\r\nContent-Type:\ - \ multipart/mixed; boundary=changesetresponse_30f7d333-3f6a-4132-a2fd-a6bc775ef2e1\r\ - \n\r\n--changesetresponse_30f7d333-3f6a-4132-a2fd-a6bc775ef2e1--\r\n--batchresponse_46ec773b-11ed-497b-b158-f71c333bcd82--\r\ + body: {string: "--batchresponse_c811e134-7346-4761-8bfa-075a8c8d256a\r\nContent-Type:\ + \ multipart/mixed; boundary=changesetresponse_424caf05-7656-4876-8a1c-3736fe47ad89\r\ + \n\r\n--changesetresponse_424caf05-7656-4876-8a1c-3736fe47ad89--\r\n--batchresponse_c811e134-7346-4761-8bfa-075a8c8d256a--\r\ \n"} headers: Cache-Control: [no-cache] - Content-Type: [multipart/mixed; boundary=batchresponse_46ec773b-11ed-497b-b158-f71c333bcd82] - Date: ['Thu, 13 Jul 2017 18:57:06 GMT'] + Content-Type: [multipart/mixed; boundary=batchresponse_c811e134-7346-4761-8bfa-075a8c8d256a] + Date: ['Sat, 15 Jul 2017 00:48:06 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f37a2f2a-0002-0082-3909-fcf584000000] + x-ms-request-id: [2392b2b7-0002-0122-5504-fd7cb7000000] x-ms-version: ['2017-04-17'] status: {code: 202, message: Accepted} - request: @@ -72,9 +72,9 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [118628ba-67fd-11e7-b95d-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:07 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4411a2f0-68f7-11e7-816e-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:06 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/querytable7732118a() @@ -83,11 +83,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:06 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:06 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [f37a2f34-0002-0082-4309-fcf584000000] + x-ms-request-id: [2392b2c2-0002-0122-5f04-fd7cb7000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_timezone.yaml b/tests/recordings/test_table_entity.test_timezone.yaml index 3b72761f..e9078c5a 100644 --- a/tests/recordings/test_table_entity.test_timezone.yaml +++ b/tests/recordings/test_table_entity.test_timezone.yaml @@ -10,9 +10,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [12a35af6-67fd-11e7-bdd7-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [45388f18-68f7-11e7-8a24-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:08 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttablecd510cdc @@ -22,13 +22,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttablecd510cdc(PartitionKey=''pkcd510cdc'',RowKey=''rkcd510cdc'')'] - Date: ['Thu, 13 Jul 2017 18:57:09 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A57%3A09.8584506Z'"] + Date: ['Sat, 15 Jul 2017 00:48:08 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A48%3A09.3185873Z'"] Location: ['https://storagename.table.core.windows.net/uttablecd510cdc(PartitionKey=''pkcd510cdc'',RowKey=''rkcd510cdc'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [d0a67c1a-0002-00a1-3109-fc9a4f000000] + x-ms-request-id: [a647e108-0002-0040-5804-fd7d3a000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -38,23 +38,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [12b72d62-67fd-11e7-8e0a-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [454c120c-68f7-11e7-a401-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:08 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttablecd510cdc(PartitionKey='pkcd510cdc',RowKey='rkcd510cdc') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablecd510cdc/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A09.8584506Z''\"","PartitionKey":"pkcd510cdc","RowKey":"rkcd510cdc","Timestamp":"2017-07-13T18:57:09.8584506Z","date@odata.type":"Edm.DateTime","date":"2003-09-27T12:52:43Z"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttablecd510cdc/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A09.3185873Z''\"","PartitionKey":"pkcd510cdc","RowKey":"rkcd510cdc","Timestamp":"2017-07-15T00:48:09.3185873Z","date@odata.type":"Edm.DateTime","date":"2003-09-27T12:52:43Z"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:09 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A57%3A09.8584506Z'"] + Date: ['Sat, 15 Jul 2017 00:48:08 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A48%3A09.3185873Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [d0a67c1d-0002-00a1-3209-fc9a4f000000] + x-ms-request-id: [a647e110-0002-0040-5d04-fd7d3a000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_unicode_property_name.yaml b/tests/recordings/test_table_entity.test_unicode_property_name.yaml index bf9698d4..c9af37f3 100644 --- a/tests/recordings/test_table_entity.test_unicode_property_name.yaml +++ b/tests/recordings/test_table_entity.test_unicode_property_name.yaml @@ -10,9 +10,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [12eb5888-67fd-11e7-96ef-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:09 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [457be918-68f7-11e7-9d8c-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:09 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable9990123c @@ -22,13 +22,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable9990123c(PartitionKey=''pk9990123c'',RowKey=''rk9990123c'')'] - Date: ['Thu, 13 Jul 2017 18:57:08 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A57%3A09.9318031Z'"] + Date: ['Sat, 15 Jul 2017 00:48:07 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A48%3A08.4376408Z'"] Location: ['https://storagename.table.core.windows.net/uttable9990123c(PartitionKey=''pk9990123c'',RowKey=''rk9990123c'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [94c4136e-0002-0061-7f09-fc100b000000] + x-ms-request-id: [8388a7e1-0002-011a-7604-fd3dee000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -42,9 +42,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1303a4d8-67fd-11e7-9658-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [458fc67a-68f7-11e7-9834-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:09 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable9990123c @@ -54,13 +54,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable9990123c(PartitionKey=''pk9990123c'',RowKey=''test2'')'] - Date: ['Thu, 13 Jul 2017 18:57:09 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A57%3A09.9918466Z'"] + Date: ['Sat, 15 Jul 2017 00:48:07 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A48%3A08.473669Z'"] Location: ['https://storagename.table.core.windows.net/uttable9990123c(PartitionKey=''pk9990123c'',RowKey=''test2'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [94c41376-0002-0061-0509-fc100b000000] + x-ms-request-id: [8388a7f8-0002-011a-0904-fd3dee000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -70,22 +70,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [130c084c-67fd-11e7-9e41-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4594d17e-68f7-11e7-85d5-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:09 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable9990123c()?%24filter=PartitionKey+eq+%27pk9990123c%27 response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable9990123c","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A09.9318031Z''\"","PartitionKey":"pk9990123c","RowKey":"rk9990123c","Timestamp":"2017-07-13T18:57:09.9318031Z","\u554a\u9f44\u4e02\u72db\u72dc":"\ua015"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A09.9918466Z''\"","PartitionKey":"pk9990123c","RowKey":"test2","Timestamp":"2017-07-13T18:57:09.9918466Z","\u554a\u9f44\u4e02\u72db\u72dc":"hello"}]}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable9990123c","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A08.4376408Z''\"","PartitionKey":"pk9990123c","RowKey":"rk9990123c","Timestamp":"2017-07-15T00:48:08.4376408Z","\u554a\u9f44\u4e02\u72db\u72dc":"\ua015"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A08.473669Z''\"","PartitionKey":"pk9990123c","RowKey":"test2","Timestamp":"2017-07-15T00:48:08.473669Z","\u554a\u9f44\u4e02\u72db\u72dc":"hello"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:07 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [94c4137c-0002-0061-0b09-fc100b000000] + x-ms-request-id: [8388a80b-0002-011a-1c04-fd3dee000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_unicode_property_value.yaml b/tests/recordings/test_table_entity.test_unicode_property_value.yaml index bbecaf8d..0fbba83f 100644 --- a/tests/recordings/test_table_entity.test_unicode_property_value.yaml +++ b/tests/recordings/test_table_entity.test_unicode_property_value.yaml @@ -9,9 +9,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1341ae9a-67fd-11e7-92bc-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [45c60dac-68f7-11e7-a39b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:09 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttableac7612b8 @@ -21,13 +21,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttableac7612b8(PartitionKey=''pkac7612b8'',RowKey=''rkac7612b8'')'] - Date: ['Thu, 13 Jul 2017 18:57:09 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A57%3A10.6150568Z'"] + Date: ['Sat, 15 Jul 2017 00:48:08 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A48%3A08.8910151Z'"] Location: ['https://storagename.table.core.windows.net/uttableac7612b8(PartitionKey=''pkac7612b8'',RowKey=''rkac7612b8'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b04a187f-0002-0111-3409-fc259a000000] + x-ms-request-id: [69431095-0002-0118-5004-fd3f14000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -40,9 +40,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1355e1f8-67fd-11e7-a6ee-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [45da6ea8-68f7-11e7-99ca-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:09 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttableac7612b8 @@ -52,13 +52,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttableac7612b8(PartitionKey=''pkac7612b8'',RowKey=''test2'')'] - Date: ['Thu, 13 Jul 2017 18:57:09 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A57%3A10.6480805Z'"] + Date: ['Sat, 15 Jul 2017 00:48:08 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A48%3A08.9250389Z'"] Location: ['https://storagename.table.core.windows.net/uttableac7612b8(PartitionKey=''pkac7612b8'',RowKey=''test2'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b04a1891-0002-0111-4209-fc259a000000] + x-ms-request-id: [69431099-0002-0118-5204-fd3f14000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -68,22 +68,22 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [135b17ae-67fd-11e7-a5ac-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:10 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [45dfeb9e-68f7-11e7-b78b-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:09 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttableac7612b8()?%24filter=PartitionKey+eq+%27pkac7612b8%27 response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableac7612b8","value":[{"odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A10.6150568Z''\"","PartitionKey":"pkac7612b8","RowKey":"rkac7612b8","Timestamp":"2017-07-13T18:57:10.6150568Z","Description":"\ua015"},{"odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A10.6480805Z''\"","PartitionKey":"pkac7612b8","RowKey":"test2","Timestamp":"2017-07-13T18:57:10.6480805Z","Description":"\ua015"}]}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttableac7612b8","value":[{"odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A08.8910151Z''\"","PartitionKey":"pkac7612b8","RowKey":"rkac7612b8","Timestamp":"2017-07-15T00:48:08.8910151Z","Description":"\ua015"},{"odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A08.9250389Z''\"","PartitionKey":"pkac7612b8","RowKey":"test2","Timestamp":"2017-07-15T00:48:08.9250389Z","Description":"\ua015"}]}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:09 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:08 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [b04a18a5-0002-0111-5509-fc259a000000] + x-ms-request-id: [6943109a-0002-0118-5304-fd3f14000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_update_entity.yaml b/tests/recordings/test_table_entity.test_update_entity.yaml index d1bfe59a..8e01e11c 100644 --- a/tests/recordings/test_table_entity.test_update_entity.yaml +++ b/tests/recordings/test_table_entity.test_update_entity.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [13872510-67fd-11e7-adba-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [46170568-68f7-11e7-a6b8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:10 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable13250ef0 @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable13250ef0(PartitionKey=''pk13250ef0'',RowKey=''rk13250ef0'')'] - Date: ['Thu, 13 Jul 2017 18:57:10 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A57%3A11.0969608Z'"] + Date: ['Sat, 15 Jul 2017 00:48:09 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A48%3A10.0496027Z'"] Location: ['https://storagename.table.core.windows.net/uttable13250ef0(PartitionKey=''pk13250ef0'',RowKey=''rk13250ef0'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [471de0e8-0002-0081-3909-fcf683000000] + x-ms-request-id: [e0476e6a-0002-00ef-4604-fd5faa000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -48,9 +48,9 @@ interactions: DataServiceVersion: [3.0;NetFx] If-Match: ['*'] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [139b7a74-67fd-11e7-a87e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [462ae830-68f7-11e7-b131-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:10 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.table.core.windows.net/uttable13250ef0(PartitionKey='pk13250ef0',RowKey='rk13250ef0') @@ -59,11 +59,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:57:10 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A57%3A11.0979608Z'"] + Date: ['Sat, 15 Jul 2017 00:48:09 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A48%3A10.0506027Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [471de106-0002-0081-5409-fcf683000000] + x-ms-request-id: [e0476e7b-0002-00ef-5504-fd5faa000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -73,23 +73,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [13a07e02-67fd-11e7-a22c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4630820c-68f7-11e7-98b0-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:10 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable13250ef0(PartitionKey='pk13250ef0',RowKey='rk13250ef0') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable13250ef0/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A11.0979608Z''\"","PartitionKey":"pk13250ef0","RowKey":"rk13250ef0","Timestamp":"2017-07-13T18:57:11.0979608Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable13250ef0/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A10.0506027Z''\"","PartitionKey":"pk13250ef0","RowKey":"rk13250ef0","Timestamp":"2017-07-15T00:48:10.0506027Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:10 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A57%3A11.0979608Z'"] + Date: ['Sat, 15 Jul 2017 00:48:09 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A48%3A10.0506027Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [471de115-0002-0081-6309-fcf683000000] + x-ms-request-id: [e0476e8b-0002-00ef-6504-fd5faa000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1 diff --git a/tests/recordings/test_table_entity.test_update_entity_with_if_doesnt_match.yaml b/tests/recordings/test_table_entity.test_update_entity_with_if_doesnt_match.yaml index dd50aaef..111f5f3e 100644 --- a/tests/recordings/test_table_entity.test_update_entity_with_if_doesnt_match.yaml +++ b/tests/recordings/test_table_entity.test_update_entity_with_if_doesnt_match.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [13d94f5c-67fd-11e7-8a6c-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [465ea576-68f7-11e7-86f8-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:10 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttableabcb1791 @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttableabcb1791(PartitionKey=''pkabcb1791'',RowKey=''rkabcb1791'')'] - Date: ['Thu, 13 Jul 2017 18:57:11 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A57%3A11.4950247Z'"] + Date: ['Sat, 15 Jul 2017 00:48:10 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A48%3A10.1429818Z'"] Location: ['https://storagename.table.core.windows.net/uttableabcb1791(PartitionKey=''pkabcb1791'',RowKey=''rkabcb1791'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [78c3f254-0002-0091-6d09-fcc065000000] + x-ms-request-id: [777f440e-0002-0061-3504-fd100b000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -48,23 +48,23 @@ interactions: DataServiceVersion: [3.0;NetFx] If-Match: [W/"datetime'2012-06-15T22%3A51%3A44.9662825Z'"] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [13f13e9e-67fd-11e7-bc7e-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [4672f406-68f7-11e7-aeea-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:10 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.table.core.windows.net/uttableabcb1791(PartitionKey='pkabcb1791',RowKey='rkabcb1791') response: body: {string: '{"odata.error":{"code":"UpdateConditionNotSatisfied","message":{"lang":"en-US","value":"The - update condition specified in the request was not satisfied.\nRequestId:78c3f266-0002-0091-7b09-fcc065000000\nTime:2017-07-13T18:57:11.5530646Z"}}}'} + update condition specified in the request was not satisfied.\nRequestId:777f4416-0002-0061-3b04-fd100b000000\nTime:2017-07-15T00:48:10.1830109Z"}}}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:11 GMT'] + Date: ['Sat, 15 Jul 2017 00:48:10 GMT'] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [78c3f266-0002-0091-7b09-fcc065000000] + x-ms-request-id: [777f4416-0002-0061-3b04-fd100b000000] x-ms-version: ['2017-04-17'] status: {code: 412, message: Precondition Failed} version: 1 diff --git a/tests/recordings/test_table_entity.test_update_entity_with_if_matches.yaml b/tests/recordings/test_table_entity.test_update_entity_with_if_matches.yaml index dc3476dd..3cd9e789 100644 --- a/tests/recordings/test_table_entity.test_update_entity_with_if_matches.yaml +++ b/tests/recordings/test_table_entity.test_update_entity_with_if_matches.yaml @@ -15,9 +15,9 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [141dcd46-67fd-11e7-b5ca-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:11 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [46a403be-68f7-11e7-8eee-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:10 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://storagename.table.core.windows.net/uttable39e2157d @@ -27,13 +27,13 @@ interactions: Cache-Control: [no-cache] Content-Length: ['0'] DataServiceId: ['https://storagename.table.core.windows.net/uttable39e2157d(PartitionKey=''pk39e2157d'',RowKey=''rk39e2157d'')'] - Date: ['Thu, 13 Jul 2017 18:57:11 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A57%3A11.9101365Z'"] + Date: ['Sat, 15 Jul 2017 00:48:10 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A48%3A10.7302794Z'"] Location: ['https://storagename.table.core.windows.net/uttable39e2157d(PartitionKey=''pk39e2157d'',RowKey=''rk39e2157d'')'] Preference-Applied: [return-no-content] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [fdd550b9-0002-0001-4609-fc5529000000] + x-ms-request-id: [e87a323e-0002-0128-3a04-fd653e000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -46,11 +46,11 @@ interactions: Content-Length: ['180'] Content-Type: [application/json] DataServiceVersion: [3.0;NetFx] - If-Match: [W/"datetime'2017-07-13T18%3A57%3A11.9101365Z'"] + If-Match: [W/"datetime'2017-07-15T00%3A48%3A10.7302794Z'"] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [1430e8d4-67fd-11e7-afbd-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [46b66728-68f7-11e7-b2aa-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:11 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://storagename.table.core.windows.net/uttable39e2157d(PartitionKey='pk39e2157d',RowKey='rk39e2157d') @@ -59,11 +59,11 @@ interactions: headers: Cache-Control: [no-cache] Content-Length: ['0'] - Date: ['Thu, 13 Jul 2017 18:57:11 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A57%3A11.9111365Z'"] + Date: ['Sat, 15 Jul 2017 00:48:10 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A48%3A10.7699371Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] X-Content-Type-Options: [nosniff] - x-ms-request-id: [fdd550c1-0002-0001-4c09-fc5529000000] + x-ms-request-id: [e87a3246-0002-0128-3f04-fd653e000000] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} - request: @@ -73,23 +73,23 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-Storage/0.35.0 (Python CPython 3.6.1; Darwin 16.6.0)] - x-ms-client-request-id: [14364252-67fd-11e7-8076-b8e8564491f6] - x-ms-date: ['Thu, 13 Jul 2017 18:57:12 GMT'] + User-Agent: [Azure-Storage/0.35.1 (Python CPython 3.6.1; Darwin 16.6.0)] + x-ms-client-request-id: [46bbae68-68f7-11e7-97b3-b8e8564491f6] + x-ms-date: ['Sat, 15 Jul 2017 00:48:11 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://storagename.table.core.windows.net/uttable39e2157d(PartitionKey='pk39e2157d',RowKey='rk39e2157d') response: - body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable39e2157d/@Element","odata.etag":"W/\"datetime''2017-07-13T18%3A57%3A11.9111365Z''\"","PartitionKey":"pk39e2157d","RowKey":"rk39e2157d","Timestamp":"2017-07-13T18:57:11.9111365Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}'} + body: {string: '{"odata.metadata":"https://storagename.table.core.windows.net/$metadata#uttable39e2157d/@Element","odata.etag":"W/\"datetime''2017-07-15T00%3A48%3A10.7699371Z''\"","PartitionKey":"pk39e2157d","RowKey":"rk39e2157d","Timestamp":"2017-07-15T00:48:10.7699371Z","age":"abc","birthday@odata.type":"Edm.DateTime","birthday":"1991-10-04T00:00:00Z","sex":"female","sign":"aquarius"}'} headers: Cache-Control: [no-cache] Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - Date: ['Thu, 13 Jul 2017 18:57:11 GMT'] - ETag: [W/"datetime'2017-07-13T18%3A57%3A11.9111365Z'"] + Date: ['Sat, 15 Jul 2017 00:48:10 GMT'] + ETag: [W/"datetime'2017-07-15T00%3A48%3A10.7699371Z'"] Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] Transfer-Encoding: [chunked] X-Content-Type-Options: [nosniff] - x-ms-request-id: [fdd550ca-0002-0001-5509-fc5529000000] + x-ms-request-id: [e87a3250-0002-0128-4804-fd653e000000] x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} version: 1